From 43b6da8afc223d1eefa74d390b09b7a4381ee734 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Wed, 18 Nov 2009 13:34:06 +0000 Subject: [PATCH 01/38] Created separate objects for receive actions --- plugins/Realtime/realtimeupdate.js | 44 ++++++++++++++++++++---------- 1 file changed, 29 insertions(+), 15 deletions(-) diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index d1cf1d5070..6404cf8965 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -36,6 +36,7 @@ RealtimeUpdate = { _updatecounter: 0, _maxnotices: 50, _windowhasfocus: true, + _documenttitle: '', init: function(userid, replyurl, favorurl, deleteurl) { @@ -44,7 +45,7 @@ RealtimeUpdate = { RealtimeUpdate._favorurl = favorurl; RealtimeUpdate._deleteurl = deleteurl; - DT = document.title; + RealtimeUpdate._documenttitle = document.title; $(window).bind('focus', function(){ RealtimeUpdate._windowhasfocus = true; }); @@ -54,7 +55,7 @@ RealtimeUpdate = { $('#notices_primary .notice:first').addClass('mark-top'); RealtimeUpdate._updatecounter = 0; - document.title = DT; + document.title = RealtimeUpdate._documenttitle; RealtimeUpdate._windowhasfocus = false; return false; @@ -70,24 +71,37 @@ RealtimeUpdate = { return; } - var noticeItem = RealtimeUpdate.makeNoticeItem(data); - $("#notices_primary .notices").prepend(noticeItem); - $("#notices_primary .notice:first").css({display:"none"}); - $("#notices_primary .notice:first").fadeIn(1000); + RealtimeUpdate.purgeLastNoticeItem(); - if ($('#notices_primary .notice').length > RealtimeUpdate._maxnotices) { - $("#notices_primary .notice:last .form_disfavor").unbind('submit'); - $("#notices_primary .notice:last .form_favor").unbind('submit'); - $("#notices_primary .notice:last .notice_reply").unbind('click'); - $("#notices_primary .notice:last").remove(); - } + RealtimeUpdate.insertNoticeItem(data); - SN.U.NoticeReply(); - SN.U.NoticeFavor(); + RealtimeUpdate.updateWindowCounter(); + }, + + insertNoticeItem: function(data) { + var noticeItem = RealtimeUpdate.makeNoticeItem(data); + $("#notices_primary .notices").prepend(noticeItem); + $("#notices_primary .notice:first").css({display:"none"}); + $("#notices_primary .notice:first").fadeIn(1000); + + SN.U.NoticeReply(); + SN.U.NoticeFavor(); + }, + + purgeLastNoticeItem: function() { + if ($('#notices_primary .notice').length > RealtimeUpdate._maxnotices) { + $("#notices_primary .notice:last .form_disfavor").unbind('submit'); + $("#notices_primary .notice:last .form_favor").unbind('submit'); + $("#notices_primary .notice:last .notice_reply").unbind('click'); + $("#notices_primary .notice:last").remove(); + } + }, + + updateWindowCounter: function() { if (RealtimeUpdate._windowhasfocus === false) { RealtimeUpdate._updatecounter += 1; - document.title = '('+RealtimeUpdate._updatecounter+') ' + DT; + document.title = '('+RealtimeUpdate._updatecounter+') ' + RealtimeUpdate._documenttitle; } }, From 5014b748e486f46a8653d1609479f8f64dc24722 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Wed, 18 Nov 2009 15:41:07 +0000 Subject: [PATCH 02/38] Added play/pause button for realtime notices. While on pause, it will store the notices and on play it will add them to the notice list --- plugins/Realtime/RealtimePlugin.php | 4 +- plugins/Realtime/icon_pause.gif | Bin 0 -> 75 bytes plugins/Realtime/icon_play.gif | Bin 0 -> 75 bytes plugins/Realtime/realtimeupdate.js | 91 ++++++++++++++++++++++++++-- 4 files changed, 87 insertions(+), 8 deletions(-) create mode 100644 plugins/Realtime/icon_pause.gif create mode 100644 plugins/Realtime/icon_play.gif diff --git a/plugins/Realtime/RealtimePlugin.php b/plugins/Realtime/RealtimePlugin.php index 0c7c1240c3..6d59bd1b12 100644 --- a/plugins/Realtime/RealtimePlugin.php +++ b/plugins/Realtime/RealtimePlugin.php @@ -101,8 +101,8 @@ class RealtimePlugin extends Plugin $realtimeUI = ' RealtimeUpdate.initPopupWindow();'; } else { - $iconurl = common_path('plugins/Realtime/icon_external.gif'); - $realtimeUI = ' RealtimeUpdate.addPopup("'.$url.'", "'.$timeline.'", "'. $iconurl .'");'; + $pluginPath = common_path('plugins/Realtime/'); + $realtimeUI = ' RealtimeUpdate.initActions("'.$url.'", "'.$timeline.'", "'. $pluginPath .'");'; } $action->elementStart('script', array('type' => 'text/javascript')); diff --git a/plugins/Realtime/icon_pause.gif b/plugins/Realtime/icon_pause.gif new file mode 100644 index 0000000000000000000000000000000000000000..ced0b6440c8fe67e6d530103d8ac1aa4b70453ca GIT binary patch literal 75 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J3F5`erVB%fEOI b!yKu?3;xB=BLil1-fvm9>WGgMBZD;nY2_H} literal 0 HcmV?d00001 diff --git a/plugins/Realtime/icon_play.gif b/plugins/Realtime/icon_play.gif new file mode 100644 index 0000000000000000000000000000000000000000..794ec85b6ac815e0ca134bbc0e81872ded44cc8e GIT binary patch literal 75 zcmZ?wbhEHb6krfwn8?KN|NsB^DFQ%}fq_BsCkrD30~3P|kPVa-0J3F5`erVB%fFa8 bL@rA8T*2p;t_wRNm$oj;IuPN+$Y2csUhNo3 literal 0 HcmV?d00001 diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index 6404cf8965..4352b45d99 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -37,6 +37,8 @@ RealtimeUpdate = { _maxnotices: 50, _windowhasfocus: true, _documenttitle: '', + _paused:false, + _queuedNotices:[], init: function(userid, replyurl, favorurl, deleteurl) { @@ -71,12 +73,16 @@ RealtimeUpdate = { return; } - RealtimeUpdate.purgeLastNoticeItem(); + if (RealtimeUpdate._paused === false) { + RealtimeUpdate.purgeLastNoticeItem(); - RealtimeUpdate.insertNoticeItem(data); - - RealtimeUpdate.updateWindowCounter(); + RealtimeUpdate.insertNoticeItem(data); + RealtimeUpdate.updateWindowCounter(); + } + else { + RealtimeUpdate._queuedNotices.push(data); + } }, insertNoticeItem: function(data) { @@ -183,7 +189,80 @@ RealtimeUpdate = { return dl; }, - addPopup: function(url, timeline, iconurl) + initActions: function(url, timeline, path) + { + var NP = $('#notices_primary'); + NP.prepend(''); + + RealtimeUpdate._pluginPath = path; + + RealtimeUpdate.initPlayPause(); + RealtimeUpdate.initAddPopup(url, timeline, RealtimeUpdate._pluginPath); + }, + + initPlayPause: function() + { + RealtimeUpdate.showPause(); + }, + + showPause: function() + { + RT_PP = $('#realtime_pauseplay'); + RT_PP.empty(); + RT_PP.append(''); + + RT_P = $('#realtime_pause'); + $('#realtime_pause').css({ + 'background':'url('+RealtimeUpdate._pluginPath+'icon_pause.gif) no-repeat 47% 47%', + 'width':'16px', + 'height':'16px', + 'text-indent':'-9999px', + 'border':'none', + 'cursor':'pointer' + }); + RT_P.bind('click', function() { + RealtimeUpdate._paused = true; + + RealtimeUpdate.showPlay(); + return false; + }); + }, + + showPlay: function() + { + RT_PP = $('#realtime_pauseplay'); + RT_PP.empty(); + RT_PP.append(''); + + RT_P = $('#realtime_play'); + RT_P.css({ + 'background':'url('+RealtimeUpdate._pluginPath+'icon_play.gif) no-repeat 47% 47%', + 'width':'16px', + 'height':'16px', + 'text-indent':'-9999px', + 'border':'none', + 'cursor':'pointer' + }); + RT_P.bind('click', function() { + RealtimeUpdate._paused = false; + + RealtimeUpdate.showPause(); + + RealtimeUpdate.showQueuedNotices(); + + return false; + }); + }, + + showQueuedNotices: function() { + $.each(RealtimeUpdate._queuedNotices, function(i, n) { + RealtimeUpdate.insertNoticeItem(n); + }); + + RealtimeUpdate._queuedNotices = []; + }, + + initAddPopup: function(url, timeline, path) { var NP = $('#notices_primary'); NP.css({'position':'relative'}); @@ -192,7 +271,7 @@ RealtimeUpdate = { var RT = $('#realtime_timeline'); RT.css({ 'margin':'0 0 11px 0', - 'background':'transparent url('+ iconurl + ') no-repeat 0 30%', + 'background':'transparent url('+ path + 'icon_external.gif) no-repeat 0 30%', 'padding':'0 0 0 20px', 'display':'block', 'position':'absolute', From 6d3d78c793594f3737718f24a461710e278f3022 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Wed, 18 Nov 2009 15:57:45 +0000 Subject: [PATCH 03/38] Styled realtime_actions --- plugins/Realtime/realtimeupdate.js | 55 +++++++++++++++++------------- 1 file changed, 32 insertions(+), 23 deletions(-) diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index 4352b45d99..28cd590289 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -192,7 +192,20 @@ RealtimeUpdate = { initActions: function(url, timeline, path) { var NP = $('#notices_primary'); - NP.prepend('
'); + NP.prepend('
'); + + $('#realtime_actions').css({ + 'position':'absolute', + 'top':'-20px', + 'right':'0', + 'margin':'0 0 11px 0' + }); + + $('#realtime_actions li').css({ + 'margin-left':'18px', + 'list-style-type':'none', + 'float':'left' + }); RealtimeUpdate._pluginPath = path; @@ -214,11 +227,12 @@ RealtimeUpdate = { RT_P = $('#realtime_pause'); $('#realtime_pause').css({ 'background':'url('+RealtimeUpdate._pluginPath+'icon_pause.gif) no-repeat 47% 47%', - 'width':'16px', - 'height':'16px', - 'text-indent':'-9999px', + 'width':'16px', + 'height':'16px', + 'display':'block', 'border':'none', - 'cursor':'pointer' + 'cursor':'pointer', + 'text-indent':'-9999px' }); RT_P.bind('click', function() { RealtimeUpdate._paused = true; @@ -237,11 +251,12 @@ RealtimeUpdate = { RT_P = $('#realtime_play'); RT_P.css({ 'background':'url('+RealtimeUpdate._pluginPath+'icon_play.gif) no-repeat 47% 47%', - 'width':'16px', - 'height':'16px', - 'text-indent':'-9999px', + 'width':'16px', + 'height':'16px', + 'display':'block', 'border':'none', - 'cursor':'pointer' + 'cursor':'pointer', + 'text-indent':'-9999px' }); RT_P.bind('click', function() { RealtimeUpdate._paused = false; @@ -264,28 +279,22 @@ RealtimeUpdate = { initAddPopup: function(url, timeline, path) { - var NP = $('#notices_primary'); - NP.css({'position':'relative'}); - NP.prepend(''); + var NP = $('#realtime_timeline'); + NP.append(''); - var RT = $('#realtime_timeline'); - RT.css({ - 'margin':'0 0 11px 0', + var PP = $('#realtime_popup'); + PP.css({ 'background':'transparent url('+ path + 'icon_external.gif) no-repeat 0 30%', - 'padding':'0 0 0 20px', + 'width':'16px', + 'height':'16px', 'display':'block', - 'position':'absolute', - 'top':'-20px', - 'right':'0', 'border':'none', 'cursor':'pointer', - 'color':$('a').css('color'), - 'font-weight':'bold', - 'font-size':'1em' + 'text-indent':'-9999px' }); $('#showstream #notices_primary').css({'margin-top':'18px'}); - RT.bind('click', function() { + PP.bind('click', function() { window.open(url, '', 'toolbar=no,resizable=yes,scrollbars=yes,status=yes,width=500,height=550'); From 4823463e3f397ddfc44e6455ff6fcdb32cbf9809 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Wed, 18 Nov 2009 16:00:40 +0000 Subject: [PATCH 04/38] Relatively positioning notice_primary --- plugins/Realtime/realtimeupdate.js | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index 28cd590289..e2bd8daea3 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -193,6 +193,7 @@ RealtimeUpdate = { { var NP = $('#notices_primary'); NP.prepend('
'); + NP.css({'position':'relative'}); $('#realtime_actions').css({ 'position':'absolute', From ad627ac45137cb11c9f5d961ac93cd192a2fc423 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Wed, 18 Nov 2009 16:08:11 +0000 Subject: [PATCH 05/38] Updated button styles. By default, all buttons will have a drop-shadow --- theme/default/css/display.css | 3 +-- theme/identica/css/display.css | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/theme/default/css/display.css b/theme/default/css/display.css index 6edc66ad26..a4f03fbf19 100644 --- a/theme/default/css/display.css +++ b/theme/default/css/display.css @@ -52,8 +52,7 @@ input.submit, .entity_remote_subscribe, .entity_actions a, .entity_actions input, -button.close { -background-color:#9BB43E; +button { box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); -moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); -webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); diff --git a/theme/identica/css/display.css b/theme/identica/css/display.css index 94bef339fe..eb21ea65b5 100644 --- a/theme/identica/css/display.css +++ b/theme/identica/css/display.css @@ -52,7 +52,7 @@ input.submit, .entity_remote_subscribe, .entity_actions a, .entity_actions input, -button.close { +button { box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); -moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); -webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.3); From ef542afbe5f6aec04f7c72d71fb613265e794f95 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Wed, 18 Nov 2009 17:23:04 +0000 Subject: [PATCH 06/38] Added counter beside the play button. When paused, it will update the counter on new received notices. Counter is removed when play is clicked --- plugins/Realtime/realtimeupdate.js | 44 +++++++++++++++++++++++------- 1 file changed, 34 insertions(+), 10 deletions(-) diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index e2bd8daea3..8e3052dfc2 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -77,12 +77,14 @@ RealtimeUpdate = { RealtimeUpdate.purgeLastNoticeItem(); RealtimeUpdate.insertNoticeItem(data); - - RealtimeUpdate.updateWindowCounter(); } else { RealtimeUpdate._queuedNotices.push(data); + + RealtimeUpdate.updateQueuedCounter(); } + + RealtimeUpdate.updateWindowCounter(); }, insertNoticeItem: function(data) { @@ -192,7 +194,7 @@ RealtimeUpdate = { initActions: function(url, timeline, path) { var NP = $('#notices_primary'); - NP.prepend('
'); + NP.prepend('
'); NP.css({'position':'relative'}); $('#realtime_actions').css({ @@ -221,7 +223,7 @@ RealtimeUpdate = { showPause: function() { - RT_PP = $('#realtime_pauseplay'); + RT_PP = $('#realtime_playpause'); RT_PP.empty(); RT_PP.append(''); @@ -233,7 +235,8 @@ RealtimeUpdate = { 'display':'block', 'border':'none', 'cursor':'pointer', - 'text-indent':'-9999px' + 'text-indent':'-9999px', + 'float':'left' }); RT_P.bind('click', function() { RealtimeUpdate._paused = true; @@ -245,9 +248,14 @@ RealtimeUpdate = { showPlay: function() { - RT_PP = $('#realtime_pauseplay'); + RT_PP = $('#realtime_playpause'); RT_PP.empty(); - RT_PP.append(''); + RT_PP.append(' '); + + $('#queued_counter').css({ + 'float':'left', + 'line-height':'1.2' + }); RT_P = $('#realtime_play'); RT_P.css({ @@ -257,7 +265,9 @@ RealtimeUpdate = { 'display':'block', 'border':'none', 'cursor':'pointer', - 'text-indent':'-9999px' + 'text-indent':'-9999px', + 'float':'left', + 'margin-left':'4px' }); RT_P.bind('click', function() { RealtimeUpdate._paused = false; @@ -270,12 +280,25 @@ RealtimeUpdate = { }); }, - showQueuedNotices: function() { + showQueuedNotices: function() + { $.each(RealtimeUpdate._queuedNotices, function(i, n) { RealtimeUpdate.insertNoticeItem(n); }); RealtimeUpdate._queuedNotices = []; + + RealtimeUpdate.removeQueuedCounter(); + }, + + updateQueuedCounter: function() + { + QC = $('#realtime_playpause #queued_counter').html('('+RealtimeUpdate._queuedNotices.length+')'); + }, + + removeQueuedCounter: function() + { + $('#realtime_playpause #queued_counter').empty(); }, initAddPopup: function(url, timeline, path) @@ -291,7 +314,8 @@ RealtimeUpdate = { 'display':'block', 'border':'none', 'cursor':'pointer', - 'text-indent':'-9999px' + 'text-indent':'-9999px', + 'float':'left' }); $('#showstream #notices_primary').css({'margin-top':'18px'}); From 18835403fcea146c15488157435c2d98f25bc093 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 18 Nov 2009 09:29:55 -0800 Subject: [PATCH 07/38] Notice: Undefined variable: source in actions/apistatusesupdate.php on line 88 --- actions/apistatusesupdate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/apistatusesupdate.php b/actions/apistatusesupdate.php index 7ddf7703bb..85a7c8c084 100644 --- a/actions/apistatusesupdate.php +++ b/actions/apistatusesupdate.php @@ -85,7 +85,7 @@ class ApiStatusesUpdateAction extends ApiAuthAction $this->lat = $this->trimmed('lat'); $this->lon = $this->trimmed('long'); - if (empty($this->source) || in_array($source, self::$reserved_sources)) { + if (empty($this->source) || in_array($this->source, self::$reserved_sources)) { $this->source = 'api'; } From 1d6bacc681eca89b7c20bb96fbacf5bcb8434d88 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 18 Nov 2009 12:57:37 -0500 Subject: [PATCH 08/38] Improved parameter checking --- plugins/Authentication/AuthenticationPlugin.php | 2 +- plugins/LdapAuthentication/LdapAuthenticationPlugin.php | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/plugins/Authentication/AuthenticationPlugin.php b/plugins/Authentication/AuthenticationPlugin.php index 1b9084187b..cd1de11491 100644 --- a/plugins/Authentication/AuthenticationPlugin.php +++ b/plugins/Authentication/AuthenticationPlugin.php @@ -2,7 +2,7 @@ /** * StatusNet, the distributed open-source microblogging tool * - * Superclass for plugins that do authentication and/or authorization + * Superclass for plugins that do authentication * * PHP version 5 * diff --git a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php index ad5dd3a022..664529497c 100644 --- a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php +++ b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php @@ -63,6 +63,8 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin if(!isset($this->attributes['username'])){ throw new Exception("must specify a username attribute"); } + if($this->password_changeable && (! isset($this->attributes['password']) || !isset($this->password_encoding))){ + throw new Exception("if password_changeable is set, the password attribute and password_encoding must also be specified"); } //---interface implementation---// From c1efb8aa7fc429c6885cb6337e141e32847d34e9 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Wed, 18 Nov 2009 17:59:44 +0000 Subject: [PATCH 09/38] Took out CSS from JS and placed it in its own file. --- plugins/Realtime/RealtimePlugin.php | 7 ++++ plugins/Realtime/realtimeupdate.css | 49 +++++++++++++++++++++++++++ plugins/Realtime/realtimeupdate.js | 52 ----------------------------- 3 files changed, 56 insertions(+), 52 deletions(-) create mode 100644 plugins/Realtime/realtimeupdate.css diff --git a/plugins/Realtime/RealtimePlugin.php b/plugins/Realtime/RealtimePlugin.php index 6d59bd1b12..2cff03d6c8 100644 --- a/plugins/Realtime/RealtimePlugin.php +++ b/plugins/Realtime/RealtimePlugin.php @@ -118,6 +118,13 @@ class RealtimePlugin extends Plugin return true; } + function onEndShowStatusNetStyles($action) + { + $action->cssLink(common_path('plugins/Realtime/realtimeupdate.css'), + null, 'screen, projection, tv'); + return true; + } + function onEndNoticeSave($notice) { $paths = array(); diff --git a/plugins/Realtime/realtimeupdate.css b/plugins/Realtime/realtimeupdate.css new file mode 100644 index 0000000000..0ab5dd32b9 --- /dev/null +++ b/plugins/Realtime/realtimeupdate.css @@ -0,0 +1,49 @@ +#notices_primary { +position:relative; +} + +#realtime_actions { +position: absolute; +top: -20px; +right: 0; +margin: 0 0 11px 0; +} + +#realtime_actions li { +margin-left: 18px; +list-style-type: none; +float: left; +} + +#realtime_actions button { +width: 16px; +height: 16px; +display: block; +border: none; +cursor: pointer; +text-indent: -9999px; +float: left; +} + +#realtime_play { +background: url(icon_play.gif) no-repeat 47% 47%; +margin-left: 4px; +} + +#realtime_pause { +background: url(icon_pause.gif) no-repeat 47% 47%; +} + +#realtime_popup { +background: url(icon_external.gif) no-repeat 0 30%; +} + +#queued_counter { +float:left; +line-height:1.2; +} + +#showstream #notices_primary { +margin-top: 18px; +} + diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index 8e3052dfc2..9030ad5518 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -195,20 +195,6 @@ RealtimeUpdate = { { var NP = $('#notices_primary'); NP.prepend('
'); - NP.css({'position':'relative'}); - - $('#realtime_actions').css({ - 'position':'absolute', - 'top':'-20px', - 'right':'0', - 'margin':'0 0 11px 0' - }); - - $('#realtime_actions li').css({ - 'margin-left':'18px', - 'list-style-type':'none', - 'float':'left' - }); RealtimeUpdate._pluginPath = path; @@ -228,16 +214,6 @@ RealtimeUpdate = { RT_PP.append(''); RT_P = $('#realtime_pause'); - $('#realtime_pause').css({ - 'background':'url('+RealtimeUpdate._pluginPath+'icon_pause.gif) no-repeat 47% 47%', - 'width':'16px', - 'height':'16px', - 'display':'block', - 'border':'none', - 'cursor':'pointer', - 'text-indent':'-9999px', - 'float':'left' - }); RT_P.bind('click', function() { RealtimeUpdate._paused = true; @@ -252,23 +228,7 @@ RealtimeUpdate = { RT_PP.empty(); RT_PP.append(' '); - $('#queued_counter').css({ - 'float':'left', - 'line-height':'1.2' - }); - RT_P = $('#realtime_play'); - RT_P.css({ - 'background':'url('+RealtimeUpdate._pluginPath+'icon_play.gif) no-repeat 47% 47%', - 'width':'16px', - 'height':'16px', - 'display':'block', - 'border':'none', - 'cursor':'pointer', - 'text-indent':'-9999px', - 'float':'left', - 'margin-left':'4px' - }); RT_P.bind('click', function() { RealtimeUpdate._paused = false; @@ -307,18 +267,6 @@ RealtimeUpdate = { NP.append(''); var PP = $('#realtime_popup'); - PP.css({ - 'background':'transparent url('+ path + 'icon_external.gif) no-repeat 0 30%', - 'width':'16px', - 'height':'16px', - 'display':'block', - 'border':'none', - 'cursor':'pointer', - 'text-indent':'-9999px', - 'float':'left' - }); - $('#showstream #notices_primary').css({'margin-top':'18px'}); - PP.bind('click', function() { window.open(url, '', From 63d3e07ce4b12a0a06d74730ff4c938ace519517 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Wed, 18 Nov 2009 19:15:55 +0000 Subject: [PATCH 10/38] Check for dupe from insertNoticeItem() --- plugins/Realtime/realtimeupdate.js | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/plugins/Realtime/realtimeupdate.js b/plugins/Realtime/realtimeupdate.js index 9030ad5518..a2c4da113e 100644 --- a/plugins/Realtime/realtimeupdate.js +++ b/plugins/Realtime/realtimeupdate.js @@ -66,13 +66,6 @@ RealtimeUpdate = { receive: function(data) { - id = data.id; - - // Don't add it if it already exists - if ($("#notice-"+id).length > 0) { - return; - } - if (RealtimeUpdate._paused === false) { RealtimeUpdate.purgeLastNoticeItem(); @@ -88,6 +81,11 @@ RealtimeUpdate = { }, insertNoticeItem: function(data) { + // Don't add it if it already exists + if ($("#notice-"+data.id).length > 0) { + return; + } + var noticeItem = RealtimeUpdate.makeNoticeItem(data); $("#notices_primary .notices").prepend(noticeItem); $("#notices_primary .notice:first").css({display:"none"}); @@ -253,7 +251,7 @@ RealtimeUpdate = { updateQueuedCounter: function() { - QC = $('#realtime_playpause #queued_counter').html('('+RealtimeUpdate._queuedNotices.length+')'); + $('#realtime_playpause #queued_counter').html('('+RealtimeUpdate._queuedNotices.length+')'); }, removeQueuedCounter: function() From d07df8a7964e08d1af9e7bd762f2ac07035d9856 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 18 Nov 2009 14:19:43 -0500 Subject: [PATCH 11/38] Added Authorization plugin Added LDAPAuthorization plugin --- EVENTS.txt | 22 +++ classes/Profile.php | 11 +- lib/apiauth.php | 6 +- lib/util.php | 13 +- plugins/Authorization/AuthorizationPlugin.php | 112 +++++++++++++++ .../LdapAuthenticationPlugin.php | 3 +- .../LdapAuthorizationPlugin.php | 129 ++++++++++++++++++ plugins/LdapAuthorization/README | 84 ++++++++++++ 8 files changed, 371 insertions(+), 9 deletions(-) create mode 100644 plugins/Authorization/AuthorizationPlugin.php create mode 100644 plugins/LdapAuthorization/LdapAuthorizationPlugin.php create mode 100644 plugins/LdapAuthorization/README diff --git a/EVENTS.txt b/EVENTS.txt index c788a9215f..34a222e8f3 100644 --- a/EVENTS.txt +++ b/EVENTS.txt @@ -535,6 +535,28 @@ StartChangePassword: Before changing a password EndChangePassword: After changing a password - $user: user +StartSetUser: Before setting the currently logged in user +- $user: user + +EndSetUser: After setting the currently logged in user +- $user: user + +StartSetApiUser: Before setting the current API user +- $user: user + +EndSetApiUser: After setting the current API user +- $user: user + +StartHasRole: Before determing if the a profile has a given role +- $profile: profile in question +- $name: name of the role in question +- &$has_role: does this profile have the named role? + +EndHasRole: Before determing if the a profile has a given role +- $profile: profile in question +- $name: name of the role in question +- $has_role: does this profile have the named role? + UserDeleteRelated: Specify additional tables to delete entries from when deleting users - $user: User object - &$related: array of DB_DataObject class names to delete entries on matching user_id. diff --git a/classes/Profile.php b/classes/Profile.php index 1b9cdb52f9..4b2e090064 100644 --- a/classes/Profile.php +++ b/classes/Profile.php @@ -594,9 +594,14 @@ class Profile extends Memcached_DataObject function hasRole($name) { - $role = Profile_role::pkeyGet(array('profile_id' => $this->id, - 'role' => $name)); - return (!empty($role)); + $has_role = false; + if (Event::handle('StartHasRole', array($this, $name, &$has_role))) { + $role = Profile_role::pkeyGet(array('profile_id' => $this->id, + 'role' => $name)); + $has_role = !empty($role); + Event::handle('EndHasRole', array($this, $name, $has_role)); + } + return $has_role; } function grantRole($name) diff --git a/lib/apiauth.php b/lib/apiauth.php index 2f2e44a264..0d1613d381 100644 --- a/lib/apiauth.php +++ b/lib/apiauth.php @@ -110,7 +110,11 @@ class ApiAuthAction extends ApiAction } else { $nickname = $this->auth_user; $password = $this->auth_pw; - $this->auth_user = common_check_user($nickname, $password); + $user = common_check_user($nickname, $password); + if (Event::handle('StartSetApiUser', array(&$user))) { + $this->auth_user = $user; + Event::handle('EndSetApiUser', array($user)); + } if (empty($this->auth_user)) { diff --git a/lib/util.php b/lib/util.php index 68f3520db5..5bf4f6091b 100644 --- a/lib/util.php +++ b/lib/util.php @@ -196,10 +196,15 @@ function common_set_user($user) } if ($user) { - common_ensure_session(); - $_SESSION['userid'] = $user->id; - $_cur = $user; - return $_cur; + if (Event::handle('StartSetUser', array(&$user))) { + if($user){ + common_ensure_session(); + $_SESSION['userid'] = $user->id; + $_cur = $user; + Event::handle('EndSetUser', array($user)); + return $_cur; + } + } } return false; } diff --git a/plugins/Authorization/AuthorizationPlugin.php b/plugins/Authorization/AuthorizationPlugin.php new file mode 100644 index 0000000000..be39aedd21 --- /dev/null +++ b/plugins/Authorization/AuthorizationPlugin.php @@ -0,0 +1,112 @@ +. + * + * @category Plugin + * @package StatusNet + * @author Craig Andrews + * @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); +} + +/** + * Superclass for plugins that do authorization + * + * @category Plugin + * @package StatusNet + * @author Craig Andrews + * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html GNU Affero General Public License version 3.0 + * @link http://status.net/ + */ + +abstract class AuthorizationPlugin extends Plugin +{ + //is this plugin authoritative for authorization? + public $authoritative = false; + + //------------Auth plugin should implement some (or all) of these methods------------\\ + + /** + * Is a user allowed to log in? + * @param user + * @return boolean true if the user is allowed to login, false if explicitly not allowed to login, null if we don't explicitly allow or deny login + */ + function loginAllowed($user) { + return null; + } + + /** + * Does a profile grant the user a named role? + * @param profile + * @return boolean true if the profile has the role, false if not + */ + function hasRole($profile, $name) { + return false; + } + + //------------Below are the methods that connect StatusNet to the implementing Auth plugin------------\\ + function onInitializePlugin(){ + + } + + function onStartSetUser(&$user) { + $loginAllowed = $this->loginAllowed($user); + if($loginAllowed === true){ + if($this->authoritative) { + return false; + }else{ + return; + } + }else if($loginAllowed === false){ + $user = null; + return false; + }else{ + if($this->authoritative) { + $user = null; + return false; + }else{ + return; + } + } + } + + function onStartSetApiUser(&$user) { + return onStartSetUser(&$user); + } + + function onStartHasRole($profile, $name, &$has_role) { + if($this->hasRole($profile, $name)){ + $has_role = true; + return false; + }else{ + if($this->authoritative) { + $has_role = false; + return false; + }else{ + return; + } + } + } +} + diff --git a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php index 664529497c..555dabf78d 100644 --- a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php +++ b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php @@ -2,7 +2,7 @@ /** * StatusNet, the distributed open-source microblogging tool * - * Plugin to enable LDAP Authentication and Authorization + * Plugin to enable LDAP Authentication * * PHP version 5 * @@ -65,6 +65,7 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin } if($this->password_changeable && (! isset($this->attributes['password']) || !isset($this->password_encoding))){ throw new Exception("if password_changeable is set, the password attribute and password_encoding must also be specified"); + } } //---interface implementation---// diff --git a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php new file mode 100644 index 0000000000..20bbd25625 --- /dev/null +++ b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php @@ -0,0 +1,129 @@ +. + * + * @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); +} + +require_once INSTALLDIR.'/plugins/Authorization/AuthorizationPlugin.php'; +require_once 'Net/LDAP2.php'; + +class LdapAuthorizationPlugin extends AuthorizationPlugin +{ + public $host=null; + public $port=null; + public $version=null; + public $starttls=null; + public $binddn=null; + public $bindpw=null; + public $basedn=null; + public $options=null; + public $filter=null; + public $scope=null; + public $provider_name = null; + public $uniqueMember_attribute = null; + public $roles_to_groups = null; + + function onInitializePlugin(){ + parent::onInitializePlugin(); + if(!isset($this->host)){ + throw new Exception("must specify a host"); + } + if(!isset($this->basedn)){ + throw new Exception("must specify a basedn"); + } + if(!isset($this->provider_name)){ + throw new Exception("provider_name must be set. Use the provider_name from the LDAP Authentication plugin."); + } + if(!isset($this->uniqueMember_attribute)){ + throw new Exception("uniqueMember_attribute must be set."); + } + if(!isset($this->roles_to_groups)){ + throw new Exception("roles_to_groups must be set."); + } + } + + //---interface implementation---// + function loginAllowed($user) { + $user_username = new User_username(); + $user_username->user_id=$user->id; + $user_username->provider_name=$this->provider_name; + if($user_username->find() && $user_username->fetch()){ + $entry = $this->ldap_get_user($user_username->username); + if($entry){ + //if a user exists, we can assume he's allowed to login + return true; + }else{ + return null; + } + }else{ + return null; + } + } + + function hasRole($profile, $name) { + $user_username = new User_username(); + $user_username->user_id=$profile->id; + $user_username->provider_name=$this->provider_name; + if($user_username->find() && $user_username->fetch()){ + $entry = $this->ldap_get_user($user_username->username); + if($entry){ + if(isset($this->roles_to_groups[$name])){ + if(is_array($this->roles_to_groups[$name])){ + foreach($this->roles_to_groups[$name] as $group){ + if($this->isMemberOfGroup($entry->dn(),$group)){ + return true; + } + } + }else{ + if($this->isMemberOfGroup($entry->dn(),$this->roles_to_groups[$name])){ + return true; + } + } + } + } + } + return false; + } + + function isMemberOfGroup($userDn, $groupDn) + { + $ldap = ldap_get_connection(); + $link = $ldap->getLink(); + $r = ldap_compare($link, $groupDn, $this->uniqueMember_attribute, $userDn); + if ($r === true){ + return true; + }else if($r === false){ + return false; + }else{ + common_log(LOG_ERR, ldap_error($r)); + return false; + } + } +} diff --git a/plugins/LdapAuthorization/README b/plugins/LdapAuthorization/README new file mode 100644 index 0000000000..2ca33f653d --- /dev/null +++ b/plugins/LdapAuthorization/README @@ -0,0 +1,84 @@ +The LDAP Authorization plugin allows for StatusNet to handle authorization +through LDAP. + +Installation +============ +add "addPlugin('ldapAuthorization', + array('setting'=>'value', 'setting2'=>'value2', ...);" +to the bottom of your config.php + +You *cannot* use this plugin without the LDAP Authentication plugin + +Settings +======== +provider_name*: name of the LDAP authentication provider that this plugin works with. +authoritative (false): should this plugin be authoritative for + authorization? +uniqueMember_attribute ('uniqueMember')*: the attribute of a group + that lists the DNs of its members +roles_to_groups*: array that maps StatusNet roles to LDAP groups + some StatusNet roles are: moderator, administrator, sandboxed, silenced + +The below settings must be exact copies of the settings used for the + corresponding LDAP Authentication plugin. + +host*: LDAP server name to connect to. You can provide several hosts in an + array in which case the hosts are tried from left to right. + See http://pear.php.net/manual/en/package.networking.net-ldap2.connecting.php +port: Port on the server. + See http://pear.php.net/manual/en/package.networking.net-ldap2.connecting.php +version: LDAP version. + See http://pear.php.net/manual/en/package.networking.net-ldap2.connecting.php +starttls: TLS is started after connecting. + See http://pear.php.net/manual/en/package.networking.net-ldap2.connecting.php +binddn: The distinguished name to bind as (username). + See http://pear.php.net/manual/en/package.networking.net-ldap2.connecting.php +bindpw: Password for the binddn. + See http://pear.php.net/manual/en/package.networking.net-ldap2.connecting.php +basedn*: LDAP base name (root directory). + See http://pear.php.net/manual/en/package.networking.net-ldap2.connecting.php +options: See http://pear.php.net/manual/en/package.networking.net-ldap2.connecting.php +filter: Default search filter. + See http://pear.php.net/manual/en/package.networking.net-ldap2.connecting.php +scope: Default search scope. + See http://pear.php.net/manual/en/package.networking.net-ldap2.connecting.php + +* required +default values are in (parenthesis) + +Example +======= +Here's an example of an LDAP plugin configuration that connects to + Microsoft Active Directory. + +addPlugin('ldapAuthentication', array( + 'provider_name'=>'Example', + 'authoritative'=>true, + 'autoregistration'=>true, + 'binddn'=>'username', + 'bindpw'=>'password', + 'basedn'=>'OU=Users,OU=StatusNet,OU=US,DC=americas,DC=global,DC=loc', + 'host'=>array('server1', 'server2'), + 'password_encoding'=>'ad', + 'attributes'=>array( + 'username'=>'sAMAccountName', + 'nickname'=>'sAMAccountName', + 'email'=>'mail', + 'fullname'=>'displayName', + 'password'=>'unicodePwd') +)); +addPlugin('ldapAuthorization', array( + 'provider_name'=>'Example', + 'authoritative'=>false, + 'uniqueMember_attribute'=>'uniqueMember', + 'roles_to_groups'=> array( + 'moderator'=>'CN=SN-Moderators,OU=Users,OU=StatusNet,OU=US,DC=americas,DC=global,DC=loc', + 'administrator'=> array('CN=System-Adminstrators,OU=Users,OU=StatusNet,OU=US,DC=americas,DC=global,DC=loc', + 'CN=SN-Administrators,OU=Users,OU=StatusNet,OU=US,DC=americas,DC=global,DC=loc') + ), + 'binddn'=>'username', + 'bindpw'=>'password', + 'basedn'=>'OU=Users,OU=StatusNet,OU=US,DC=americas,DC=global,DC=loc', + 'host'=>array('server1', 'server2') +)); + From 44c7813ac1c8941f0cb7ebfc6e3ccc860f2c5c45 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 18 Nov 2009 14:35:44 -0500 Subject: [PATCH 12/38] Add login_group configuration option so only members of a certain group can login --- .../LdapAuthorizationPlugin.php | 20 +++++++++++++++++-- plugins/LdapAuthorization/README | 2 ++ 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php index 20bbd25625..5173781f9f 100644 --- a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php +++ b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php @@ -49,6 +49,7 @@ class LdapAuthorizationPlugin extends AuthorizationPlugin public $provider_name = null; public $uniqueMember_attribute = null; public $roles_to_groups = null; + public $login_group = null; function onInitializePlugin(){ parent::onInitializePlugin(); @@ -77,8 +78,23 @@ class LdapAuthorizationPlugin extends AuthorizationPlugin if($user_username->find() && $user_username->fetch()){ $entry = $this->ldap_get_user($user_username->username); if($entry){ - //if a user exists, we can assume he's allowed to login - return true; + if(isset($this->login_group)){ + if(is_array($this->login_group)){ + foreach($this->login_group as $group){ + if($this->isMemberOfGroup($entry->dn(),$group)){ + return true; + } + } + }else{ + if($this->isMemberOfGroup($entry->dn(),login_group)){ + return true; + } + } + return null; + }else{ + //if a user exists, we can assume he's allowed to login + return true; + } }else{ return null; } diff --git a/plugins/LdapAuthorization/README b/plugins/LdapAuthorization/README index 2ca33f653d..2166b27266 100644 --- a/plugins/LdapAuthorization/README +++ b/plugins/LdapAuthorization/README @@ -18,6 +18,8 @@ uniqueMember_attribute ('uniqueMember')*: the attribute of a group that lists the DNs of its members roles_to_groups*: array that maps StatusNet roles to LDAP groups some StatusNet roles are: moderator, administrator, sandboxed, silenced +login_group: if this is set to a group DN, only members of that group will be + allowed to login The below settings must be exact copies of the settings used for the corresponding LDAP Authentication plugin. From cc662ec1e6185c48fdd78aeef5aaa73c5da06293 Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Wed, 18 Nov 2009 20:40:08 +0100 Subject: [PATCH 13/38] Localisation updates from !translatewiki !StatusNet --- locale/ar/LC_MESSAGES/statusnet.mo | Bin 33408 -> 36593 bytes locale/ar/LC_MESSAGES/statusnet.po | 810 +++++++++++++------ locale/bg/LC_MESSAGES/statusnet.mo | Bin 84188 -> 88688 bytes locale/bg/LC_MESSAGES/statusnet.po | 791 +++++++++++++------ locale/ca/LC_MESSAGES/statusnet.mo | Bin 72040 -> 75686 bytes locale/ca/LC_MESSAGES/statusnet.po | 850 ++++++++++++++------ locale/cs/LC_MESSAGES/statusnet.mo | Bin 35624 -> 37974 bytes locale/cs/LC_MESSAGES/statusnet.po | 779 +++++++++++++------ locale/de/LC_MESSAGES/statusnet.mo | Bin 72263 -> 75715 bytes locale/de/LC_MESSAGES/statusnet.po | 874 ++++++++++++++------- locale/el/LC_MESSAGES/statusnet.mo | Bin 30197 -> 32801 bytes locale/el/LC_MESSAGES/statusnet.po | 763 +++++++++++++----- locale/en_GB/LC_MESSAGES/statusnet.mo | Bin 67648 -> 70745 bytes locale/en_GB/LC_MESSAGES/statusnet.po | 789 ++++++++++++++----- locale/es/LC_MESSAGES/statusnet.mo | Bin 71397 -> 74756 bytes locale/es/LC_MESSAGES/statusnet.po | 785 ++++++++++++++----- locale/fi/LC_MESSAGES/statusnet.mo | Bin 77266 -> 80746 bytes locale/fi/LC_MESSAGES/statusnet.po | 795 +++++++++++++------ locale/fr/LC_MESSAGES/statusnet.mo | Bin 95012 -> 98865 bytes locale/fr/LC_MESSAGES/statusnet.po | 823 ++++++++++++++------ locale/ga/LC_MESSAGES/statusnet.mo | Bin 75182 -> 78412 bytes locale/ga/LC_MESSAGES/statusnet.po | 790 +++++++++++++------ locale/he/LC_MESSAGES/statusnet.mo | Bin 39222 -> 41479 bytes locale/he/LC_MESSAGES/statusnet.po | 777 +++++++++++++------ locale/is/LC_MESSAGES/statusnet.mo | Bin 63447 -> 66563 bytes locale/is/LC_MESSAGES/statusnet.po | 779 ++++++++++++++----- locale/it/LC_MESSAGES/statusnet.mo | Bin 71290 -> 74607 bytes locale/it/LC_MESSAGES/statusnet.po | 791 +++++++++++++------ locale/ja/LC_MESSAGES/statusnet.mo | Bin 48534 -> 51365 bytes locale/ja/LC_MESSAGES/statusnet.po | 779 +++++++++++++------ locale/ko/LC_MESSAGES/statusnet.mo | Bin 75739 -> 79573 bytes locale/ko/LC_MESSAGES/statusnet.po | 791 +++++++++++++------ locale/mk/LC_MESSAGES/statusnet.mo | Bin 45910 -> 48861 bytes locale/mk/LC_MESSAGES/statusnet.po | 779 +++++++++++++------ locale/nb/LC_MESSAGES/statusnet.mo | Bin 23808 -> 25159 bytes locale/nb/LC_MESSAGES/statusnet.po | 769 ++++++++++++------ locale/nl/LC_MESSAGES/statusnet.mo | Bin 100798 -> 104559 bytes locale/nl/LC_MESSAGES/statusnet.po | 798 +++++++++++++------ locale/nn/LC_MESSAGES/statusnet.mo | Bin 68483 -> 71756 bytes locale/nn/LC_MESSAGES/statusnet.po | 791 +++++++++++++------ locale/pl/LC_MESSAGES/statusnet.mo | Bin 96716 -> 100184 bytes locale/pl/LC_MESSAGES/statusnet.po | 783 ++++++++++++++----- locale/pt/LC_MESSAGES/statusnet.mo | Bin 25876 -> 27718 bytes locale/pt/LC_MESSAGES/statusnet.po | 771 +++++++++++++----- locale/pt_BR/LC_MESSAGES/statusnet.mo | Bin 70940 -> 74412 bytes locale/pt_BR/LC_MESSAGES/statusnet.po | 791 +++++++++++++------ locale/ru/LC_MESSAGES/statusnet.mo | Bin 95158 -> 100725 bytes locale/ru/LC_MESSAGES/statusnet.po | 1029 ++++++++++++++++--------- locale/statusnet.po | 732 +++++++++++++----- locale/sv/LC_MESSAGES/statusnet.mo | Bin 59360 -> 62253 bytes locale/sv/LC_MESSAGES/statusnet.po | 788 +++++++++++++------ locale/te/LC_MESSAGES/statusnet.mo | Bin 55687 -> 59709 bytes locale/te/LC_MESSAGES/statusnet.po | 777 ++++++++++++++----- locale/tr/LC_MESSAGES/statusnet.mo | Bin 35135 -> 37480 bytes locale/tr/LC_MESSAGES/statusnet.po | 780 +++++++++++++------ locale/uk/LC_MESSAGES/statusnet.mo | Bin 92880 -> 97470 bytes locale/uk/LC_MESSAGES/statusnet.po | 791 +++++++++++++------ locale/vi/LC_MESSAGES/statusnet.mo | Bin 68580 -> 71795 bytes locale/vi/LC_MESSAGES/statusnet.po | 798 +++++++++++++------ locale/zh_CN/LC_MESSAGES/statusnet.mo | Bin 65285 -> 68386 bytes locale/zh_CN/LC_MESSAGES/statusnet.po | 793 +++++++++++++------ locale/zh_TW/LC_MESSAGES/statusnet.mo | Bin 19305 -> 20853 bytes locale/zh_TW/LC_MESSAGES/statusnet.po | 769 +++++++++++++----- 63 files changed, 18384 insertions(+), 7121 deletions(-) diff --git a/locale/ar/LC_MESSAGES/statusnet.mo b/locale/ar/LC_MESSAGES/statusnet.mo index 9d156ce91e4977560bf7d63c3eddac0c1a051951..45861299a715a8772e34edaf4d6fd711e6fedb7a 100644 GIT binary patch delta 12940 zcmbW-2Y6IvzQ^%1A+*q>w?IxHbO;?nKnT*CG=qSm49Nrn$pkW!(A1$5nt;cOAR;Ib zMa2OD1r_V6Ac}=>#zVT z;xep<>#zpyG#+&8L)I}8>L7x3@jR*ntBqyVhw7+-+ZelJIr9CCL$L|@(O4UUSQb~J zCa@0GegkUaTd)l7#F|#fvUZWsfQLevRg^6RlCjza!tW%5TX<6G-VXrTMC3T{Gm^rR`@he_mL!dm#1DgPBU(4WR? z?c96hNvUN zS5X6$O?C%NKn;+B+JQbMKN|Ij$75BTnauvHqYwoe=sv8BkE2%l9IE~;)ZzRL)$#AB zN9Jkoc2om(e=J6_R%dshdZ-B{quQsT7Lty-F9$W=GK^(>>j4s)(MHr(7NaKe z8fwMIP>1m>s@*rJmHmd=!U|p7N7NkobXa|{8s=aPyaV-pSc`ge&tYSH59{mwzib+m z@9NIDHL77Btckav2Ff$8!RYIWdTaI}E3sb0+V~1;!k?ga;uPww`WE$t{1vqTPdEC} z`+pq?tvnvpuq!slKB&W(g?y2%0M^1n)BvkY{d&~v`3P!jccOOc1ylbQ)Fb>DHO?vH zPZ+90LDlZ=mNi4Iq$_HssV3jgwfXcuay_M;~LI%?t( z)DE2P&i-ox-%_C0rEH43<;_rsr3b2hENYg@cEb+JyW z+fOoToSw#hrhHh)6pTmBXfohw=Sy-u@GD_n@$>LS#{9zsp%anyvLGx>w4 zv+_2o{nw}gf5CcKrB~FD)trPn>VtaL!%!=lf||e#)Wkxlm8>^zMy+TUYJh{Ni5^8w z=rdG*7fs%Cy?cLE)T4>VSiS#UNJLkTI;F!rDBR7*GB%YQ>+UCUzb* zp`TF`DcjpUBehXG*8tTn5mnzF%j^B`LqanhgnDMTp`LXnYG?9LH_S(!ja8@>u0=iT zjmS65+KigON2neA3f12wQ+@?C0Z$)yLe(&&0qT&@4NXu3wL$GjPi%-IOnEkHqH|Fz zT8G-o2T&b9V?1Qa-^J)eP><*mHp8o^i8W1Q|22VDY3}>n)i@aSy4+&SFwQ_tAYk$< zQTN}2TKOZWGqVdd;9=ARj-w|0DXRQS)Ixtq3%RGUOka1vcw-W(>`G-|*%QK$VVs=u#M_g^vfWkNT&1IMAZum);{HfoEyqi(n!bvSP{ z2B;g` zV-xIR%5O$ZI0xI~Jk*vJqXv8dHGw0>k4*U~RDa(h{fDd{Na!`H(BB=n25M^?qbAlH z^)?JZ4KNDTelqH{oQ_)YQdGN*s2$smTIqh&PQ8wr@JZ~9=dldqTk!+j*UCn9oP@EM zjCyvRO@274!_n9rC!yYsC8!BMijDCVY=oyx{wk`U_<`;t>WUr7kC2RSg-CS6-MAUg zW1@#o>>&4bDIV;0{65l`^&RTabsgfayf?;>Pe)B~JldFvWpF9#QLI2cn)RqNvlT-s zc#ed&>~+-Z^Re*)s>7?Ot*$uKtxrO2WeV!PfmjZ2Mzy~U^?{m>NjMvA+=$xQL#PS8 zI+Xoa!*?iXjwetZ{2leo;)c0fW}^;c3Tlf-pq_aSs@-DLgdRfmw;k1f59+OW8+CZU zK&?D>xVtkohqM3cur38UT-}gY(;A3caS^t~t=JUbH~xs~xZVi&*Yys_Q?tgPjSr!o z`3tE2KSV9?in0EU(ZAnXX(1BPm7w0o#i%X1AN6P+Mony&sXt`O-$!lzmnQ!MYJz1) zx;xPd)lYYMrx4h69~ zu0?I}7US!v37x}ASZR!VUtLTj-vT*nA!`VUW)w_9ZP{Y1jvKKGK5aaRUC6(KI#hq6 zR+u!_T~RAzC)A32q7LO?v~eWrQOv}uxEAB|{y##Z1_e7&HylJw;I(K2-Uif`ok2bG z3r5dP?)zUK^}csSZRuF!bW9_^5Ox2n#&@wM`H!%&-v9GT;7^!}G3o9H<$BaJn}ph# zX{dn~n*3(eO7>%Sd<*r9$)Cpfaqfb8U;^c7sBtEv7MP16%`8O1#v;^Dv7M+JUc>hI z6>1_iZ?>$K*cdzGAk_WyQO|mb$?rg${BEp^$B}QDbrE%DI*oVl8!?{!*UH9Gpn>zS z9j-tPxDRXNtEd^5nEXZ5z}5u!zKW=ho1)tHMxBwHQ0?X#7om1+6>29oOkn?Y8n;s* z-!^`Ooyb?2=pN2AV-~iid^Kvt`!E?lMQwfDEpGc3*n<2BRJ#J~gAbW}1ly9o8X}<% zTi@z#c{=LG0@RJ0(8j~4m3@g?(XXhV1)fRnsUC#&$!DSJ7ofI&g{j|Se8tqCM(t4O zJPB=emD}8{sfXRkw?I9L+p#gOL7j=GumK)Hz3=C+6~^7}uDlCs;uBF5xC=F*`>`Hw zHud}6`jB;sgbvw{s7H`A+1;9f*nxZiwbE^5}Km)`%H8SWz(g}QM*Ho-%vEj@#c@ORV)r(UM}-Zw(6tOsfWH=sVr zUSmEckY9{?bX!pqIDp!j%Q%4Xt+GD1!(pfnr(z<`M4i@qO#K$rgbty;j3+P&&!Q#} zm*uu^g*uces6#f@crV)I52H^1ml#q<-;vPFucB63b*j4)ZBY~PqjqE+j>Rx)1?8u? zJC}eOa42@cxv2W5P5GOsx9KPBhb^<+iR5In|0xu#p`aPQiMsI;#$)Vscg2ZVfqYN2 zvA@at@H~0H$=^J~Z8sU?D9<+eAZo>Tn(~zy^~eIK2`s{fxCX1?POOXvQ2o3aBB2!@LmiTHSQD?J2CSaz z{^HOY)zN6Y0dp}HpT#P;7uC;esD*rrYJb_3SM<9JO+@wE30q@m7zsV&Le$}U5Ub*I zs6%xab;B7{{cot1)Xa0so1z|7FVq4ipw3Djw!wQ${w35-e}U@f3RY%(tMW{D=Jin( z9Z?+(Lp=g7Y9)7=`Uj2AVI9hkpx%P7Q1?}s<+g8(T0kmR!U@;{eW*je2Ak>qf09H~ z3O+z}^b>Z#2Knw`8-`WL=b#?VJgkLxqjqL1vJ&ecR>ikb3n?-6SFi^8N&)lJ6ZPx| zVO_odqey6_)6mAnrolFo-(~Xe;YjLFptih4&>grxs>9K!GcXag6Zs}zWPB8>Q@$T{ z|2r76Nt`30XH}uV-I^|#OnwaN6fZRS)u@TSX#515lm8you3n)#a8pbp-vc$Vd8i#& zj5gkn+M#`g?7td(K!LXKr12cKCI2I8MTxWB8+)J**F@C7cN({$?td5c`j%izJdJv! z73R1fpmtc3{A6Qr4*RdeRYXB|+=lAt6l#kunDTOS-Ier4y)A>VHfEdh5ZdI6P-kGL zso#&9(0izUKgK%vC2E4d=|(kZGS8hzE7V~efO=Nhs8c*26L16S(Y%0acLD2SmHF=J zZid>?5vcNUsMGE@<*QNs-G>b@w1uaJL1EUe$}e>%-V=4Y`=h>e<53G+fSTAQQ+~*J7DH-SWtrPySL{Z9 zq{%PC#^fJGJ(8DEJ9H8?&{wFAf5E|6ce(p}!(_aU{9~wzhEWSSifQ-_>hQKLV*e9K zj4E65`{3EEXe#?}5R=DNujN>qg`Vh9mZP*Ntqn`P%r~wD8bayNRRX-gyp>;S3 zi&uu+h80$sQ;e;sxB=C14yvOK*c|s`2A;+i*l)G#4AcM)_QeC(75_l3wBs7L|8!J; zvoIFdhDhic-HY1d-Du+xQ-0YPcenc}T3`zG15qE65UQj5QE$V;#$8y2{L82b97T?r zHI(oYeAlcw6tI4t4~Y$`HP?N{#gtVw>4W&dHEn8;-fr?m#>eqAagL}>Xs1fA+9Wm- z=ZG}oB5}-&Px2pE3vSf)J@G8*M0^cB1m`UJ?*5LY*9a0?`KLsVDXc`>Uc??^2xaR{ z`F@;9*$(38Xc_DOfs785E**|jCHIYX6(k;0_{&^hngT3*#^a?f@F;%mZ%Ze*F@+9m2Z$Zj7x|wRKul-y+!SLzs8N7vfp7d0_7vCWsBs!Zmms~^EQxuk7eiD6%dc>VX8{z{(*UjAU1on#N z_`5v@Df5{QSKuI%ZijDEe}(uf>8eC`;w$p}IEY>;{Mp|<|9n8mG^YW-lv??iL);u~ z_K!aXQ#O})m?Hg)+1tch#BlOgiPOY!@_)sn#8#pn`P&Hn+Quitnn+q#4E7|R)HWX? zae?ScoF&c>x~3Z!81;R)&ZJ)={S&d3{6N(IeMeVIw6PE;6A7g2; zg+f0v7pft_x57G)&lA}yXeQsZ;Y%HPcIMIW2CtRxnt}OBo zoBD^0ZVj&=dD|0Rzgx5y^ozs{Dw+^Knj1z_wv!l7K0^FSTGu4fo6*4&cntO9_zps! z<`>Ani>22v^15y(GEBO=#&1V_L%{*mwUn4jd{0?#ViwVy{EI~C^$}&dZZJ;4#pI_D z2S|TF6q3Fb$Kxt|nb=KQR}bP8q4A?Xk+v(r^*YfunsR?IDcQ>8#d13N7L)NS;uXS6 z==y=^PkJ8?z-c&_xJY_8v7GctVm0Xt_^zJ+4ibMSO0SMorjl8PwTSOX4<=d@=|o@3 z{zB;LMhrLUOw!kr?ncxnR+E1ebBS2ey4De&5CudD@sgf@85-P0RHR@4QF`??iTTtu zCN>kdmR90A^0SFMiPprAlvTuga2$R?oFpD0uiutRuiH%GBfPBrZ%?BYxPT}jJs(T2 zE+o<^YeVRI+{G#&{~YP3a18OasaN&3Ytj#pf1i9u9D$om-J8ZxB8fO+It_Xgmxw%5 z`4H*KM1skav>qdVB7cSWgY^ zuAiUbWInv6QpwrGe-THiE4|8*=wLD{F_XIXCO^=$dz5@X;#E_Agz^ofV@>^9Ttogz z46WghN@UIxADafRk$#_Wh_QsOBvV(ObVJgkO@2QvjJ9z9cmaN;Y!h}eZB+9Z=^KeE zL^&ct*?ZC7d7NF%JI8tbnRZrww$GpGeA+y{+RTC}IoTO@Fgw?mlkN9~+qTG!sp}0; z6vz(x?2J5rR`%3_d~Yy2&+qJRRXhAts{x*}!D+r+pL3!0(6Tvs0bgdgW1BXfa@qcX zFF)vb+tv!-+IEYllI``|-i(aA0)No?xn0kiS>A%2pxbSZ*FUwuJJshTC%0*k<71%U zwCsRgKnGTTU$j7JXIyexZxYT2wve|{+pfCJM&k->_{h3qp=2&CdLcC_mW4(nw ziVJ;qrZ12^)$gXG8yN5fgW3M60jFc{Q}H=Ie+CV+qh5PIb9LhS#K(AZ!;Sm2jH#9D zv$aTXp*K6nJ0-`LYBviw!M;gOR^NW%_xfHRV{5x+`tk#Lew$RFU`ik(KYNNV(`I3F z^9oX(Cum)7 zM#}#8yu-8m7kHX8yyj}|@MR`j={!2kDq8H`lU6?0jEF(9ZP*0yU zdUK)!29iq~X!@pFhtX6_<1zbN1pnPk`wkk@(#|ai1Z_34y>_8DCp%N`P|(Y~e7QVL z+nbr0&jg*dgWAO2(kw8^IWQGr$^;iE%eEaU7PpAs&*aZF51WWDp@sLZ&?QvO>;4+p~CMz8WX<8P|$939gj ze0a>9m@0P3u4orKBCATaI~~$zIo193ok!EtoWtn}<+oG&Y-FMHd3s-`m~Iosbt+$# zL7$>W`eW!~$2%#d@{-6>JF=3Zr%Il29+>o*t=ax_yOPy*$==99I^3yuI&fQNnexw+ z9N?av&gb5Gl`T3`eytT*8NTWr8dGUI6Duy+O`iwC12SjF#Iph0ZT4VS$ul;c?@?`J zv0btwvN+kfn6=qyl+_@-V(P0gvC)YQn|`zcbKDnMA6eqmozb-X(#T@c%fcx$E_o6n z3nMF|)1<>aB~Nq5UaMpWeLrcdD%>NtoG0AL-y+uOJGq`Sb$&}{LVlvt@5aXAdHK(K zoYBF0PK}XG%DHoPl7l_Nql0HX)&Hm4$TF5&RI=Cc%&8Y1S6J2K9K1cjX+61)vt@Qu zXZh@OXV2(b;kt8PkLmHB)@A*tO6TOfSsmR)X>*I%tex(fo@V=5g|b^CMRw^nM3$Fq zPj&{+U+v`0x1)<dF^Xy$2ZMbo{J2?BR=c^6VYtEDA zIk>O7#dFwhJD<*L_G9qIk*-btA;r}&(xybGOuSN%m2-(Nwxo< z%_Gjop*l{Jh4DHyoFg-wPPscIvsh_6l@?42sh0D+w)8+n+i(=rz&&lrrIYyQQ@6Zi zn-*NM#hjzay3&*Mk7@tkcT{i>U#jh#n%2tMIJV_AyO`hhJp-E|bTSJxNR2}qGx!+&b+djQ_JRMJHet-dZ1pV-=@gf$d{0#=-4J?6=uoAlJSynKH zpz0eTU0BVrqGfrkL=wF?1S?|(s-wlmwOEXDo^c!2r2IaX#|u~#Z=yQ5i+cVs`r$M5 zMZYl1DvJTA{%W8f{aZ~))IbZ=i>*z$1Nu|$f@-KAs-YpKegtZulTa%(4a?wS)QmTv zI(!cs;!!Mu_fY*jz*6*Y{Z68WO4N65l*ihXt717!F!lXV9irpGS z8`aTg7=q_e6S##X@Gg2Z^T#A=_$jKP(&5ewDx(@|h+2WRs17=#_I4DigPEwA&okw9 z$lh8TQG2}?)y{ELKVPFJb}O9q*NtaX=cw`b7kZ%vFv66_qdIsI)$wZ7 z`){J2J7PR#JdY)*FF;M;25LpDhOEDmDr`^{j6uz;7pj8^sD|fa4cv?x`C)VaB37V$ z2lc@eX=GWouqLXUh@m(N_1pr~nb?S$_y-;mb#M}OXs)4V@Ce=b47C#O#?DelU@6Km zsOQ_G&Psm_z!|75S%jMDN>qp2Q4{(Y)$v8t%6V>+XhwgaMi?C7yjUOgnY2Tl+CHd` z2cTAH464J~s0Npz&e9vG=eA*K+=p6;Pf;s<71?d;DF*8MuiwO(Ni6ESPDX7-23E(V zsG00A_m86n{3GhQC#V@#igY?^XzYv{;8@hD&q7Tk2Q}cCSXAG?O;U!6S5TkDPAral zQ8PG%YUnI#<^`zd?qgkif+ew5lx6Y5X*EF&uqkRqI-%}&Lw_8ETA|UZ*Y}@AqCLw+ zb+E{ohuV?@sF9yX4eXLBe`m_qP-o~4sw4lVP6rjyO}P$gV2P*!B%vnM2R$0;FcOV4 z8#UwUsE(JQPJJGh#UrS#xQM!c4>glw(as8%!(hsFQ4@;AAdJV4v8SmIZ01a;LNnH1 zGpa&`22dMy`om2*3U$8)YGw(j4!fEAgH3q^YK117ayDuJb5Unx3F`E}jcVr*s-M%% zSbrs7nj4qRjhm=L^KaB%KR_+nQ`8dr$2bj@M|DsWHPF_m73zpu^5Lk7jY184JZgn= zP|q#&kd!CMLv`>Wmce7ji>Rgl5&2xK-%&FQXzna+FzUTpsF_8e2Het=6H#ZQH)<;; zqx#E5oi)$PCfS8*=oD%u7f~I5iyF{<)C`KWa12Jx#Eoh=0yV&R)IfS*1xz*NEY$nC zSP@quTjsI0lBk1supAyjjqpp<68(hw;qZ-h>Z_w>6pfl`PgKK$Py-r=8b}W6Oe{jJ z*mBf!Ys~#Ou<-By-6R_60n}cdNA2-fs1^AE)!<#!%$_0#*$RkrI*doHSa;O>DW-l1 zs>4aB0Zd1=HwX3n3Jlcu|1ybIU@Ph{?bi*wh#J^+R0B^?OXvHX({L4IeN=sOEF1`G zOH!~7jzbM>C29a`QJ-lZdX(%T(N}QNcn;O^SEhUy_2NU+68p4t&PEwjM|Dsg$Djt< z#?&XGCej}(;TTjuvyF>dvj1v$6&027HFIMhs^LSZAE0xn4(_3zdyJZKa4V<7a8w78 zsP;Oe-tTAbk3n^uj@pu`s0q$%#rkV$Hc+7#@=%9xH>&<5>M))~&HO5=ZnM7{qXbKfV?Ib0P{6Ny7@T@va{bT#)=(W4p7 zCaHxRjGv%7yo#atJ8A~iIywVvYaE947)Zas`l&h2TTyQ7W zUo)spMG=fb&7?W%bhgLh*d5hT3hrR9Gf*9dbT)g5ew1U438(=ip(Z#0HLxtyXScw( zy))~tr9MN2UdTty_$F$P{ku4asyga)w?{RUiW+!^aVF~Tgr%sJI*gjob<_lI8Gl7h z@Cg>f5}st|Pz0g&G!nIEJrfr!p|)&?@hIwZ`x^CiJw&Zw zxvq{4FrKofEr}YKYg~q!`C2TA+l~7$j`A_AflpBbtlrI8nfj=X+M4n(EKPYDR>eie zw@?!~inQagPLZgipHMS}twGQ4MFKo}YzkXT7=a zMV*CHsORn)A7N?ARxc(_|5hN04qa7aYvVACqJ9q6!MzxcmroQ7c*<^?q_c)?Xb@ph8Qx6!m?+jrH*qYDT}J22{Df(@`tb zlJ-Sy*$~wI7tH+)7(v;KTG^}E5R0bppJy0_n#jl$*1tK)b}INntnX1v+IWC7!c^ou zSu-#J&lpP&bY|ECn^K>RVYnUnw~2KDwX%VOocH2T6PtmRaTDrm+3z9I55-ql1+SoH z_87H9uEEYvrrQ{aTCuiR9!H=Ckb@QR9n{Q@quTRNb=s?oT8Rh@!k(!6o)IJ((Ja)S ztw(kIG3u0FL9NJb)DngaaqNitY_qTw=As&2iPdm3YQ+wrI<|&7D^L?ThgJtGND=`bJ;yTm>y{MHvi<;;q zys7X1cXQ*~2LJqp1AIo8}@y?1=K}{qY{V~BqqM0P4mTWWzqw2$OH5SK@P%}S{n&}mE<0E6G z3C<5yEb7!RMs@Ty>U}Tj{e!5P|I3s;w@l(Q(K!Pls0JFM8SDWP66zft>LOnOx)KABF$}b@U^H>*1G~>(Y#=EE$2~2lJULQ+Rj>3l61~rq3 z=*D@dv+@?I!_SQOQ14a9a6Zdgs1*%IZC!7S()XW3qP^N_`~-C-zQpEu57kh;$@oG9qnq-VSQ;Og`@YXR1FDRLfB(BlbUGWMM%dmwFbOq~EYzV} zg=KIL>ad=`8h9NWW6>$jbJ3`QrJz=7xG7IVy*CGShVsy(r8{UI_zv4pzKL4OuuP|c z?#QlKV^9rTG(JELuxyqy(+E_DJy2(6ENbP}pjIFc)$uOWnK+%r`fC7}sL-DLhI*lT zwlmWP7)-ep>P+;&ayTB7(Sv&a464Bb)BvuT`X{KvTw1ob?tWJN?X=gX; zE4qx@vfn%;#Yn=YJ2Q+x?OhU<#a^f%qS2_CtU&GgPSlE=#u&VA%2j7LTNHyK)b~ZT zHyPF5G}Qacu@idUB}pK8h(Xw5rqgf|YNR7E9&=HL@F<4j4b&bNpXJOf8nq&+ru;H$ zOAlisypGzkvaEPD9EMEXW6dJbOy;8=++-d&Ys$Bcm1jFIb~L7;mVPd30z0r7{)|j`P=L9n@zRZfuFAD0f4x$Y6A- zOz=TiUr?w{^d{HUQ#Z}EntVTbdE#wiA^lrl5}Nq~q5%)E6V@f-1@gJr2D@Sg&cl+Z zt0r-T{2v&p3a;19J>?(i4|8b+qPf@3+we$OjO6$vx{ywvqe;*AZjMbqyw8fgj_$L|$R7^G6cp|9{0(x0T9lB8^-> z%@fT-SB-z*6=E>a$7#c3&8IMs!aZzCM3EQ4IHERr7}1EBLbRoBGT}pBiujs*0!E;& zv*gtXUCl8ChnsR?C4Zz-u7t6~`!3e>92NhjupK`knvv_$Un08Rq0Y}q|N1kBY{OqA z{=VRu_e?nrU!;7@lpB&iHhBzrfXVBVkJJ9^YEA4WmYTBaCXqjs#0_FN@h-83&=tr1 zX2dE&*L31Jq66iN_#2^X2jxUufT!@VdH#9yG@v4#`14w3ZWhHOR4y|&_L_PXKOrLj zR_;drK6SqkA;g>J-Yk5b@`pGOb)`BK{+Z(9OwZ-!r>62(tV($THYWxV?@{*RX)KCE zF#*ToHFV)1B8FVoPV(bejX0_buHDqNaZ;-md3)kBqQ;-!{{n6nqhdA|HxE8Xxg7Z% z96}r;f+*i7a>)A=9mz9@VZ_hGPD0ln?tSc})&cTAuVnH-3NuZ`O3q*5Ka)mt;{^Gb zzdfvHIuoxDEs2k~_W>Rvs*sl<){)Q0UPLEyT><1z@n1wwRdBsbovs>2r^Nm*G8MB- z>5Ac-fTe87rFSI{vMJ3+7%db(hKKnDT1uOROSnVh^F~5%C65i?~H_Y5vTL1`gvE zEN43KH;%&I#3>@1_>}k$&-xG*h%_KGC?D*C(RB%iEzzp38n58EvG^_XU zscG&}X_@23q}%^(d!>$ron1C5)aCZ> zN{sihW0D%%^OF+1&yuFN?ANZm0 zIW8mJ9TwH3No=FY$VQP(?KgYuut)Wr>ka62(AWE{Z!aHvU`nd@Xvz|ocgnyVpVg^j z?K!D!?4MHGc!v#%@(aq}S}?C*e*QZJ^9vT`@6X?EZ%%7r-$=Xc{bBS-U%##S@8|C? zSZODZujE&-G=Hm=zr#Cud}kl;$%)xM_Al9G?M>NL?Ex9Dd&^8d>SKR3<*fZ~W=(H? z<}FuwwVb~te^35<`CIe%TKU`Z-_76Y{XV;x%llwzND;f+^ic2e>HA#v{F$-dOEb^9 ziWQD!fp@nj%w-4W=GgbM>vsA~2$qj`Jc$6Q672 zIIm$~TgR!7Z(wmek9qMYtm-&k=dLX%8|OGBsHlt~*bGZzCoF~us18oR!nhcNa2*!K zE$G2R7>3`VI{47mN3=8TYN5_+i6PwI=|n~s9Ec3wNk)xu26}KIs^{6L3m&ocH>`Is znR2JSf0*^IwC^^AzaWueS~N zV^iXk$;iAgqfzp(z%^mbShJY9`WAQ#b`RV?NZ{S%JF24%9P0hFY}2JshVrRzcmk73zK+ zykshn8Hq)3E|$a9sD|%j2p&P*@B*qsw@^3y8w+4qPscx#l~9YT2de#WR0pP@IbZeg;*)05wCq zP>b#q>biF^3`_ObqU8D4C8Hbk^%pQzs0+V=CGjw7q+eht-bX#VkO8J$G^)HCR>efr zd2>-6S%>xTD3(BXpyQOmFs#7+od&jG0IH`GP#su-I$<9c!!xLk+(13sz(FQ1jp|S% zEQ%7YV;^dtzlVCp*HP_CJY#NL9yL=PuoOP~4D+v%O|%7bP*b-a)sX|Jk(@=H_#J9S z{z6S{v1iSNVvv`n(+kzXRj6mY1=WEgsOz0YZR;OV1N-G!uUY+%C@4cg$a7{f*1+n- zaj4ypj(RlHQ04zdb>swU2EN0x7!YqdR36p7DXQboqS|Gm?lT`X@VC9T;C<^gRFD5g zy_kZBm^cJA6X946YoKPT3uYuoVnghV8pw3i46gB#sYYfaw#GA91xuxwMc4v$d#S zSO{N6jXVqWKG=cz@l({)pGPga@39a*M9s9fAP*v(Oekv6)IyyYi|TnN)Cl|AcqnT7 zj7B}nIanCCpgMLC)qzW>?fQ!~c#N6p3Rs=;Cdhrf&M-1s{pqMFnS~n3LhBY(&yQgd z{0cP_cdWV6?IXj<-dQSR4IQkGg(m8z-R7AA>ct|Gi|i2sfc_uoX46hfpV8K#lk| zYGeg6%t*_lX09o!yswQ@umkZ-)Id(7&i@59lOdUAZG>S#?f(j7La+|1=dq{`bwfR) z-l!fAvh^cTQ~f;Z!i%h1QM=(7>e1Y?78z?6aeY*W2BHTiqF0&aWQyY+)QC@_Zg>N= zYJW#N@j=uLFQPhf9d+ZMQP*=Om|Ye$f%#WO z9SXF6TcGy)P}Dx1jjCUVC2%L|hDWg^oer-2}|J})FKR-Y>Yy+Z-<(>{-^;YVKh!dz2LSY z_wzaz$>>7YQ9XZzxV?|>!%)w56lw%7;Hx+tb%CN&88ueJ*|-)pL$&^8 zW}-coA?|JC3{<@r)xl-x)krpy(G3rvUL1!}<=>%Z;xE*R!PCsDt%!|?dtn2dgIdIg zu^#@8m9YAYJb&zlakvq+CVoW?IM++ezyHE7nSzR_8K{BkP;*pATA^N@{ZP+%2u5Nm zmczNI?X(4>@EU5y3QRZO3yNWF;#k!CU<|4wlQorE46jn48>~mgTTxT|8R~?uQB!sc z)qzK-MVNnvd8QRmGu0R)Fb)GS0rTJp)FMv9+&BSspDA848sSn~u^DxPZCDleV`cmf zHMJoxoA*FV)C`Qp3b+`{1 zZ&*D4Ffw0IP#U#b?_o#mG2c9jl^9LD5!KO)sE*}dU^>uQgFCPyp0hr{yu_Y` zW^q?Vt(_Pw&HbGoWV9GkF$8B}5nPIeaU*J^dr(t+!Fm((6FWY0egP~%SOvAF>SHl% zk9x#|u^>)HU3WHmb;A{8w2d~R2R}ni@lU9Zg)TDtxfa$S?u}|c4b{=Lm)OBjm3p;mjoC8lFFQ16d8 z)Cl8IyJ9Mqz}2Yh~mMB;~)LraWl5 zxnLBwCGLqHT#n6g4^G8Du`^Cu!QTk*21fYvZ*U! zGgSFd>ul>*)C^oe&CDORyxdCj;%bLFZw%`COKp4%H6wR1O8dXeD!z$Q&>nT;Ls$a8 zz^CyyEQkDU@=^XdL-*m^*d3E^ayHkUb68`tf2k>HyJIC@@q`b zYNOuK{ZNZ#FzPd4Bsk0n4#UI-E7Df|? z|HsTodsO`(^wuKt5}EF}9o3OMo6Iw7i=~JsV>m8B?TW1!f$yPK@nzIh7usxo^C^!N zh*Pi;EN{1U4uBYdg~++mi`s2&+y?bXdSFEyXJhXQGT%{f0QckiJ!T}s zm{&cs{n!Xkq8?T7KC_yOV=v-z7>46e?dPF7_6F(^oV0N$7gu>JRJ(L!t$Cg4WHizb zkk1>Zzyb5`d{$!|@eimQ*L}}C`)1gUcpB;jbsBa4ebl3jJ!sZSS8Pl?+Qu7EkK|KS zyKC51`~S9W(BOSD^?gw%PQ<4%8`b0AP|rNiA@fC~7B(dwjVj-a;dl;f;4jz^%N{mU z-Upi#Pr?ql9cMQd<^E3K5i_zdRL=&ZZkUV}(Ti!g7F%HGC&oV5gm|fq&tN;^5}%s- zXRT{+B;{YDX0FR;ro*dHe}8g5CKHbhkD3#gq2f!{X2;C4T!kwC%G&z4`KGiE)v;eu z9jbrAJd)9<8O*WqAJ~Vu`APEvT6~iE*9G@c&^*TO99CeQQk0KL)&V1XQgPQt1)??U!_)FB( zhMhMTj>l(-U&BcJ3w2(^1@rk{%R0b19aX;tJK`a0A@4=g!-3XKSeOP6u@{DXZWiTG ztVui__3qBbSiFSV1re8wEm7x>z_K_Io8VGxiDyucq~sU8JJ8#gOm#B1P*YgyvUy=V zgZlg)h52zImd2G>0e7P=bOjq>*(+u@^u;p7i?AVX!>;%PY9?c@nnyhb+iU;7Lq^Z? zK5E2Gu9Q^}e<8b<@5lw&eV&Ha>)!@t^U4 zmrUtz%{P=wsKxOU7RScCmm{z%24k{yye*%GTD+^!gP&qqyoqX`|AwhAVQq=gl&4x> zM{gtrpOMiCH?4nQ0peWWn`d4KyAwxY1)PE&T!R|f`Bf>AXX)wiW_hPR>7V(&EIw=p;q-4>rK>}sQQ!n#xxGq zei_!rgIEoJ#nu>c%M3977V|%hf>a9X;8|Od_cnjGAr8encn3S;1LWP~#Qkg@P3d3E z=Y1p8Vr_xi=PR)wZp8w40QD$8!zuVZ4#(l%U(Hk=M@`Mom=BBoW^aJyi5ua^I1p7| z@s4R<6N8Dnq6Y_Hf1HHc9cQr;7QD;XIIM>wa0|9WZ>itS$L$c*GuwoER_~)mauO@z zH#QFX!^9CdmGTy-HS|7ygkNE2+<4Cn;2x^O#qXQXgtAzSI1yPpUS}d1y;$~QNxXpS z$j{gn^ZaR6Z68#Jreh~uic9f24#XE8n6K@hV9w&EOW%I>13zVt&AH%C3o1gwi=upX|(2)tmuiyBDLzm3(g4{=NEjmz*Uyp3(R zzfIUt}=z{5}21~IS?zZtgRJ-s1*Z*a+6>3+kN0q;gF?b$zUeVmHfAMw0vcxm7 zIj+Y#_$}(Zut3-AuV@kI`rrLiF^-C}sHrcL$MsKTthFE3qI|SmS080MpVE^3!#S+^U#&Pg)iRNO-KIH<7caVYB5To=`WWjF-aS%ZqO z2wgrEQ8SoP)J*jZ)KtHP1Mw>A{3gXryLPCV9f*q83*mzkw>Qfr>k#+NEO=^kNlUV0~9|f9FeE5LCi6tb@8hD{PA+QSXJV zsMY=uqp(a#Go|fOFQj4E3zuOS-m>L+!(9KTUkqxd5>Ss~JbLwtTtucRzJ+=ZTt}^e z{H4rd@t`_X$J)>8MSV7`L*4LG)YN{1n$e=+X0?~I_C#HGI_ed_Je>U>KxPXCy1{nT z8}1Tn+x&rvSgN#Hj9%1g--5b9P=r~$VW^SyLUm|3s{U16j4MzxRHuyV@NLdXK$W*E z%l=ozm9pl9BK-A0Ulcs33v@vBxId~xsn+?Z#kvjq<37}9K}nB&_NZ-}j-&7`Ovli2 zuK%0V%hrotGTO&c<;|;eKCUG`hT3i!70i_GM|J3?jUS-4Yqg55|I@7nYO#$*ZQCiR z`nRngVngC9))JM>F7b9DqY+F;J(H_A6z^L5S2i=S5B0)0g}TA-s41^f#f&t@IvQ2J z4)qFt7uE4EP;bm1t)W%@*Y!Hh$mqq<12uxhs1x3>ZneIL`fxdpHLzec^9W*4+pZ1j z5hS3lw-o#0CDeKKs+;r1ptki&Y^nW!jf{F$A#b! zKI}~F)OG#;HEb8uBUp<1*gb+{F?T()$ezdX#6RIgOssFNdlj`PD?DYsFZ4&RUMw5P zXq(-|%{Z`uX%N)Vtcm_uo$@ryjmz-`mtQc6dnYbB;WBDe=*{Jeg zF%^e5W&dlHpKEGXd%0%DWYh~K2le4}!djrY>;Gl59qJkX3$-W@quw7kQ0)snZQhU_ zQSo?dHfnL+M$JU7Sg$E)6w9-qpd${zWa~$$_d)p<=0=@RYhpC&i^!{}_rhM(1+UmR zw52I;fGY22q^vTKsFA-t5_GC zwlS+a4b{P|sPZqZp>0hZhpP8JZwoeBFWZX3apuJni~7_`#TK{(HPshTui8hb-BPig z`Sgs(?!=R^J|07@nSl1@{Cub{tsU@L?(f8t(P}@4+P~2qj6+c0T$W%r+>Qe=u%p=x z@u(5JW4&rE)XDXK?|&K_Q{U4%2Q!F2LT%e7owX?0e~ZXy75{}V;Px)|h0)bG2DSg+ zLG9~XsP{nqZf5FNqRJoGxJ7qcZhe5dVZR<`2DYN&-*ANXf2W>iyX~+B_A(>vjq%jK ziP|NBy-i2D;UVIAsKwW_kD0NtIE8ovYSC5cYhG-FF_L%&s{K0Di|J$ZDsziW1cvrA z@9aA0A?{`4v8ei`*cNx7w$WeM3k&r(zYip!Ud^LW?}4RQ5OYv3tPfCY<#%hn0qlR5 zf&>!R`mf`8;*FHtC9NSf%f;tD4khV0PrcU5uuG4USK<0FeqD5*SU z(YA0V_xB$s`B{|{yHoi+)*!u3egZ}yZ%+SFhznmNe$B=zOeelT{0`|6X%l66X;+^7 zSQ6{aNhV#Qofcp=-X#5pG||fs9S3PJgLK4%{+|u0)81W0(tG?v;?i9Bm_6r5Tu3?V z&e=(-L|RSaExQsfEQXato9v|PZ{+zZ{>P7PS_>M-eJq~aX=?ltc z;9I0pv@gR&ZrGbprh7nBxeMcXD1W|LBEeLL#j@aK8{r>NkiXMTgV4K`tZ z%Kk+|eSjP%uN8clw9K~IMOkh-GK;t@`Hr{@pQVkC?}^hf$R8nX!|dqavDeW1$JxtC zY+3*DlvP0(c|Q33e+i#MJd^aYDmZ45bgmAMz34jf8C-bZ6W37vTw)*TIqD9Q20p$y zb>64>ae?#^4My0CLF5~g`V#+u*Kn?_d)c~!bG{~Nf7hq16Hdc3wAb-F_QX&+*FyEA zXKY0^W^h$;f0)6hkON6AAX!9cZI~!O8z401L}iF?MXTs z;RKWQ|J-iN6>K42j_;pNE;3h8$2o)l=h!D2mwKXH*#p!aM85PmzmblSMp4!aU$Sji z;LjuvW%^R9V=?)ElZul*A@;t?kNuojoWws)87lrm>Oe3Xci~wqOr8F6l}h@PcnC>H zH|jNr$HxLPf07PU-qaT6V)k^rMA^5bk7+-Qc-!Ok_Z@}JNuQ7kQ~8L>!KAjNFj6s6 zand5{hmyuUal?NR>llqM;vdv~M!p*PUu>P~KehQg)Ta@*!7Y0J4aig@?R%o}W}9#K zMA;bH^e27+pT<8)-*cgpc#kq2?~>nuzmqa4>xNxP@s#VRK$*U_ug4!rl^*Z^NIOMp z^d5~5V7@2HuGioi!yqh zc~sQ4g=+8y`Dr+h)SP^7Y)PA9woRxtj`AfW9V;p8Oq)~W&!UdWq*uwWva!Ayx3K5- zM*ULbUw=mk-Xxo!hVNlnEXCBHA+O_O;*zu(ZbD}-v5$O58;fP60LqJCG;Ke^8^mR~ z&adQaQI?EtNILG2no{5B@$>)OU(Ahk0u=)|p*m>##5Gu_%=op&%)OD zx*Br+Nqf$6jG{b{^p5H{rjn`?7qD#}-`|O)A|I(4X*x;AUo_OQh*X;NJMn8e*_IdM zW;*(iUgd(5D8E7eGt%GWPf#|N{F6r&%3G1nkh*LBms0zXhK+5jwN(5-(vipB;3wh_ zi09x!(o)igoHL*FB1y+{RueH1#KUQK05_AqwDmERl_BZ4to^^5%;ywjk}8l-q2Y7* z_~=S`4}u~1As)d{QYF$Rd(k`OFF!s3U#9#eTX)rZlk#84C(-sT(r(fqFFztEOvFSQ z%)lgEOA04HkGcd>B&j#?`;>>^yLgSXocuUa8`2PB9dFZiE0(5g18D)NDP_f(&96~M z7EYzyTa(Nl(s2SEeehk|r~oGpnYR%0#4QW@|#$=rw z%D%){%3?@)_56!as3V+$QKTo2VCvS`vO?rn+P0%9`-X-e5w9ixJo()RXQX??KjE9W zi}D)J>wT7Zv!fpQjtjdg@U47Y$x`hTt^wwU)1TihC3<0 zLK$8>yV&g!{Wy#XPS#8(`sz| z@I+tz{!!t{iCjK&L{f%lY(`?b(>l>#puBHT|4Rk``^L2fB;*NBP0REQOBy`1Ijp zQxa1%GqNL7wgv?zjf>Ar%sx7a>pbmrVgbx$?uaV(Itw_%w=*vPjb@G#MBI1m>Qpwz07+ePt}w}hLWxs^ItvM z>7}{zXo&IS;**l&ha@M)cq(ONC(ii5&F(sLyjyy7VtPhes)q^77&|0mXnN9+!~_o` zo0vA%S9xZo?DuB^*85*DJ(OU7?DdMK_ z$^P4AL}xc$cKgLeT`w2YaO|bDXfvW8 z-$fNE@uS!~{#}uwXXIb!+BpB!%1)B$1fBc;HM6VCe;a?Z_S!c8bGZ>(q(c%DQ$7DR zNp_VmQRc2{mRcp#^W=PIXD+GZR!JF~k?HYYCEhbGJ~=5t`#v+CsZC5_F?!+?64IID z?A2Mj-N^q{?4KuAVY#}5Nhza~S>magT0$8k(#E$UyfvSr%vOTdUbr|mX`~*`Ix#5e4UoR5>U5xL*M7i%ef7*|5|>$lyB0WaNpQ< z5!oMaKa@MGVjj0xLFdG(lT%OZKe6}Zyc7GfUw${A>nrwVk?c9U?}cWS2zEWbL&uBw zmK^VgQOalEJpP93uJVmJ9}&>Ab5GyFGsTv~x`A1L2f3xP_nrK)fUm{x#eG*cmCSzY zN^IW1-6yti*=yHt1i1^dRt37@*&p8CoYzVdTyDVS@qm}d9rRca!X}>-q?-yZTT=zneeRBP2Ad9cN)8)kBk1Pi(b;$EtJ*0 zv0Kh};$%=xkr;QQn^mTz+tRo2jS^XFnz=)A0-Cz3U0=cnp}tNRVshSW=Js&2_B3~6 zvJSRzOJt2}>9)!`66uEcUfvLzQ}Su|eK%)Ctox$tt9rDpnhef*t|jfxw{YX0$oh{bUmw&EPuurzU{x{k95l15WGspRmd^irq^;i<~#hDvvj5@wK>IT}xG5#9*4kXfJqHQ=4b%FO$`xjsa z+=d#u{iu<;gqkzIpeEgO)U(df+)UP%n3p&Kb>V5K^Uc91+~B36Av%YVn1*VYzJ*x@ zp{NTMKy|1hYQ!3#Mr0^z|9hy_u^4s1?Wjk39z!tA?tg+=h_k(JZonHwMTwHA6=c7h?2jP}XpI}1g#2h#q z)zMX`5!{Lzq3=*5cfBLypPNd?PQG`HQy4>u2V*WAkGk+e)CpIiUPwDpcd!>VyHBEq z{3_BHvTi_i_ynfIA8dRTH4?W`&;A8!qzZVunmenEy0bX+EkD!?DISAy5b91xq7Hly zH7Ay$I=aXD3+5*d=w?3+t@TkIi$@(l1U16m_ibebb|VyjdPYT1>pBkg3_GGa zItZ128}(+KfO;e|QTdNC5Z9nC^d%O+!#2K&JOZ!d_At*V7itz4L)~#H8&|S%b<9V; zKI#HJP!~)<4~{`UT#V|_GSnTfM|C_E)$wDf<4j#(y-}-e5|+ed4CMOGJ}PDKTh#3T3wL40 zUSI0ZGL`!O1?zs2}# zXtMS(&!h|n5!bNRM-6o|yT3PT_71};I30C?{WulRU=i%h^Gb&kF$&+q^tc`)aWiUe zT(>TTnN42s3H@U!bC8bloJJzcDj$aDtg6;iySh4|RdY=z9^NjvIu!(_5nS))c_}TL1m1=mb+yL-;9Xz%Nl9*^VK27_;C7REN?~kLGt& zyN8$sU6zVEkQH^_lGetk*&mO3B$FlAch*qRtUZbv+6U;t&>_Yc)Sb0L-Ekk(1-+=r zIuo^O4%q$Qp)PbCv!ee{GxXu8Nm>+jgQd_LN~H=FJ>w>*J7|ME8z&ws;7}}yt8IJ+ zH6p>o%$&%HI!=e?MBU*G48xDC>ruz=wjT6S2`6zJJ@_jY!oYV- z!;+{Il}8P2EzE|^Q5}C1b-`h%J0F9Zd=pWVZ?Sbds{IAjNZ&+t-20SDX)0Mqnjx=^ zx?msFiH4(kJPUP#`KZaY8g=1AsCFkYC*DGJ#4piYAU*1Q1+fB_MxCc8($4D)r=kmt zMy=P0s8z7Ux)XB|Uqat9Lyed_$~>xEs1rtDb}VD_^-&`hi~20+fNIwTHMtXfG0%TA zl^i5ypiaC3HQBbI*7*;pJNgM{U>d63@X?M#)tQddFmQ|+i8-h{UXQwwR2!eO`+r7t zTgE{}>D4YSc&^LS6VbEQz_tnGtD#(ZtQLEGD9s^E%Xp zHe((JA5>Iy&9vzrkSQ>!@dW2mR2WrEnR8P?PUEHpSPbo1veEdf&`PI_h-}P|+;@6V;>A ztT7E;0;$6hp0IcFw;De{HSMM6}9eLquTXE&6&3`BhE#&TY{OmzO#*r zCdon6tMv!e9shxuF=UpRocT~EE`^a;13lOkHF93miC3YP-!~YIX{h$uKQJAtgn`73 zF_h~&EvTqx-BEWu02|{Rtd5t^AH!#x5y*>~h@(&!E{j?v?NB2!5OqV7F$x!=ZfG|a zz$>U5dx5_1{~70)*_#V>U?tRvnxf`FPYl5+s7Eyqi{mj&hfgpI{)K9vVJ_bxuoS9; z6R{|+LygdBEP;3CGX61CawVCb##$4sb5R}Hf*Qi(s1w~oja04=nOIm8$Ke=^!xyL# zY&wrWPU45CkvNYP@h|j^+8>o`ZSAF=nHkIm5jf|`W>i_9bm#cIT5aU5svkGiAZ zmoXnOdb#y~ z;FEQZQe(N~CfF_2e5G28 zy6}ChkI(USth3d82FyhrzZFC9U-V$eHa@7ZjF*ZMeNhdk+4vM{h#z28%)Z@ps5$DH z&cfQ5iZ$@5%~#xERzX*cCZC9vaTRJre?-lxbj-+Df1ZC`Dq$pMer@hx8LFqhqVkVW z2L^q^ui6-mb#RgON32fl*=zEhu`%%y8>d-|?=vr){-_Z;kKBmYDY~EMOyYIyfqPIF zh&*88p4J0cmweHKCg0C`44aZKeaIX)3e};V*btwh9%Ze=CiY@m;)7UJ>p%YybHWB# zlO3zEBmRp0u=cn7y$07??_(R{%16xwXJRbz39OHKj+qX0!)nAIqwkJU=PCM~aUfRY z`c4X!lK2~z!W_rV(ATrJ#Y*J+Vq;u}I`MDV4GWzx?I&Rg;$-VyY)X8`TJ@yq$Ykqz z^!@%{^psgHRZtz6iA8Y-*2ZgC7z>>?#$qV(V2r@=s3Bj5dPJ8|Ltfwv-}A5=s$)-3 zBNTbozPQdZ{zXU(BasmoVqRQ@QMea%q8nHRi<~pFy&LL9vj{c2w_^)@fEuZ~=gp%` z#3sb4s5#|cFgIEc6@PSr@$XFK5{Wphe9^o@C!^vcs0-x$-mHQa7(zT8)xn9@)!2&o zC~7%ITr!WS6J{cwkI}f&#wStdx#Fdwq5U1JVb~9*VVrf8b+z@Z)xB)mm9}<54gFLb zA4LuMQ{015SIqZ_Yp6N#7;~Vv&X49}vK?k1G2H64`Dy4OzZxU(FsfY|YSKQiMqD*- z(pYOE7GVDxRQto$GpG^y5%X&O-=@-%M9@!WNIRg%ah!KiceDik@Mp}7*HJxxfbkgo zvl+?+j3j;+tKw43iQl7^-F+;Cm47jB(9XD4>whv8&Gs_a%wH(lVRhme*2Ac|;D6nG z(`kij|2CGz#aJAVV|{#zy2F~k^3ja37=s&-dv&g1Anv=tqu~0^w^UdePI#Jm6t^&# zIOwLCoS_&-JP6OkTUhBgGlEMnl6VgWYRt3C7$pk7_h(w$DM`$TBR1 zDR&ruB`(^;Z5&4&de=;zIe3V81IA(EAEu*+up#kD%!WDdnYmIDnN&^!>e)|2&6O3X z_rq2!jluU#M=IZE{F{-8CGim^V<#;8z@3gPTw%K4%Smc2q;X0efOiT!NMHGHNKZ|82gxlt(S6p{Nsn zV)Nf&YvN4L%^mhYjl^2aiN~zhu?+EZpFIEQ7iO|`#t?Rlu}(*wV4;n7p`Q6M>qBdv ze@woPwU6}!>lW)3tN*{IeMv0F^_^B!>fmTp2X^5&JZ9rK$Mp?iXRJhiENTQcqwXXP z!!W1o`aWbzSleMK@{_P4ZbXg5O&o}hpX+#gVFH!*cm{PqbUN4f`Q8!r9_WwxafJ0l zyMH4_k>7{aF%5NrD1X=YOKo*5OZ+-&wvWeHoQ0ZO-}}2>-<|(ULbI|?fa`nbzmIBg z42$9e48}Zxu5WcjS!-LnU>^35LUni^s>92$H||Dtpm31uyou$k^Mbst!#?LJ2@T=D z!Dgt#(wm{KfSt(qN1fmhs@+-CNTp!`%#p$MJ-Ujhj?_mz(r(t}sE%AiohLS<>zmZ= zyi_!)M%ct+8}CFlyoOov9%>}~G8s!)TUke;+O0sHZxc4eAFwGF%xpTEfF+4%VLtS3 zr&5l}1=RA%5aRlNW$K2?kHq4*9(CvEPzT<`Y#5Nm^?l>Xje2BlF*}aIP@IG6&pkQ%!0Y4;H5aUb8qzkXRWK1X%ja76qfYz;b701-uJ4aek*Et4#=O`J^}^|c@i+}N z3GbmMd1RQmkx}UT@Bd~}na7Srs5>r~&2{+5cj8g`CfQB?Dym~){1UGbiA2RsQ61}u zy6_(Q$h$~7wLVV=BZXosWT(bKGVQFquX zpIPs3p-wy)QORf1UU=iMp7En)M|j%mJ0H z4XtgkCi{C~G_F7m@d=E;OQ<1!hB{v<{?5`42cwQVj5;pRW0q%m59?nI-zK4+ZN+N% zGuFU-k!DhLz}M6c`{E|lvWh5ZCRIOFybrr#mMGWvah!l!6`L>)FCm}6PO(C+a}o=9 z3%kC*+1$ecBq|g!E=L^@Qq=W*mFkQd@>Qq~Uck38teAP>OhwI|mG};Z7k7Psn4E?6 zh=WU*N7M}UF+Ty-Vee@wS|$-C&5lW!gZM0#z+32#Iig)>EN{v@m`c2$l(A)LGxX`p zxXy6$#qcd$Yz-)D@&hq}{4c0U+cL(d*I7g*7l|~~hlo?oSOcpNjzm484X6*BN2v9l ztGs!W)k00e{-{Yf*2bIALwpE3;!SJ43TF8(LEqp14pY&K<9F1@X>diej;o+f*wMzb zts8Crtc^2NGVP;Lv%EQau#1hyqUOX*T#CQrNSslbRpq4;P{k~-JXn&r40gs&SPr*h z9lVX|V5zDm-vt%Vw(-}fH|RsuXGLT+b6gYDh)qXcxz0w^zyz6YeB+MhwK`^VP2 zjm)QJ9V|$`D|&Fe*Ctlj1_w~H`4?=Bk1-Hq8=E&*ON<~MibRYio;s6pflTZ;FnxTS4mMD8Ic-U=e#DpPs%gfS*B>$;4N10_7xaj@fpE z&O}>J#PXB{lqBt78_aPxu_n2W%s=0+#M<$xy@2Xpvhy}}M{Sp}4tAsb^GZAIn?q?! z?ibs(5%DERXwaH6p7IN& z9l2&WgZ68vYvMMh{6KCKB`@V8%J1y&fv4DafqFmcGjS3A@8(^}j)m-4i?43e|0iBa zn}?Lcl-*7d#Z4rLDq{)L+;&8c_5YB-6aZHsj&9;U=`{4I(c*u%jy@#Xf2dJMS+lO8Eb_8#c%1if`l9;rpPOZ(E+>*jtpNl&KVL z-i7=)PQ$yDx9x%2!7nz>W*TL&xvluCJ*YPJRwKJ*A=YRA%dP(_=Q&6{yFKnl>dR@g zA2X5*)${+F%4yr+IXeg0v*?pg-wU*bbAZ0TO~s{HhV~aJ^{MMiN>l2i*{3(*UP>Fv z0piuDtr+z*+Pu0=BUf1KUzSmZM&P`cC9KhjaITPOy&nHsvC1^l7QB zC+#j^WAYCuZ&9vO-k`kP#!=})xkTHXy8dt~+S=gj53h;vTd7-dLK$%N-f$RplDl6Jc>5&=>4xP7r_(C zm(-uzgB$wxm>=2TQ_5tUn}X|Ucht5mWAk}9@dQe1iZ*@W)R)a=#Gm6fJVZHWkJJ2f zJ|yuiB^yQG-@Zcq-*A33DvRgv-F%I=lu@7on zY54EwJZg{G*M;vNzHJ#lJLy2SN#r7NJ*7KkKl! z{FU>pp%k(EH&g$aa@xjQY2!Uhke|wA$~t!H>(k4vjv7<+rPRy*{rL3dPW;!_OVZ}$ z_6>EKIwkpWRTaB^M!u76cZB?5@+UR^i(j^|?zRVcXq=VY+cwr0&wnTxDf-gdgz_!r z)s3%<&T4y+DzEIg#yJ+-JimW9Z`t|^Kc4@a1Y;?|uNciC+cktr?r7Gn! zdyojFVIVneeGR^!KapESIbrwRquu{*7s#!$`60BcM!h4A+EN}<{wB^y`CiXoTQeHH zkB3Me^JUDBlf++8UT&LcH^5#vkz@zz>FoY5sQ*cQ!7J^XkSjs_nmr~NKjgS`xQkLq z*AK7<3}webk~b;Z+F@>6pG})I%0l;0=^X*0&|4F+y|UubMzVNptE_PtBd z_PyO#oO+U$ReN@{CdiEwC`E0<(Q3^$f;b)Rex}T&UYFb`>NzOODQzgRl&{HuL;0Bc z1KKsAR3g@vLaqbxe99E+-B6o1KR;$rMv&ANX6=VPiObN?gBvNEDcZ6aeE-IzI_>fj zU#HZ!$L_;Al%L3*w-+i%{gmAwPW^4l7(M@RlG$nW9f?bn%9MSSM~c}u9V<|@m7*lm zc8@)2J={g^ymqoxv={Kz`O%ShCvA#Qni4m}3KYGe-ovZ<{4Y%WH$__pl6ocgr@>T{ z`tRpZ^0mmnNoEn{CUFK_P3}Bpg>Csh`QNGkMy?h0Q8s^{xGM3hTNOS3Kr-2F_Fo#b zq`XPK9z|OkB@?;Qlws8Gk$;`~UaWyTD9tG~*!L9<#(|Va_W1GE&)IjIGLQH@oAd6b z;U|=?l#1+Jhp%q$(r_gCF_a&ue~Ito0vctbejg`N3X;1|+=jB#p5Qw5YSiCh-!w{T z>Rs>!`Lozc&wn(PZ%Nd^Be@@evrpSZ>PslvR#A>q zI#C9adw}mys!)%n%(ur3(epn;;tV@`knBq-M*R@w<<^p1ecEV?um^sI4ag0kT%p8J zx{;e@nmHrz19D?=1AdH!a0kx7x9|&!Z$`_`Bu`QFJ`6^GPBxa3o|2WKZHbd|yl!Mj zN^r{;Zc_9c(^Gc8(LH@qg)YUC61!YX>D{$+V9J?ZiRn_>_el&$xiD}^x|A71K2M)g zXLM$NzY*~%?|RqzXB{5z={YE2cznWe&w#!?;}eFZbf0uGFs1YKZ``DmS&^5^j7CH0+OBkA<~7fE-MBa_N}l##~OJ}TlSom&u^ zw0Obsq*)7<+P=`^CKX@wZ|*)lM#Ou13>X^UqgSHm%>jdY_K)x78Q!Pwu#|g?W89Ru zrJLQPBFhIQom$>9sFEk9YPAaGl8Ud0%wX%)DpXBsy<&RdmGw=2$I@yCrR4tOr}Qb|&(;TRPIK>urQXZt<_XT4eDbT4 zdnl@$_FdWcrR>qdVaAx6&72vMd+9%nq(_S zX+a@(mMAS0$`+wgBwNz+`JU_2-~HV8|M|V{%lq1X*M9wG($jN(Q^D6hE9m<^vfzA& zr&oyM#Ncxk94D=yEDU!VJb90HQdpr2cQ~ALk-A_8qj1^y_ZoPuEk=w z8{K%w=3hb0xOh*qQdLp)+FE;JA^LX)5lP3P%D@9Q{S|5{+xBvtw=o;9W84Fd(-LDJ zbR2fU8H}ZI8P>*kuri*)$I-?9J&)-)9&e$xWK18{zbcV+MC#yYs1e_`M)ox$uZf}L zcSfy9Pt-sMqW1DJNaW&PFADVuQ~i;}*C33wCL zaE*SB!%RqoIF>xCx$9j6sO zj2u{J0hY$or~zI_b#%vCa)3$4;ym(`FdKKF2Ht3(nc+~>VH<&J$A_BGRMZyDREC!H z4b+lsMs@VQt*{R@x-IjuB5pzr;2^5wudy2X z{ve{Iiyq`SRWJcnu_x-(_d|6!95t}97>zTqIIch~>6@q(`wmtA3TgmF2AcuYK(*Tz zbtbwX?faZTL{xDks)J`yhh@G^FTrx8*P{ly8&&@Z>VtC?RloD2=FmNWN)NX_ff}e6 z>)|Af#<#G7?*D!w>fjt|N$vy-I6#ka@JQc>ZXAwrI0dy*Yf(#k02|;1TOKpSbkH7k z2p>hYI|<9AR2Xu z>Y%;@_o23;E9x+&V0C;EwdY$<_0FRPa22(3F)6IS4nzGEGt=&<^bpiijztaR1=QhN zje7At)CwI$or$xk_ll2joNgG08sI3@z$c^jelBVtYf$aJ?IRLOWIw9nA=I@yf!dl& zSOJTtns0kN>X!7usyNK%KZ_dBo2Zre1ht}PPy;J4($tSZO`tWZp06Jfb(D?T>)AHF z-1-q}#NT5GUbN{;s1><|Rj_!PS+OM4%sQba_6VxpFbu<7EP@j;c>kvn(Ne#JIz$^# zGdpO#j2d9+$IUftVC{<Z1A!6R5e_dkt@mLwfD z;-^ttF%4C5J{HC0s6Ab8%eUL|Pq7gB-=YR^5;c*VHXWUAwx$7U>$+k=9E3&a-+9bt zq$-1SI_ehWVR3vBHK13~jq9-h9z+f75EjGZsEM3MP2?{ujv*Ol0O6>!6^|NV6ZGlO z46qp)$Z9*!qt3#0)Zr3*oCJAzuN<5(TfqGnull=Mt{08b4gy!;@ z#Y(7-2HL;Bgp1|4s`cT9O{t!Kl3(i5kcl)C{Mi zX0QO&!77{Hih6%9*1;pFTT<{TvtnVW6|RVSuO4c`ozbV6B@>Cpr?3LfL*;L@>D}0k z^hwlA62_SZx}uhH1nP`rWAHYhCNKjv@CB#=y^h+V^{9HA$Fcvau#*f8;0x5qezt~< zH@6}VwKbirX{giu9BM!TbmJlG71RWxCYTx5LUq^%n_@52ZJIiP_1BWjCPUY673#k4 zMlJmj)Tup>n&Bmze-pLWMJJjWmPKt%95%v+n1CZ~dLC*;_M*h?``E0?Ds1aU6 zEm1)RrgSmXA&W+JSRXZz`%o*_1=Zj~7>^#CKLd4*7ot|`1JuM$V@14*dfyj5$*h1I z)p1i)hxelfFuD|z>@m; z{}2&u3g=KGyMY?eUl@jwEJHDjL7kDBsHNe72yHG3mE7rklSP!c`Z@wG-P=|F0>TLM3h^V8PHe()Y$v0wA{1<8o51|Hf8g(cy zq4v1YY_oDPsM}E+bv8Pq2GSkXejhA?kDw-+g1zY9d7Ma3GTuXtsPG)K0##8Jo1!{y zg_>~}jKfi=Em(m1ZhVSbp}(;jR-SA2xIOBNHv&~Y8DnudR?_|7K|~FnKs8k81yi9p zYDpi$B%FeY7_gqg#-vNVXs%O7tV{Yad>3cq671|Z-MI`z92vd>uQWwTXjs1?gYorRTHA74ie z_$X?^5sO&=21I%ps-A`4uDZI+n(;#bzmEu_EavSONQBNz6diACKWU z8)NWQjKZzf&lj`)I$S@Hp$2}#;#iE0Q%B`dFC?OttSy$np{Ry4Q62hF*K#(x@lDj3 zI)rNX2I@Nz^@`d1=BWB3d_*+T>8R`SGOFQasDW)lE!B3^%G^OWR%64pMIEpuK99OB zdr>QP5H*p*sDYe8wO4ehxwd7o9BE%2BARIj)U_Fe8u0|wmudmV;wG$&hfrtXGM2$2 z%gll^mbH7XKlLT8)ic7FoFEXaV)-szVbxE*P1=8 zg{?`q!AP8hI-Gv%Dx1FrwWs?~x8nqAi+;D|A?wV0Wl@K@rcF0TZ9#X`Ey`NQ`o|NQ zKt@4ag~jm=EQ(vO2<}83y8Wm_cp7!@3#{j_VO^{W&LX{UgW1Xf8_j9YM6J+M*bJB9 zm;!u&upa3?n^^zuM4s7XX8sv!W~Bn=8dXOvZ5^BLk5Qx_MGbHiYGC70E9ST9*HA0B z4GZIEHvb4#C4C8_Fv7Rl%&-Qk<0RDeX^*wggSv*ZP%~eJI_0}jD{vCELbtILhQ4j` z%b=FNKE_}>)BuN|+RZ_=>sw5uG?8~uOSK=>;1$%D?N1EFqVMo6z;IN04GzPNsB0Fv zg})!h4)_$li`}r{yXJOGM9uh9)Rvz_4ztfG@}Bu!FCMp2uo?NEGwOYFD-u31_D1d5 z7}PCz-TDb?hUZWN3!#zX7>1fiSuBK=t#PR9o*0z%?%SQ~p`P5O7n66uJ`QCo2yo8Vul7aDCh zOV$JXlFr3JxChH()ep@Ko1>Pv4Mt->o6bbOVa{ZH7UMrM--q?+(-NH_q8a~;VHmT+ z7>A8X*Fzny5jKA`YG9MF1};FY;C8HxpWF0rsP+o%H21zZ>WtMxO?co=_CJBh5;C+T zd$AZ^MI91nm-*YVnplzK2vq)L)K3%y3FyWbadQFA4C+vh z++!w?hpM;4M??jiun2yL9dHkp#}a#uaTr6oHEP8kL3KDCbqH5j4`Dmff1_5a-9EDt zk7GC0$CmgdRz+W_{ieYN*2mCI!AwlTwWzak)LQgY(_sr#y^*Lroq;v*O>BgRu{IVv zV3xWGs^e~`j;CS+-TyU2G~(k}4J#isw#WNOr=n)E3X|{v*1_B8##*15j=LcZI@#70 zsP+z9Z=v3c{oGv7?if!0&R`;;6g+_iaTKb<(Wnu>f;I6d*20iOrr|`?z3z?Lx>PKQ z**4#2oo~z6qGrC?dIa6{@7yBN87qEaPXBP!{m;U1d<_$D3r6A@bmKMDH7xg~u`cRR zb;d+|1a(GcqPAugYDM;AEBqCG8gZSk%qeb(x;8ygpUfvvhcE}#@hsFWcm=EDcGQxd z!MYg!wb{xxsCv(!uH6djG1P#g4x3MS!eQ259d;u_9gRfI^l8*-UyoX{eW(t9LDi2u zV$$_c<^8b)K8dAqDyqFj*3GEHcmUPz4b;k%`G)l`Or+j7=6AnlsJ$F)9gY#C(@`By z#Im^98nEuO<)_e1`QKLew`S$qqTcUk%|Q)du8+tBB5Sc2);elVabqk+dL-&lK8a;; zf=&BTXJY}X-Wt>jyoa&)iOoNUYWEuIkQX>+R;Gy6SA~dX)B?+4Z`6#_P%n%_tpr@}EKta2=}tR@7}cj4`_Zw~5pvBl?7yX*bl1 zeNcyKip^h$I&8~uJARD1CC{8RAF7$Sf%G2K3XM5s%BN!z={XpN+fiGx2ZMkA_Z1QC z-C0}VckD{~FKmpRPn#{7fV!@8P#wI2n%PFw(tn6r;;-=?{2O(4-Z^95{{S`M1E`68 zg}wwL7l>5GGC!Dad1I_d`VrI_coN&;MAY8xK;8QbSOv?TH4|utIxC$}x2P9tYX@4h zP+L0<)!y>6tiNV*mJEI%IoGfW?l@IR08F7TuI1Q$XzTo>c885YMOsHIIuwKp2u z;55{p??JtH8WZs+?1$0kedf?)o~IKs{1}Qap_Y0vR>HMd1NWj%^{=Rgi(D{PMb&SG zs^1;eQ5tF`^HEzAKz&K~qPF(9kBF8e@}gP7L~Bb7BfqP)FV-ggC~C{5qn3U%y74fo zqw81=qkb|r#j2zq#@09yb=J0{2ITvch&norwee@v$jkj~K9wDsk*)PPt8Kwr)FJ#As)KW=8U2Y-SniT}F#&6l z9)ilBf!dlSn25VD0WYK4sr0Mang*!b(iTf#@1X4e5F%HsNYOF(b^gHp2wPJoq>_`?<^q_gKwfbJb=0$KcEH_f7vW`5^9S&p$^d~ zjKC>a1YbgR^r|(0T7gec?H)(H_dDK?g|4vvO^I|QqSH75wWk48gZohf_zHDcj$ui> zj1lPkZuUMBwFL>N4trx!9D%Ag3X9=0SRd!0+S~Cv`(KyH5i*)%;j8ASS6kE`4@Fg+ zi8}2|u^{e59lB3Y4WC5q>CZO*7HR@ff0zNpU>(v)*cKl~wX@_8*8c$_%gK;eFo5l@ znJ?Kj)Y9ESU86GB%?GL(s(~z2$GNBhO~x{~2(?mgp}q$np;qL3>jl)7U-j8Y#0~SS zQW9#(N1z(W!16dAHIVr>y$)4xHx|ZEQ5}C}y=ZlAnrl}U%Trz-t7A88g}y8z4T!8m z?bQj?OfRFp3#D(FhGS7n*a(ZG2TNn7Eq?~J;I=I zC~A$hHoyv0?1Wkgk4Yq>(EOOfnumZ;G=YIl` zSPJ^04qc9|uoyLf^{6G@gVFdoYUwZH6ugX@@#w!e2RIFte;Xt5={u(WJXAl6Z2Eny ztoy%%NI5)Zy=f~%{B7=gd8|lzd(;vR!8r7y4(-d>3ol{^Z0@*%PQ(XE??P>9X_qTF zz^2%j^g8sZW2b;CxR>QoGfPCxs1a)EJEH3KL#;$Q>W56OEni?=jq2zfY>MAv3ycVH zIc=~9>bgIV1#w%5%NP9c>?ETd88=WJwk+rh&a@kb>5fK3DJqGMEhQ)d(zwV^N1}1`b3&K7>D^KEWLdxq@4e zg__Arr~xd(cwB?JEr+lX-a)hz{LqTW|=~z-5~sUBngqhtT$@ zPp1zX<6EeDKcbejRG2IHH=M0eOaCM`!8cL$e?)zVDit+b(h|3k_Kha8m`I~y<_sJ{ zHGB^1VaejI;IB%pt@BVFT)^g7rG)ADVbl!gp=S0W_Qdnp8Jm=J1^>QqBK9GD3Lm9^ zr%@@>;fokc!TYF@erxluqZ+6j?h5|Be=4ecn@t}>ZCU*YSMWEXw&)@~49{XR_Qr0J z#>J?uzJ$$m|6Nh8;D@3G>TukTTGC|H4~u!&9S@^sUbVDwu=PdMq1%W0UK~N)f-BZC zWn4}b(#=rUb}$CN3s`~voq3AjM$`)Iv*`=gf@RHVu8jK4rWxv|UNX8d8+9vQux>zo zC-$R0(I>DRUPT?s;^oXCY>qzd^&p$^v~?M_Cx3@chn6=l)WA^kJEE4nyG=ig{YiUJ zXJ!i~;(1KQveB;K2WlMZ`?Ak^D4P4Pk$yvlmi}i{!;uwS!B1^f)XZ9;W-!R+kFw6P zu0qxO(58=Duc6)xuV_}HCTi*LL#_0K6}kUf(kwFc!B~Xaip{8%`3!ZhucNL}XpAfP z+gqhnjFUYQj@|L|PJg1FPdX)J%%S8f&5k z)DiV%9E$oPW?B8H+pz_;D?Xt6U#7aLn1VVyer$*z z;PK2T4ox7(E)p?ivyU$tTvna1>GxVAM%a;3| zBypQU%~;O^#2+KD&CW%_4&r*s5cC5`Pe*2O_hB2Ig48)j#!WnK>({cLx4wYws5_8) z^OZ*%U+Dk-I*IuAguBoE6zV4;=PCH;7m@Z<)(0ln<`u*bY{M6EAL;R?y3?1mhxj-` zSMrkyq2yJdjYNEb{3pmWkM0If846ods2`bnrV#&$N>^;fljI#F?*c*J0Ufjkl_p)aQ&=?0`L5FWPq$H|{$<0~jXpvpYg$>T%lq!5oLUPWnB&*!wE zwK{6iKI5r4&lK{Dr^(!l*NGOz0AU*O%C_uTYbxp!T#NVh*Zo{uV)>ci%W$c_oQPR61c_-9x;OEz^%=eiaD*$Al^_OxfKhll%_| z%Wd9m;!}ywA^b{Q&q&-z`ca#HgS@$f$@cs?4H?;XD$FK4LO}^EO`d*WEFfGXj3l%m ze}rwMu5}x>wKH2u{1El-KGUdwmc$?Azeo6+w0?H%C9Y?r_P-H{xdiHFV^>?2b z8vc^9OXOz|p0qFCq=J4*{zdrNRt~j;;1_4-F~Uc-ZUpb`qt5rZpP*+l7NUMhAAcMn zkx%B|goE~_v*a}+bg+%;r8v^}KDSBKAa9M$Uw|PtUX1tFQ2r3@^|mk7wPjr?^ON@l z!B^N8ibx7(*#US-&n7+*d-39Xs=yNW31p+0Iqe zn(!_mGWg%$5NW|nlW+)?9zs3ch~MDFZnlFqt1* zh4(+z00_IuJ5SyUtVC!Q!v6n8!5YH%gm~N85-PPOz8v+uMCAm^f5(2LU&WiG4->yY zC`-6X*hQY6o`eM3))?}J1#`{63s&?7?++vY7v2BoNaT>2OGs2HPkHhh(ZCY?)?@|$ zOykerd8Z8ddcGiDlXw$sK)Mjt<-L03?F!c5?*}m4*8h|EQ`FgkpOWXBPh=4p-w^IT z9Vl=Uo*|58R7iD_Z5!MD{{Q73|vM4`H_>KIdsHc=I zyQSYvH;~99yiDOMgyO_KxXf0XYc;Q$KQ}^@%`bp!ZNvB0Ibst7a0}(H;XoW=-81Z%l zJsk-P$eTgE_Nb=?RwX@~czxd0v)q=QAzzR0RWkOPxU&U&Q?LiK2n~2izhb{*D-(4F z*?4z6!Mh8|%O+k(h4y)!{9nm?nNZty%->V|^Q>iGN1k&jjYr7tU6^JCtptFB77u z@Bm>I)%KBg2Vdat1BvGnMv&hb>tRm@GnMk|gzrc{O8A;^h;%nXHt{g()Fl2c@2tk) zqfYN5V*(iwR5(WZ0BINTvBWD9N|TPkd!ID&3iHmhWUeOMA@Daj!RMS+XKS~~au$=f zjd;9GC*u(EeDCl_Dxn>fpFuyNGlijq`-mSUzcYgwM7jvJBAh0^gEBomC=VkHC7nc> zo>QcI*!U~NKO^ra+#D?BDiZ%ed0PKrB=o#N0~c(gACsO*h#(ze^Hirc@kxZ{O4w&2 z=~0Acq`$)IwD&CjNcsUnebTXnrwQ@o>lsYECn321A&j(nFrf_doPr;z+=UPz-k9=7 zh!?|1)N|Q-1fM26MA>@sUnDG6g?pYj%BK@r6H>{4- z#9%%o{sZB2&A&Sp^>iiUemm0F$orO1p8S5~e?t5ip%mqp$!ktr&tl5-G$H>v6aDAU zRn$2|d0%pN*?KB`k$74A{(HKk-T!%o--0Q~BecBdg-W(^5u100`nL!rZGN8KxAB40 z`H|3=^clicLNx|gk+7Ehl2pBdUGWcs?*}SWrZ5bf60VRrfeLzd67CDe_=SVAIfUm3 zZtDL=oebiBTeq04C&FyJEM@Bm(@7^|b?SHL-Ss$`&_nxQ%{EY+N`)zGNO~vXDbh=* zr2oe>ZsJD?JxMRZB;1aAa;UqGbT(l$@y*zjcWMzj6TeEHp3#JK;!ANH)}yShezp12 zR%nmQC`{xD0>eq^9@}4@szy zoZFjk%+ZW6 zF)K5DtkX3Z_qs=VMyI%krKDuKlheGOVd*K!NrC;3Zw?I^ostt6pB)H^%1O!1%gId4 z&2oEkQu8uWGIPCwgxsjYfjZ+Z6$nim?a58?KQOUeAZg;wkh+=4!?K=q`g(%iGuXa# zLpFT{7sH#9o12!I>J8MIJhfo>$gG@P2GGAx53hSnTJA{y`l&Ty(o-^r^GaIKds|`( z{?Dey6!2sO&P+X6xMoHQbIj3F2HQ?@`e{+!n!9JTCoNr*YT>To4XmI2t1GZ$Zn*-5 zvQu)rS(*NN-ZK6Lb87^?c(GYXnPjt^$tm8n)J(S>p#RSNUrMHD4S(YQ4Zwf?r7G3` zV}AWJz5jcpfzbTrAqk%JoD@&;Shv@_!ty%(*)cb}_)n2}Gugl7dNA8o z4IF>DrYqVuJxl{kNoI(i+~Cnj^50n$A4W^5IaztxE&L@HR}Iu(9OtS!%#)c(#SuAK z8O$&HYfJN+1TVqA ztx(=D@9>$n)l!tK@Ny_N1pJ>obt+VO>))ID&3Z za&is}9GI~DeOKlG$PTX1*sQ!9GnfV|b6a}ps;|8yHERWrL|R66ItM#5S7*pOGHXny ztelMhQs!T^vQOb=?)uGJG_3Exv$9H28*kB|xxdz`86geoHTA!}s*0;g;K-`0q2+4m zz`1v=@p1$*hUKKN8*FlR;MCd|i@VzUCmks7|8{@bK+e0T3ncbpRH>ffX}bdM?3}cW zT}yM)JlZ{XI>*3i@8O%`$+@fF^H!8U^MmDK?b5SG<)u9C$qAI&`fW&|Ouj5$PvF*v zRYIzG^VCjSjypX*&ztATN#mXd8%)i~%O;)_Xt}FPsQ>d{%KD$#lN8%AoywV>9JhxC zy}2H(i^sW}>wk04R#%Vw6XjiT?i%cXCui5v;kk5HE6HiEuX0X?8GGNJeFH1@CKMXN zh&jAWfXkSXHe6k605#j@W@XgUJpOBGpT2$F^^@xT-xV5AArSd_nyXTWG%t5e7l!+o zm+kb(O3nIbj{c;8J22-^pkVFb2btCD8_#)nr)7@x3`1Omr4vv(~`P0RGpJzX~NbHcxJF zrFX8a;obRx+oNx@|LTyC(jC3S^Ky2rW?F0rKMmNFVgAe4qr=;d-nHJGi{L?Pm(Rb! zE?3yDm_O`Bqd?M)+F|}aN6X|-4t2$E8R&A=Dp06x@R0bkPn6lRImA`AfPd%71pmm7 zBmED29G%}P)Kz`UrBK&fAzM%v?WWBa9L=h0EThwG|=1W%)vB}hrlvy%)~ z+_IvmE4^TTol>p}=8saPTun{vqmr)h{9j7Ciuk|$zVw#CrCc>#`TR@VY7zZ2`JUyb zq&?|QGp8-TWGPo{{?Q0mr7drS^DmtJM-SAm{wJkfb@a!1y9)V9rCeqG zo9>j}!dP-$e%}v`wp1(U+TaSg=ZyGge^)5~PHjYOA80%V)c^nh delta 17882 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 MHoDTkFX~GFADufvZ2$lO diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 417607800f..585fa3de5b 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -1,25 +1,25 @@ # Translation of StatusNet to Catalan # +# Author@translatewiki.net: Toniher # -- msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-16 19:42+0000\n" -"PO-Revision-Date: 2009-11-16 19:42:52+0000\n" +"POT-Creation-Date: 2009-11-18 19:31+0000\n" +"PO-Revision-Date: 2009-11-18 19:31:29+0000\n" "Language-Team: Catalan\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\n" +"X-Generator: MediaWiki 1.16alpha(r59207); Translate extension (2009-11-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: out-statusnet\n" #: 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." +msgstr "No existeix la pàgina." #: actions/all.php:74 actions/allrss.php:68 #: actions/apiaccountupdatedeliverydevice.php:113 @@ -42,7 +42,7 @@ msgstr "No existeix aquesta etiqueta." #: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 #: lib/command.php:364 lib/command.php:411 lib/command.php:466 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 +#: lib/subs.php:34 lib/subs.php:116 msgid "No such user." msgstr "No existeix aquest usuari." @@ -58,19 +58,19 @@ msgid "%s and friends" msgstr "%s i amics" #: actions/all.php:99 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (RSS 1.0)" -msgstr "Feed per a amics de %s" +msgstr "Canal dels amics de %s (RSS 1.0)" #: actions/all.php:107 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (RSS 2.0)" -msgstr "Feed per a amics de %s" +msgstr "Canal dels amics de %s (RSS 2.0)" #: actions/all.php:115 -#, fuzzy, php-format +#, php-format msgid "Feed for friends of %s (Atom)" -msgstr "Feed per a amics de %s" +msgstr "Canal dels amics de %s (Atom)" #: actions/all.php:127 #, php-format @@ -100,9 +100,8 @@ msgid "" msgstr "" #: actions/all.php:165 -#, fuzzy msgid "You and friends" -msgstr "%s i amics" +msgstr "Un mateix i amics" #: actions/allrss.php:119 actions/apitimelinefriends.php:121 #, php-format @@ -145,7 +144,8 @@ msgstr "No s'ha pogut actualitzar l'usuari." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 #: actions/apistatusesupdate.php:127 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: actions/designadminpanel.php:125 actions/newnotice.php:94 +#: lib/designsettings.php:283 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -231,12 +231,12 @@ msgstr "Tots els missatges directes enviats a %s" #: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 #: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigrouplistall.php:120 actions/apigrouplist.php:132 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apigroupmembership.php:106 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/apitimelinegroup.php:147 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!" @@ -345,9 +345,9 @@ msgid "Full name is too long (max 255 chars)." msgstr "El teu nom és massa llarg (màx. 255 caràcters)." #: actions/apigroupcreate.php:261 -#, fuzzy, php-format +#, php-format msgid "Description is too long (max %d chars)." -msgstr "la descripció és massa llarga (màx. 140 caràcters)." +msgstr "La descripció és massa llarga (màx. %d caràcters)." #: actions/apigroupcreate.php:272 actions/editgroup.php:204 #: actions/newgroup.php:148 actions/profilesettings.php:225 @@ -378,6 +378,13 @@ msgstr "Aquest sobrenom ja existeix. Prova un altre. " msgid "Alias can't be the same as nickname." msgstr "" +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#, fuzzy +msgid "Group not found!" +msgstr "No s'ha trobat el mètode API!" + #: actions/apigroupjoin.php:110 #, fuzzy msgid "You are already a member of that group." @@ -393,14 +400,13 @@ 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." +msgstr "No sou un membre del grup." #: actions/apigroupleave.php:124 -#, fuzzy, php-format +#, php-format msgid "Could not remove user %s to group %s." -msgstr "No s'ha pogut eliminar l'usuari %s del grup %s" +msgstr "No s'ha pogut suprimir l'usuari %s del grup %s." #: actions/apigrouplistall.php:90 actions/usergroups.php:62 #, php-format @@ -469,13 +475,13 @@ msgstr "%s / Favorits de %s" msgid "%s updates favorited by %s / %s." msgstr "%s actualitzacions favorites per %s / %s." -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s línia temporal" -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -563,7 +569,8 @@ msgstr "Original" msgid "Preview" msgstr "Previsualitzar" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#: actions/avatarsettings.php:148 lib/deleteuserform.php:66 +#: lib/noticelist.php:522 msgid "Delete" msgstr "Eliminar" @@ -575,7 +582,7 @@ msgstr "Pujar" msgid "Crop" msgstr "Crop" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/avatarsettings.php:265 actions/disfavor.php:74 #: actions/emailsettings.php:237 actions/favor.php:75 #: actions/groupblock.php:66 actions/grouplogo.php:309 #: actions/groupunblock.php:66 actions/imsettings.php:206 @@ -585,7 +592,7 @@ msgstr "Crop" #: actions/profilesettings.php:187 actions/recoverpassword.php:337 #: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 +#: actions/tagother.php:166 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 lib/designsettings.php:294 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -656,71 +663,50 @@ msgstr "La llista dels usuaris d'aquest grup." msgid "Unblock user from group" msgstr "Ha fallat el desbloqueig d'usuari." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" msgstr "Desbloquejar" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Desbloquejar aquest usuari" -#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61 -#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87 -#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31 -#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "No connectat." +#: actions/block.php:69 +#, fuzzy +msgid "You already blocked that user." +msgstr "Ja havies bloquejat aquest usuari." -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 -msgid "No profile specified." -msgstr "No s'ha especificat perfil." - -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 -msgid "No profile with that ID." -msgstr "No hi ha cap perfil amb aquesta ID." - -#: actions/block.php:111 actions/block.php:134 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 msgid "Block user" msgstr "Usuari bloquejat." -#: actions/block.php:136 +#: actions/block.php:130 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/block.php:149 actions/deletenotice.php:145 -#: actions/groupblock.php:178 +#: actions/block.php:143 actions/deletenotice.php:145 +#: actions/deleteuser.php:147 actions/groupblock.php:178 msgid "No" msgstr "No" -#: actions/block.php:149 +#: actions/block.php:143 actions/deleteuser.php:147 #, fuzzy msgid "Do not block this user" msgstr "Desbloquejar aquest usuari" -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:179 +#: actions/block.php:144 actions/deletenotice.php:146 +#: actions/deleteuser.php:148 actions/groupblock.php:179 msgid "Yes" msgstr "Sí" -#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 -#: lib/blockform.php:153 +#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquejar aquest usuari" -#: actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Ja havies bloquejat aquest usuari." - -#: actions/block.php:170 +#: actions/block.php:162 msgid "Failed to save block information." msgstr "Error al guardar la informació del block." @@ -773,9 +759,8 @@ msgid "The address \"%s\" has been confirmed for your account." msgstr "L'adreça \"%s\" ha estat confirmada per al teu compte." #: actions/conversation.php:99 -#, fuzzy msgid "Conversation" -msgstr "Codi de confirmació" +msgstr "Conversa" #: actions/conversation.php:154 lib/mailbox.php:116 lib/noticelist.php:87 #: lib/profileaction.php:206 @@ -786,6 +771,15 @@ msgstr "Avisos" msgid "No such notice." msgstr "No existeix aquest avís." +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 +#: actions/unsubscribe.php:52 lib/adminpanelaction.php:72 +#: lib/profileformaction.php:63 lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "No connectat." + #: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "No es pot esborrar la notificació." @@ -823,6 +817,146 @@ msgstr "" "Sembla que hi ha hagut un problema amb la teva sessió. Prova-ho de nou, si " "us plau." +#: actions/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "No s'ha pogut actualitzar l'usuari." + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "No pots eliminar l'estatus d'un altre usuari." + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +#, fuzzy +msgid "Delete user" +msgstr "Eliminar" + +#: actions/deleteuser.php:135 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "Eliminar aquesta nota" + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/adminpanelaction.php:275 lib/groupnav.php:119 +msgid "Design" +msgstr "" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "" + +#: actions/designadminpanel.php:220 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "No s'ha pogut guardar la teva configuració de Twitter!" + +#: actions/designadminpanel.php:301 +#, fuzzy, php-format +msgid "Theme not available: %s" +msgstr "Aquesta pàgina no està disponible en " + +#: actions/designadminpanel.php:406 +#, fuzzy +msgid "Change theme" +msgstr "Canviar" + +#: actions/designadminpanel.php:410 +msgid "Theme" +msgstr "" + +#: actions/designadminpanel.php:411 +#, fuzzy +msgid "Theme for the site." +msgstr "Sortir d'aquest lloc" + +#: actions/designadminpanel.php:420 lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: actions/designadminpanel.php:424 actions/designadminpanel.php:498 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: actions/designadminpanel.php:429 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "Pots pujar una imatge de logo per al grup." + +#: actions/designadminpanel.php:459 lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: actions/designadminpanel.php:475 lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: actions/designadminpanel.php:476 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: actions/designadminpanel.php:481 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: actions/designadminpanel.php:490 lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Canviar la teva contrasenya" + +#: actions/designadminpanel.php:511 lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Connectar-se" + +#: actions/designadminpanel.php:524 lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Cercar" + +#: actions/designadminpanel.php:537 lib/designsettings.php:217 +msgid "Text" +msgstr "Text" + +#: actions/designadminpanel.php:550 lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Inici de sessió" + +#: actions/designadminpanel.php:611 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: actions/designadminpanel.php:612 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: actions/designadminpanel.php:618 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: actions/designadminpanel.php:620 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/siteadminpanel.php:371 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 actions/useradminpanel.php:226 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Guardar" + +#: actions/designadminpanel.php:621 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "Aquesta notificació no és un favorit!" @@ -970,14 +1104,6 @@ msgstr "Vull publicar notificacions per correu electrònic." msgid "Publish a MicroID for my email address." msgstr "Publica una MicroID per al meu correu electrònic." -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Guardar" - #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." @@ -991,7 +1117,7 @@ msgstr "No hi ha cap direcció de correu electrònic." msgid "Cannot normalize that email address" msgstr "No es pot normalitzar aquesta direcció de correu electrònic" -#: actions/emailsettings.php:330 +#: actions/emailsettings.php:330 actions/siteadminpanel.php:156 msgid "Not a valid email address" msgstr "No és una direcció de correu electrònic vàlida." @@ -1192,6 +1318,18 @@ msgstr "No existeix aquest avís." msgid "Cannot read file." msgstr "Hem perdut el nostre arxiu." +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +msgid "No profile specified." +msgstr "No s'ha especificat perfil." + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: lib/profileformaction.php:77 +msgid "No profile with that ID." +msgstr "No hi ha cap perfil amb aquesta ID." + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 #, fuzzy @@ -1249,9 +1387,8 @@ msgid "You must be logged in to edit a group." msgstr "Has d'haver entrat per crear un grup." #: actions/groupdesignsettings.php:141 -#, fuzzy msgid "Group design" -msgstr "Grups" +msgstr "Disseny de grup" #: actions/groupdesignsettings.php:152 msgid "" @@ -1316,11 +1453,11 @@ msgstr "%s membre/s en el grup, pàgina %d" msgid "A list of the users in this group." msgstr "La llista dels usuaris d'aquest grup." -#: actions/groupmembers.php:175 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:439 lib/groupnav.php:107 msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:346 lib/blockform.php:153 +#: actions/groupmembers.php:346 lib/blockform.php:69 msgid "Block" msgstr "Bloquejar" @@ -1358,9 +1495,8 @@ msgstr "Cercar grup" #: actions/groupsearch.php:79 actions/noticesearch.php:117 #: actions/peoplesearch.php:83 -#, fuzzy msgid "No results." -msgstr "Cap resultat" +msgstr "Cap resultat." #: actions/groupsearch.php:82 #, php-format @@ -1409,7 +1545,7 @@ msgstr "" msgid "User is not blocked from group." msgstr "Un usuari t'ha bloquejat." -#: actions/groupunblock.php:128 actions/unblock.php:108 +#: actions/groupunblock.php:128 actions/unblock.php:77 msgid "Error removing the block." msgstr "Error al moure el block." @@ -1528,7 +1664,7 @@ msgstr "" #: actions/invite.php:39 msgid "Invites have been disabled." -msgstr "" +msgstr "S'han inhabilitat les invitacions." #: actions/invite.php:41 #, php-format @@ -1724,7 +1860,7 @@ msgstr "Nom d'usuari o contrasenya incorrectes." msgid "Error setting user." msgstr "Error en configurar l'usuari." -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: actions/login.php:204 actions/login.php:257 lib/action.php:457 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Inici de sessió" @@ -1830,9 +1966,8 @@ msgid "" msgstr "No t'enviïs missatges a tu mateix, simplement dir-te això." #: actions/newmessage.php:181 -#, fuzzy msgid "Message sent" -msgstr "Missatge" +msgstr "S'ha enviat el missatge" #: actions/newmessage.php:185 lib/command.php:375 #, php-format @@ -1865,9 +2000,9 @@ msgid "Text search" msgstr "Cerca de text" #: actions/noticesearch.php:91 -#, fuzzy, php-format +#, php-format msgid "Search results for \"%s\" on %s" -msgstr "Cerca \"%s\" al flux" +msgstr "Cerca resultats de «%s» a %s" #: actions/noticesearch.php:121 #, php-format @@ -1953,7 +2088,7 @@ msgstr "" #: actions/othersettings.php:116 msgid "Shorten URLs with" -msgstr "" +msgstr "Escurça els URL amb" #: actions/othersettings.php:117 msgid "Automatic shortening service to use." @@ -2155,7 +2290,7 @@ msgstr "" "Etiquetes per a tu mateix (lletres, números, -, ., i _), per comes o separat " "por espais" -#: actions/profilesettings.php:144 +#: actions/profilesettings.php:144 actions/siteadminpanel.php:275 msgid "Language" msgstr "Idioma" @@ -2183,7 +2318,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "La biografia és massa llarga (màx. 140 caràcters)." -#: actions/profilesettings.php:228 +#: actions/profilesettings.php:228 actions/siteadminpanel.php:163 msgid "Timezone not selected." msgstr "Franja horària no seleccionada." @@ -2208,7 +2343,7 @@ msgstr "No s'ha pogut guardar el perfil." msgid "Couldn't save tags." msgstr "No s'han pogut guardar les etiquetes." -#: actions/profilesettings.php:344 +#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 msgid "Settings saved." msgstr "Configuració guardada." @@ -2350,7 +2485,7 @@ msgstr "" #: actions/recoverpassword.php:188 msgid "Password recovery" -msgstr "" +msgstr "Recuperació de la contrasenya" #: actions/recoverpassword.php:191 msgid "Nickname or email address" @@ -2447,7 +2582,7 @@ msgstr "Error amb el codi de confirmació." msgid "Registration successful" msgstr "Registre satisfactori" -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: actions/register.php:114 actions/register.php:502 lib/action.php:454 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrar-se" @@ -2492,7 +2627,7 @@ msgid "Same as password above. Required." msgstr "Igual a la contrasenya de dalt. Requerit." #: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:253 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Correu electrònic" @@ -2599,7 +2734,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL del teu perfil en un altre servei de microblogging compatible" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 +#: lib/userprofile.php:356 msgid "Subscribe" msgstr "Subscriure's" @@ -2675,6 +2810,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Missatge per a %1$s a %2$s" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "No pots enviar un missatge a aquest usuari." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "Un usuari t'ha bloquejat." + #: actions/showfavorites.php:79 #, fuzzy, php-format msgid "%s's favorite notices, page %d" @@ -2920,6 +3065,145 @@ msgstr "" "**%s** té un compte a %%%%site.name%%%%, un servei de [microblogging](http://" "ca.wikipedia.org/wiki/Microblogging) " +#: actions/silence.php:65 actions/unsilence.php:65 +#, fuzzy +msgid "You cannot silence users on this site." +msgstr "No pots enviar un missatge a aquest usuari." + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "Un usuari t'ha bloquejat." + +#: actions/siteadminpanel.php:58 lib/adminpanelaction.php:272 +#, fuzzy +msgid "Site" +msgstr "Invitar" + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site." +msgstr "" + +#: actions/siteadminpanel.php:145 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:153 +#, fuzzy +msgid "You must have a valid contact email address" +msgstr "No és una direcció de correu electrònic vàlida." + +#: actions/siteadminpanel.php:171 +#, php-format +msgid "Unknown language \"%s\"" +msgstr "" + +#: actions/siteadminpanel.php:178 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/siteadminpanel.php:184 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/siteadminpanel.php:190 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/siteadminpanel.php:241 +#, fuzzy +msgid "Site name" +msgstr "Avís del lloc" + +#: actions/siteadminpanel.php:242 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:246 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:249 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:250 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:254 +#, fuzzy +msgid "contact email address for your site" +msgstr "Nou correu electrònic per publicar a %s" + +#: actions/siteadminpanel.php:268 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:269 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:276 +#, fuzzy +msgid "Default site language" +msgstr "Preferència d'idioma" + +#: actions/siteadminpanel.php:282 +#, fuzzy +msgid "Private" +msgstr "Privacitat" + +#: actions/siteadminpanel.php:284 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/siteadminpanel.php:290 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/siteadminpanel.php:291 +msgid "In a scheduled job" +msgstr "" + +#: actions/siteadminpanel.php:292 +#, fuzzy +msgid "Never" +msgstr "Recuperar" + +#: actions/siteadminpanel.php:294 +msgid "Data snapshots" +msgstr "" + +#: actions/siteadminpanel.php:295 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/siteadminpanel.php:301 +msgid "Frequency" +msgstr "" + +#: actions/siteadminpanel.php:302 +msgid "Snapshots will be sent once every N Web hits" +msgstr "" + +#: actions/siteadminpanel.php:309 +msgid "Report URL" +msgstr "" + +#: actions/siteadminpanel.php:310 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/siteadminpanel.php:371 actions/useradminpanel.php:226 +#, fuzzy +msgid "Save site settings" +msgstr "Configuració de l'avatar" + #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "Configuració SMS" @@ -3197,6 +3481,21 @@ msgstr "No existeix aquesta etiqueta." msgid "API method under construction." msgstr "Mètode API en construcció." +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "Ja havies bloquejat aquest usuari." + +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "Un usuari t'ha bloquejat." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "L'usuari no té perfil." + #: actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "No id en el perfil sol·licitat." @@ -3214,6 +3513,32 @@ msgstr "No subscrit" msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" +#: actions/useradminpanel.php:58 lib/personalgroupnav.php:115 +msgid "User" +msgstr "Usuari" + +#: actions/useradminpanel.php:69 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:171 +#, fuzzy +msgid "Closed" +msgstr "Bloquejar" + +#: actions/useradminpanel.php:173 +msgid "Is registration on this site prohibited?" +msgstr "" + +#: actions/useradminpanel.php:178 +#, fuzzy +msgid "Invite-only" +msgstr "Invitar" + +#: actions/useradminpanel.php:180 +msgid "Is registration on this site only open to invited users?" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autoritzar subscripció" @@ -3345,14 +3670,13 @@ msgid "%s groups, page %d" msgstr "%s grups, pàgina %d" #: actions/usergroups.php:130 -#, fuzzy msgid "Search for more groups" -msgstr "Cercar gent o text" +msgstr "Cerca més grups" #: actions/usergroups.php:153 -#, fuzzy, php-format +#, php-format msgid "%s is not a member of any group." -msgstr "No ets membre d'aquest grup." +msgstr "%s no és membre de cap grup." #: actions/usergroups.php:158 #, php-format @@ -3376,11 +3700,16 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: classes/Message.php:55 +#: classes/Message.php:45 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "Error al enviar el missatge directe." + +#: classes/Message.php:61 msgid "Could not insert message." msgstr "No s'ha pogut inserir el missatge." -#: classes/Message.php:65 +#: classes/Message.php:71 msgid "Could not update message with new URI." msgstr "No s'ha pogut inserir el missatge amb la nova URI." @@ -3414,15 +3743,15 @@ msgstr "" "Masses notificacions massa ràpid; pren un respir i publica de nou en uns " "minuts." -#: classes/Notice.php:202 +#: classes/Notice.php:200 msgid "You are banned from posting notices on this site." msgstr "Ha estat bandejat de publicar notificacions en aquest lloc." -#: classes/Notice.php:268 classes/Notice.php:293 +#: classes/Notice.php:265 classes/Notice.php:290 msgid "Problem saving notice." msgstr "Problema en guardar l'avís." -#: classes/Notice.php:1120 +#: classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Error de BD en inserir resposta: %s" @@ -3452,10 +3781,6 @@ msgstr "Canviar la teva contrasenya" msgid "Change email handling" msgstr "Canviar correu electrònic" -#: lib/accountsettingsaction.php:124 lib/groupnav.php:119 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:124 #, fuzzy msgid "Design your profile" @@ -3507,97 +3832,102 @@ msgstr "Connectar-se" msgid "Connect to services" msgstr "No s'ha pogut redirigir al servidor: %s" -#: lib/action.php:439 lib/subgroupnav.php:105 +#: lib/action.php:439 +#, fuzzy +msgid "Change site configuration" +msgstr "Navegació primària del lloc" + +#: lib/action.php:443 lib/subgroupnav.php:105 msgid "Invite" msgstr "Invitar" -#: lib/action.php:440 lib/subgroupnav.php:106 +#: lib/action.php:444 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Convidar amics i companys perquè participin a %s" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout" msgstr "Sortir" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout from the site" msgstr "Sortir d'aquest lloc" -#: lib/action.php:450 +#: lib/action.php:454 msgid "Create an account" msgstr "Crear nou compte" -#: lib/action.php:453 +#: lib/action.php:457 msgid "Login to the site" msgstr "Accedir a aquest lloc" -#: lib/action.php:456 lib/action.php:719 +#: lib/action.php:460 lib/action.php:723 msgid "Help" msgstr "Ajuda" -#: lib/action.php:456 +#: lib/action.php:460 msgid "Help me!" msgstr "Ajuda'm" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search" msgstr "Cercar" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search for people or text" msgstr "Cercar gent o text" -#: lib/action.php:480 +#: lib/action.php:484 msgid "Site notice" msgstr "Avís del lloc" -#: lib/action.php:546 +#: lib/action.php:550 msgid "Local views" msgstr "Vistes locals" -#: lib/action.php:612 +#: lib/action.php:616 msgid "Page notice" msgstr "Notificació pàgina" -#: lib/action.php:714 +#: lib/action.php:718 msgid "Secondary site navigation" msgstr "Navegació del lloc secundària" -#: lib/action.php:721 +#: lib/action.php:725 msgid "About" msgstr "Sobre" -#: lib/action.php:723 +#: lib/action.php:727 msgid "FAQ" msgstr "Preguntes freqüents" -#: lib/action.php:727 +#: lib/action.php:731 msgid "TOS" msgstr "" -#: lib/action.php:730 +#: lib/action.php:734 msgid "Privacy" msgstr "Privacitat" -#: lib/action.php:732 +#: lib/action.php:736 msgid "Source" msgstr "Font" -#: lib/action.php:734 +#: lib/action.php:738 msgid "Contact" msgstr "Posar-se en contacte" -#: lib/action.php:736 +#: lib/action.php:740 #, fuzzy msgid "Badge" msgstr "Reclamar" -#: lib/action.php:764 +#: lib/action.php:768 msgid "StatusNet software license" msgstr "Llicència del programari StatusNet" -#: lib/action.php:767 +#: lib/action.php:771 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3606,12 +3936,12 @@ msgstr "" "**%%site.name%%** és un servei de microblogging de [%%site.broughtby%%**](%%" "site.broughtbyurl%%)." -#: lib/action.php:769 +#: lib/action.php:773 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** és un servei de microblogging." -#: lib/action.php:771 +#: lib/action.php:775 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3622,35 +3952,60 @@ msgstr "" "%s, disponible sota la [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:785 +#: lib/action.php:789 #, fuzzy msgid "Site content license" msgstr "Llicència del programari StatusNet" -#: lib/action.php:794 +#: lib/action.php:798 msgid "All " msgstr "Tot " -#: lib/action.php:799 +#: lib/action.php:803 msgid "license." msgstr "llicència." -#: lib/action.php:1052 +#: lib/action.php:1067 msgid "Pagination" msgstr "Paginació" -#: lib/action.php:1061 +#: lib/action.php:1076 msgid "After" msgstr "Posteriors" -#: lib/action.php:1069 +#: lib/action.php:1084 msgid "Before" msgstr "Anteriors" -#: lib/action.php:1117 +#: lib/action.php:1132 msgid "There was a problem with your session token." msgstr "Ha ocorregut algun problema amb la teva sessió." +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "No pots enviar un missatge a aquest usuari." + +#: lib/adminpanelaction.php:195 +#, fuzzy +msgid "showForm() not implemented." +msgstr "Comanda encara no implementada." + +#: lib/adminpanelaction.php:224 +#, fuzzy +msgid "saveSettings() not implemented." +msgstr "Comanda encara no implementada." + +#: lib/adminpanelaction.php:273 +#, fuzzy +msgid "Basic site configuration" +msgstr "Confirmació de l'adreça de correu electrònic" + +#: lib/adminpanelaction.php:276 +#, fuzzy +msgid "Design configuration" +msgstr "Confirmació SMS" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -3826,30 +4181,36 @@ msgstr "No estàs subscrit a aquest perfil." #: lib/command.php:620 #, fuzzy -msgid "You are subscribed to these people: " -msgstr "No estàs subscrit a aquest perfil." +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "No estàs subscrit a aquest perfil." +msgstr[1] "No estàs subscrit a aquest perfil." -#: lib/command.php:637 +#: lib/command.php:640 #, fuzzy msgid "No one is subscribed to you." msgstr "No pots subscriure a un altre a tu mateix." -#: lib/command.php:639 +#: lib/command.php:642 #, fuzzy -msgid "These people are subscribed to you: " -msgstr "Persones subscrites a %s" +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "No pots subscriure a un altre a tu mateix." +msgstr[1] "No pots subscriure a un altre a tu mateix." -#: lib/command.php:656 +#: lib/command.php:662 #, fuzzy msgid "You are not a member of any groups." msgstr "No ets membre d'aquest grup." -#: lib/command.php:658 +#: lib/command.php:664 #, fuzzy -msgid "You are a member of these groups: " -msgstr "No ets membre d'aquest grup." +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "No ets membre d'aquest grup." +msgstr[1] "No ets membre d'aquest grup." -#: lib/command.php:670 +#: lib/command.php:678 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -3888,20 +4249,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:192 +#: lib/common.php:203 #, fuzzy msgid "No configuration file found. " msgstr "Cap codi de confirmació." -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:195 +#: lib/common.php:206 #, fuzzy msgid "Go to the installer." msgstr "Accedir a aquest lloc" @@ -3922,10 +4283,6 @@ msgstr "Actualitzacions per SMS" msgid "Database error" msgstr "" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" @@ -3936,66 +4293,6 @@ 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:217 -msgid "Text" -msgstr "Text" - -#: 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:372 msgid "Bad default color settings: " msgstr "" @@ -4226,12 +4523,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:235 +#: lib/mail.php:236 #, 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." -#: lib/mail.php:240 +#: lib/mail.php:241 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4252,17 +4549,17 @@ msgstr "" "Atentament,\n" "%4$s.\n" -#: lib/mail.php:253 +#: lib/mail.php:254 #, php-format msgid "Location: %s\n" msgstr "Ubicació: %s\n" -#: lib/mail.php:255 +#: lib/mail.php:256 #, php-format msgid "Homepage: %s\n" msgstr "Pàgina personal: %s\n" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" @@ -4271,12 +4568,12 @@ msgstr "" "Biografia: %s\n" "\n" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "Nou correu electrònic per publicar a %s" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4297,21 +4594,21 @@ msgstr "" "Sincerament teus,\n" "%4$s" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "%s estat" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "Confirmació SMS" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "Has estat reclamat per %s" -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4327,12 +4624,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "Nou missatge privat de %s" -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4351,12 +4648,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:554 +#: lib/mail.php:559 #, 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 +#: lib/mail.php:561 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4377,12 +4674,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4520,7 +4817,12 @@ msgstr "Error en inserir perfil remot" msgid "Duplicate notice" msgstr "Eliminar nota." -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Aquest usuari t'ha bloquejat com a subscriptor." + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "No s'ha pogut inserir una nova subscripció." @@ -4536,10 +4838,6 @@ msgstr "Respostes" msgid "Favorites" msgstr "Favorits" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Usuari" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Safata d'entrada" @@ -4590,6 +4888,15 @@ msgstr "Membre des de" msgid "All groups" msgstr "Tots els grups" +#: lib/profileformaction.php:123 +#, fuzzy +msgid "No return-to arguments" +msgstr "No argument de la id." + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "Públic" @@ -4610,6 +4917,16 @@ msgstr "Destacat" msgid "Popular" msgstr "Popular" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "Safata d'entrada" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Desbloquejar aquest usuari" + #: lib/searchaction.php:120 #, fuzzy msgid "Search site" @@ -4648,6 +4965,16 @@ msgstr "Secció sense títol" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Avís del lloc" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Bloquejar aquest usuari" + #: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" @@ -4677,28 +5004,28 @@ msgstr "" msgid "(none)" msgstr "(cap)" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "" -#: lib/subs.php:52 +#: lib/subs.php:56 msgid "User has blocked you." msgstr "Un usuari t'ha bloquejat." -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "No pots subscriure." -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "No pots subscriure a un altre a tu mateix." -#: lib/subs.php:124 +#: lib/subs.php:128 #, fuzzy msgid "Not subscribed!" msgstr "No estàs subscrit!" -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "No s'ha pogut eliminar la subscripció." @@ -4710,6 +5037,29 @@ msgstr "Cap" msgid "Top posters" msgstr "Que més publiquen" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "Desbloquejar aquest usuari" + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Desbloquejar aquest usuari" + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Desbloquejar aquest usuari" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Deixar d'estar subscrit des d'aquest usuari" @@ -4813,3 +5163,7 @@ msgstr "Perdó, aquest no és el teu correu electrònic entrant permès." #: scripts/maildaemon.php:61 msgid "Sorry, no incoming email allowed." msgstr "Perdó, no hi ha un correu electrònic entrant permès." + +#, fuzzy +#~ msgid "These people are subscribed to you: " +#~ msgstr "Persones subscrites a %s" diff --git a/locale/cs/LC_MESSAGES/statusnet.mo b/locale/cs/LC_MESSAGES/statusnet.mo index 449e93cdc495746ca98366a08755cef3800f9ddb..e901c2e6456042290c077477838a6161d3a75f79 100644 GIT binary patch delta 11393 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�ZNqL@2Crix{*J}5MorHvhmEil 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 Hd0+fL#@Vw% diff --git a/locale/el/LC_MESSAGES/statusnet.po b/locale/el/LC_MESSAGES/statusnet.po index f8fa1eb63b..936f334b8f 100644 --- a/locale/el/LC_MESSAGES/statusnet.po +++ b/locale/el/LC_MESSAGES/statusnet.po @@ -5,12 +5,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-16 19:42+0000\n" -"PO-Revision-Date: 2009-11-16 19:43:15+0000\n" +"POT-Creation-Date: 2009-11-18 19:31+0000\n" +"PO-Revision-Date: 2009-11-18 19:31:37+0000\n" "Language-Team: Greek\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\n" +"X-Generator: MediaWiki 1.16alpha(r59207); Translate extension (2009-11-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: el\n" "X-Message-Group: out-statusnet\n" @@ -42,7 +42,7 @@ msgstr "Αδύνατη η αποθήκευση του προφίλ." #: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 #: lib/command.php:364 lib/command.php:411 lib/command.php:466 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 +#: lib/subs.php:34 lib/subs.php:116 msgid "No such user." msgstr "" @@ -145,7 +145,8 @@ msgstr "Απέτυχε η ενημέρωση του χρήστη." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 #: actions/apistatusesupdate.php:127 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: actions/designadminpanel.php:125 actions/newnotice.php:94 +#: lib/designsettings.php:283 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -230,12 +231,12 @@ msgstr "" #: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 #: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigrouplistall.php:120 actions/apigrouplist.php:132 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apigroupmembership.php:106 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/apitimelinegroup.php:147 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!" @@ -375,6 +376,13 @@ msgstr "Το ψευδώνυμο είναι ήδη σε χρήση. Δοκιμά msgid "Alias can't be the same as nickname." msgstr "" +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#, fuzzy +msgid "Group not found!" +msgstr "Η μέθοδος του ΑΡΙ δε βρέθηκε!" + #: actions/apigroupjoin.php:110 msgid "You are already a member of that group." msgstr "" @@ -463,13 +471,13 @@ msgstr "" msgid "%s updates favorited by %s / %s." msgstr "" -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 #, fuzzy, php-format msgid "%s timeline" msgstr "Χρονοδιάγραμμα του χρήστη %s" -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -557,7 +565,8 @@ msgstr "" msgid "Preview" msgstr "" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#: actions/avatarsettings.php:148 lib/deleteuserform.php:66 +#: lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -569,7 +578,7 @@ msgstr "" msgid "Crop" msgstr "" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/avatarsettings.php:265 actions/disfavor.php:74 #: actions/emailsettings.php:237 actions/favor.php:75 #: actions/groupblock.php:66 actions/grouplogo.php:309 #: actions/groupunblock.php:66 actions/imsettings.php:206 @@ -579,7 +588,7 @@ msgstr "" #: actions/profilesettings.php:187 actions/recoverpassword.php:337 #: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 +#: actions/tagother.php:166 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 lib/designsettings.php:294 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -646,71 +655,50 @@ msgstr "" msgid "Unblock user from group" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "" -#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61 -#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87 -#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31 -#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "" +#: actions/block.php:69 +#, fuzzy +msgid "You already blocked that user." +msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 -msgid "No profile specified." -msgstr "" - -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 -msgid "No profile with that ID." -msgstr "" - -#: actions/block.php:111 actions/block.php:134 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 msgid "Block user" msgstr "" -#: actions/block.php:136 +#: actions/block.php:130 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/block.php:149 actions/deletenotice.php:145 -#: actions/groupblock.php:178 +#: actions/block.php:143 actions/deletenotice.php:145 +#: actions/deleteuser.php:147 actions/groupblock.php:178 msgid "No" msgstr "" -#: actions/block.php:149 +#: actions/block.php:143 actions/deleteuser.php:147 #, fuzzy msgid "Do not block this user" msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:179 +#: actions/block.php:144 actions/deletenotice.php:146 +#: actions/deleteuser.php:148 actions/groupblock.php:179 msgid "Yes" msgstr "" -#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 -#: lib/blockform.php:153 +#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 msgid "Block this user" msgstr "" -#: actions/block.php:165 -msgid "You have already blocked this user." -msgstr "" - -#: actions/block.php:170 +#: actions/block.php:162 msgid "Failed to save block information." msgstr "" @@ -775,6 +763,15 @@ msgstr "" msgid "No such notice." msgstr "" +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 +#: actions/unsubscribe.php:52 lib/adminpanelaction.php:72 +#: lib/profileformaction.php:63 lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "" + #: actions/deletenotice.php:71 #, fuzzy msgid "Can't delete this notice." @@ -807,6 +804,142 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "" +#: actions/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "Απέτυχε η ενημέρωση του χρήστη." + +#: actions/deleteuser.php:74 +msgid "You can only delete local users." +msgstr "" + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +#, fuzzy +msgid "Delete user" +msgstr "Διαγραφή μηνύματος" + +#: actions/deleteuser.php:135 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "Διαγραφή μηνύματος" + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/adminpanelaction.php:275 lib/groupnav.php:119 +msgid "Design" +msgstr "" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "" + +#: actions/designadminpanel.php:220 +msgid "Unable to delete design setting." +msgstr "" + +#: actions/designadminpanel.php:301 +#, fuzzy, php-format +msgid "Theme not available: %s" +msgstr "Η αρχική σελίδα δεν είναι έγκυρο URL." + +#: actions/designadminpanel.php:406 +#, fuzzy +msgid "Change theme" +msgstr "Αλλαγή" + +#: actions/designadminpanel.php:410 +msgid "Theme" +msgstr "" + +#: actions/designadminpanel.php:411 +msgid "Theme for the site." +msgstr "" + +#: actions/designadminpanel.php:420 lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: actions/designadminpanel.php:424 actions/designadminpanel.php:498 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: actions/designadminpanel.php:429 +#, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "" + +#: actions/designadminpanel.php:459 lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: actions/designadminpanel.php:475 lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: actions/designadminpanel.php:476 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: actions/designadminpanel.php:481 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: actions/designadminpanel.php:490 lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Αλλάξτε τον κωδικό σας" + +#: actions/designadminpanel.php:511 lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Σύνδεση" + +#: actions/designadminpanel.php:524 lib/designsettings.php:204 +msgid "Sidebar" +msgstr "" + +#: actions/designadminpanel.php:537 lib/designsettings.php:217 +msgid "Text" +msgstr "" + +#: actions/designadminpanel.php:550 lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Σύνδεση" + +#: actions/designadminpanel.php:611 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: actions/designadminpanel.php:612 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: actions/designadminpanel.php:618 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: actions/designadminpanel.php:620 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/siteadminpanel.php:371 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 actions/useradminpanel.php:226 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "" + +#: actions/designadminpanel.php:621 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "" @@ -951,14 +1084,6 @@ msgstr "Θέλω να δημοσιεύω ενημερώσεις μέσω email" msgid "Publish a MicroID for my email address." msgstr "" -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "" - #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." @@ -972,7 +1097,7 @@ msgstr "" msgid "Cannot normalize that email address" msgstr "Αδυναμία κανονικοποίησης αυτής της email διεύθυνσης" -#: actions/emailsettings.php:330 +#: actions/emailsettings.php:330 actions/siteadminpanel.php:156 msgid "Not a valid email address" msgstr "" @@ -1171,6 +1296,18 @@ msgstr "Αδύνατη η αποθήκευση του προφίλ." msgid "Cannot read file." msgstr "Αδύνατη η αποθήκευση του προφίλ." +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +msgid "No profile specified." +msgstr "" + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: lib/profileformaction.php:77 +msgid "No profile with that ID." +msgstr "" + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 msgid "No group specified." @@ -1284,11 +1421,11 @@ msgstr "" msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:439 lib/groupnav.php:107 msgid "Admin" msgstr "Διαχειριστής" -#: actions/groupmembers.php:346 lib/blockform.php:153 +#: actions/groupmembers.php:346 lib/blockform.php:69 msgid "Block" msgstr "" @@ -1373,7 +1510,7 @@ msgstr "" msgid "User is not blocked from group." msgstr "" -#: actions/groupunblock.php:128 actions/unblock.php:108 +#: actions/groupunblock.php:128 actions/unblock.php:77 msgid "Error removing the block." msgstr "" @@ -1645,7 +1782,7 @@ msgstr "Λάθος όνομα χρήστη ή κωδικός" msgid "Error setting user." msgstr "" -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: actions/login.php:204 actions/login.php:257 lib/action.php:457 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Σύνδεση" @@ -2062,7 +2199,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:144 +#: actions/profilesettings.php:144 actions/siteadminpanel.php:275 msgid "Language" msgstr "" @@ -2091,7 +2228,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Το βιογραφικό είναι πολύ μεγάλο (μέγιστο 140 χαρακτ.)." -#: actions/profilesettings.php:228 +#: actions/profilesettings.php:228 actions/siteadminpanel.php:163 msgid "Timezone not selected." msgstr "" @@ -2117,7 +2254,7 @@ msgstr "Απέτυχε η αποθήκευση του προφίλ." msgid "Couldn't save tags." msgstr "Αδύνατη η αποθήκευση του προφίλ." -#: actions/profilesettings.php:344 +#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 msgid "Settings saved." msgstr "" @@ -2349,7 +2486,7 @@ msgstr "" msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: actions/register.php:114 actions/register.php:502 lib/action.php:454 #: lib/logingroupnav.php:85 msgid "Register" msgstr "" @@ -2393,7 +2530,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:253 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Email" @@ -2498,7 +2635,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 +#: lib/userprofile.php:356 msgid "Subscribe" msgstr "" @@ -2572,6 +2709,14 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +msgid "You cannot sandbox users on this site." +msgstr "" + +#: actions/sandbox.php:72 +msgid "User is already sandboxed." +msgstr "" + #: actions/showfavorites.php:79 #, fuzzy, php-format msgid "%s's favorite notices, page %d" @@ -2815,6 +2960,139 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" +#: actions/silence.php:65 actions/unsilence.php:65 +msgid "You cannot silence users on this site." +msgstr "" + +#: actions/silence.php:72 +msgid "User is already silenced." +msgstr "" + +#: actions/siteadminpanel.php:58 lib/adminpanelaction.php:272 +msgid "Site" +msgstr "" + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site." +msgstr "" + +#: actions/siteadminpanel.php:145 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:153 +#, fuzzy +msgid "You must have a valid contact email address" +msgstr "Αδυναμία κανονικοποίησης αυτής της email διεύθυνσης" + +#: actions/siteadminpanel.php:171 +#, php-format +msgid "Unknown language \"%s\"" +msgstr "" + +#: actions/siteadminpanel.php:178 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/siteadminpanel.php:184 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/siteadminpanel.php:190 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/siteadminpanel.php:241 +msgid "Site name" +msgstr "" + +#: actions/siteadminpanel.php:242 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:246 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:249 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:250 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:254 +#, fuzzy +msgid "contact email address for your site" +msgstr "Η διεύθυνση του εισερχόμενου email αφαιρέθηκε." + +#: actions/siteadminpanel.php:268 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:269 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:276 +msgid "Default site language" +msgstr "" + +#: actions/siteadminpanel.php:282 +msgid "Private" +msgstr "" + +#: actions/siteadminpanel.php:284 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/siteadminpanel.php:290 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/siteadminpanel.php:291 +msgid "In a scheduled job" +msgstr "" + +#: actions/siteadminpanel.php:292 +#, fuzzy +msgid "Never" +msgstr "Αποχώρηση" + +#: actions/siteadminpanel.php:294 +msgid "Data snapshots" +msgstr "" + +#: actions/siteadminpanel.php:295 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/siteadminpanel.php:301 +msgid "Frequency" +msgstr "" + +#: actions/siteadminpanel.php:302 +msgid "Snapshots will be sent once every N Web hits" +msgstr "" + +#: actions/siteadminpanel.php:309 +msgid "Report URL" +msgstr "" + +#: actions/siteadminpanel.php:310 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/siteadminpanel.php:371 actions/useradminpanel.php:226 +#, fuzzy +msgid "Save site settings" +msgstr "Ρυθμίσεις OpenID" + #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "" @@ -3082,6 +3360,19 @@ msgstr "" msgid "API method under construction." msgstr "Η μέθοδος του ΑΡΙ είναι υπό κατασκευή." +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." + +#: actions/unsandbox.php:72 +msgid "User is not sandboxed." +msgstr "" + +#: actions/unsilence.php:72 +msgid "User is not silenced." +msgstr "" + #: actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "" @@ -3099,6 +3390,30 @@ msgstr "" msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" +#: actions/useradminpanel.php:58 lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + +#: actions/useradminpanel.php:69 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:171 +msgid "Closed" +msgstr "" + +#: actions/useradminpanel.php:173 +msgid "Is registration on this site prohibited?" +msgstr "" + +#: actions/useradminpanel.php:178 +msgid "Invite-only" +msgstr "" + +#: actions/useradminpanel.php:180 +msgid "Is registration on this site only open to invited users?" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Εξουσιοδοτημένη συνδρομή" @@ -3247,11 +3562,15 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: classes/Message.php:55 +#: classes/Message.php:45 +msgid "You are banned from sending direct messages." +msgstr "" + +#: classes/Message.php:61 msgid "Could not insert message." msgstr "" -#: classes/Message.php:65 +#: classes/Message.php:71 msgid "Could not update message with new URI." msgstr "" @@ -3279,15 +3598,15 @@ msgid "" "few minutes." msgstr "" -#: classes/Notice.php:202 +#: classes/Notice.php:200 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:268 classes/Notice.php:293 +#: classes/Notice.php:265 classes/Notice.php:290 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:1120 +#: classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Σφάλμα βάσης δεδομένων κατά την εισαγωγή απάντησης: %s" @@ -3317,10 +3636,6 @@ msgstr "Αλλάξτε τον κωδικό σας" msgid "Change email handling" msgstr "" -#: lib/accountsettingsaction.php:124 lib/groupnav.php:119 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:124 #, fuzzy msgid "Design your profile" @@ -3373,98 +3688,102 @@ msgstr "Σύνδεση" msgid "Connect to services" msgstr "Αδυναμία ανακατεύθηνσης στο διακομιστή: %s" -#: lib/action.php:439 lib/subgroupnav.php:105 +#: lib/action.php:439 +msgid "Change site configuration" +msgstr "" + +#: lib/action.php:443 lib/subgroupnav.php:105 msgid "Invite" msgstr "" -#: lib/action.php:440 lib/subgroupnav.php:106 +#: lib/action.php:444 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Προσκάλεσε φίλους και συναδέλφους σου να γίνουν μέλη στο %s" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout" msgstr "Αποσύνδεση" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout from the site" msgstr "" -#: lib/action.php:450 +#: lib/action.php:454 #, fuzzy msgid "Create an account" msgstr "Δημιουργία νέου λογαριασμού" -#: lib/action.php:453 +#: lib/action.php:457 msgid "Login to the site" msgstr "" -#: lib/action.php:456 lib/action.php:719 +#: lib/action.php:460 lib/action.php:723 msgid "Help" msgstr "Βοήθεια" -#: lib/action.php:456 +#: lib/action.php:460 #, fuzzy msgid "Help me!" msgstr "Βοήθεια" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search" msgstr "" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search for people or text" msgstr "" -#: lib/action.php:480 +#: lib/action.php:484 msgid "Site notice" msgstr "" -#: lib/action.php:546 +#: lib/action.php:550 msgid "Local views" msgstr "" -#: lib/action.php:612 +#: lib/action.php:616 msgid "Page notice" msgstr "" -#: lib/action.php:714 +#: lib/action.php:718 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:721 +#: lib/action.php:725 msgid "About" msgstr "Περί" -#: lib/action.php:723 +#: lib/action.php:727 msgid "FAQ" msgstr "Συχνές ερωτήσεις" -#: lib/action.php:727 +#: lib/action.php:731 msgid "TOS" msgstr "" -#: lib/action.php:730 +#: lib/action.php:734 msgid "Privacy" msgstr "" -#: lib/action.php:732 +#: lib/action.php:736 msgid "Source" msgstr "" -#: lib/action.php:734 +#: lib/action.php:738 msgid "Contact" msgstr "Επικοινωνία" -#: lib/action.php:736 +#: lib/action.php:740 msgid "Badge" msgstr "" -#: lib/action.php:764 +#: lib/action.php:768 msgid "StatusNet software license" msgstr "" -#: lib/action.php:767 +#: lib/action.php:771 #, fuzzy, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3473,13 +3792,13 @@ msgstr "" "To **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου) που " "έφερε κοντά σας το [%%site.broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:769 +#: lib/action.php:773 #, fuzzy, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" "Το **%%site.name%%** είναι μία υπηρεσία microblogging (μικρο-ιστολογίου). " -#: lib/action.php:771 +#: lib/action.php:775 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3487,34 +3806,56 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:785 +#: lib/action.php:789 msgid "Site content license" msgstr "" -#: lib/action.php:794 +#: lib/action.php:798 msgid "All " msgstr "" -#: lib/action.php:799 +#: lib/action.php:803 msgid "license." msgstr "" -#: lib/action.php:1052 +#: lib/action.php:1067 msgid "Pagination" msgstr "" -#: lib/action.php:1061 +#: lib/action.php:1076 msgid "After" msgstr "" -#: lib/action.php:1069 +#: lib/action.php:1084 msgid "Before" msgstr "" -#: lib/action.php:1117 +#: lib/action.php:1132 msgid "There was a problem with your session token." msgstr "" +#: lib/adminpanelaction.php:96 +msgid "You cannot make changes to this site." +msgstr "" + +#: lib/adminpanelaction.php:195 +msgid "showForm() not implemented." +msgstr "" + +#: lib/adminpanelaction.php:224 +msgid "saveSettings() not implemented." +msgstr "" + +#: lib/adminpanelaction.php:273 +#, fuzzy +msgid "Basic site configuration" +msgstr "Επιβεβαίωση διεύθυνσης email" + +#: lib/adminpanelaction.php:276 +#, fuzzy +msgid "Design configuration" +msgstr "Επιβεβαίωση διεύθυνσης email" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -3688,28 +4029,36 @@ msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές #: lib/command.php:620 #, fuzzy -msgid "You are subscribed to these people: " -msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." +msgstr[1] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." -#: lib/command.php:637 +#: lib/command.php:640 #, fuzzy msgid "No one is subscribed to you." msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." -#: lib/command.php:639 -msgid "These people are subscribed to you: " -msgstr "" +#: lib/command.php:642 +#, fuzzy +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." +msgstr[1] "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." -#: lib/command.php:656 +#: lib/command.php:662 #, fuzzy msgid "You are not a member of any groups." msgstr "Ομάδες με τα περισσότερα μέλη" -#: lib/command.php:658 -msgid "You are a member of these groups: " -msgstr "" +#: lib/command.php:664 +#, fuzzy +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "Ομάδες με τα περισσότερα μέλη" +msgstr[1] "Ομάδες με τα περισσότερα μέλη" -#: lib/command.php:670 +#: lib/command.php:678 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -3748,20 +4097,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:192 +#: lib/common.php:203 #, fuzzy msgid "No configuration file found. " msgstr "Ο κωδικός επιβεβαίωσης δεν βρέθηκε." -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:195 +#: lib/common.php:206 msgid "Go to the installer." msgstr "" @@ -3781,10 +4130,6 @@ msgstr "" msgid "Database error" msgstr "" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" @@ -3795,65 +4140,6 @@ 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:217 -msgid "Text" -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:372 msgid "Bad default color settings: " msgstr "" @@ -4084,12 +4370,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:235 +#: lib/mail.php:236 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "" -#: lib/mail.php:240 +#: lib/mail.php:241 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4104,17 +4390,17 @@ msgid "" "Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:253 +#: lib/mail.php:254 #, fuzzy, php-format msgid "Location: %s\n" msgstr "Τοποθεσία: %s\n" -#: lib/mail.php:255 +#: lib/mail.php:256 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Αρχική σελίδα: %s\n" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" @@ -4123,12 +4409,12 @@ msgstr "" "Βιογραφικό: %s\n" "\n" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4141,21 +4427,21 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "Κατάσταση του/της %s" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4171,12 +4457,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4195,12 +4481,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:554 +#: lib/mail.php:559 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "" -#: lib/mail.php:556 +#: lib/mail.php:561 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4221,12 +4507,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4365,7 +4651,11 @@ msgstr "" msgid "Duplicate notice" msgstr "Διαγραφή μηνύματος" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +msgid "You have been banned from subscribing." +msgstr "" + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Απέτυχε η εισαγωγή νέας συνδρομής." @@ -4381,10 +4671,6 @@ msgstr "" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" @@ -4434,6 +4720,14 @@ msgstr "Μέλος από" msgid "All groups" msgstr "" +#: lib/profileformaction.php:123 +msgid "No return-to arguments" +msgstr "" + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "Δημόσια" @@ -4454,6 +4748,15 @@ msgstr "Προτεινόμενα" msgid "Popular" msgstr "Δημοφιλή" +#: lib/sandboxform.php:67 +msgid "Sandbox" +msgstr "" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." + #: lib/searchaction.php:120 msgid "Search site" msgstr "" @@ -4490,6 +4793,15 @@ msgstr "Ενότητα χωρίς τίτλο" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +msgid "Silence" +msgstr "" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Γίνε συνδρομητής αυτού του χρήστη" + #: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" @@ -4520,28 +4832,28 @@ msgstr "" msgid "(none)" msgstr "(κανένα)" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "" -#: lib/subs.php:52 +#: lib/subs.php:56 msgid "User has blocked you." msgstr "" -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "Απέτυχε η συνδρομή." -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "Δεν επιτρέπεται να κάνεις συνδρομητές του λογαριασμού σου άλλους." -#: lib/subs.php:124 +#: lib/subs.php:128 #, fuzzy msgid "Not subscribed!" msgstr "Απέτυχε η συνδρομή." -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "Απέτυχε η διαγραφή συνδρομής." @@ -4553,6 +4865,29 @@ msgstr "Κανένα" msgid "Top posters" msgstr "Κορυφαίοι δημοσιευτές" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Αδυναμία διαγραφής αυτού του μηνύματος." + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.mo b/locale/en_GB/LC_MESSAGES/statusnet.mo index 33531f33c3c3edf8714d896207e03c7fb6803288..694b1eb90c596f695aa7a093e34ee24580aefdb6 100644 GIT binary patch delta 20004 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 diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index c65fc1c73c..fe88e922be 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -12,12 +12,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-16 19:42+0000\n" -"PO-Revision-Date: 2009-11-16 19:43:18+0000\n" +"POT-Creation-Date: 2009-11-18 19:31+0000\n" +"PO-Revision-Date: 2009-11-18 19:31:40+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(r59142); Translate extension (2009-11-13)\n" +"X-Generator: MediaWiki 1.16alpha(r59207); Translate extension (2009-11-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: out-statusnet\n" @@ -48,7 +48,7 @@ msgstr "No such page" #: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 #: lib/command.php:364 lib/command.php:411 lib/command.php:466 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 +#: lib/subs.php:34 lib/subs.php:116 msgid "No such user." msgstr "No such user." @@ -149,7 +149,8 @@ msgstr "Couldn't update user." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 #: actions/apistatusesupdate.php:127 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: actions/designadminpanel.php:125 actions/newnotice.php:94 +#: lib/designsettings.php:283 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -233,12 +234,12 @@ msgstr "All the direct messages sent to %s" #: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 #: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigrouplistall.php:120 actions/apigrouplist.php:132 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apigroupmembership.php:106 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/apitimelinegroup.php:147 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!" @@ -373,6 +374,13 @@ msgstr "Nickname already in use. Try another one." msgid "Alias can't be the same as nickname." msgstr "" +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#, fuzzy +msgid "Group not found!" +msgstr "API method not found!" + #: actions/apigroupjoin.php:110 msgid "You are already a member of that group." msgstr "You are already a member of that group." @@ -463,13 +471,13 @@ msgstr "%s / Favourites from %s" msgid "%s updates favorited by %s / %s." msgstr "%s updates favourited by %s / %s." -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s timeline" -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -557,7 +565,8 @@ msgstr "Original" msgid "Preview" msgstr "Preview" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#: actions/avatarsettings.php:148 lib/deleteuserform.php:66 +#: lib/noticelist.php:522 msgid "Delete" msgstr "Delete" @@ -569,7 +578,7 @@ msgstr "Upload" msgid "Crop" msgstr "Crop" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/avatarsettings.php:265 actions/disfavor.php:74 #: actions/emailsettings.php:237 actions/favor.php:75 #: actions/groupblock.php:66 actions/grouplogo.php:309 #: actions/groupunblock.php:66 actions/imsettings.php:206 @@ -579,7 +588,7 @@ msgstr "Crop" #: actions/profilesettings.php:187 actions/recoverpassword.php:337 #: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 +#: actions/tagother.php:166 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 lib/designsettings.php:294 msgid "There was a problem with your session token. Try again, please." msgstr "There was a problem with your session token. Try again, please." @@ -646,71 +655,50 @@ msgstr "A list of the users in this group." msgid "Unblock user from group" msgstr "Unblock user failed." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" msgstr "Unblock" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Unblock this user" -#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61 -#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87 -#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31 -#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "Not logged in." +#: actions/block.php:69 +#, fuzzy +msgid "You already blocked that user." +msgstr "You have already blocked this user." -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 -msgid "No profile specified." -msgstr "No profile specified." - -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 -msgid "No profile with that ID." -msgstr "No profile with that ID." - -#: actions/block.php:111 actions/block.php:134 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 msgid "Block user" msgstr "Block user" -#: actions/block.php:136 +#: actions/block.php:130 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/block.php:149 actions/deletenotice.php:145 -#: actions/groupblock.php:178 +#: actions/block.php:143 actions/deletenotice.php:145 +#: actions/deleteuser.php:147 actions/groupblock.php:178 msgid "No" msgstr "No" -#: actions/block.php:149 +#: actions/block.php:143 actions/deleteuser.php:147 #, fuzzy msgid "Do not block this user" msgstr "Unblock this user" -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:179 +#: actions/block.php:144 actions/deletenotice.php:146 +#: actions/deleteuser.php:148 actions/groupblock.php:179 msgid "Yes" msgstr "Yes" -#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 -#: lib/blockform.php:153 +#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 msgid "Block this user" msgstr "Block this user" -#: actions/block.php:165 -msgid "You have already blocked this user." -msgstr "You have already blocked this user." - -#: actions/block.php:170 +#: actions/block.php:162 msgid "Failed to save block information." msgstr "Failed to save block information." @@ -774,6 +762,15 @@ msgstr "Notices" msgid "No such notice." msgstr "No such notice." +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 +#: actions/unsubscribe.php:52 lib/adminpanelaction.php:72 +#: lib/profileformaction.php:63 lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Not logged in." + #: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Can't delete this notice." @@ -808,6 +805,145 @@ msgstr "Delete this notice" 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/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "Couldn't update user." + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "You may not delete another user's status." + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +#, fuzzy +msgid "Delete user" +msgstr "Delete" + +#: actions/deleteuser.php:135 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "Delete this notice" + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/adminpanelaction.php:275 lib/groupnav.php:119 +msgid "Design" +msgstr "" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "" + +#: actions/designadminpanel.php:220 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "Unable to save your design settings!" + +#: actions/designadminpanel.php:301 +#, fuzzy, php-format +msgid "Theme not available: %s" +msgstr "This page is not available in a " + +#: actions/designadminpanel.php:406 +#, fuzzy +msgid "Change theme" +msgstr "Change" + +#: actions/designadminpanel.php:410 +msgid "Theme" +msgstr "" + +#: actions/designadminpanel.php:411 +#, fuzzy +msgid "Theme for the site." +msgstr "Logout from the site" + +#: actions/designadminpanel.php:420 lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: actions/designadminpanel.php:424 actions/designadminpanel.php:498 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: actions/designadminpanel.php:429 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "You can upload a logo image for your group." + +#: actions/designadminpanel.php:459 lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: actions/designadminpanel.php:475 lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: actions/designadminpanel.php:476 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: actions/designadminpanel.php:481 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: actions/designadminpanel.php:490 lib/designsettings.php:170 +msgid "Change colours" +msgstr "Change colours" + +#: actions/designadminpanel.php:511 lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Connect" + +#: actions/designadminpanel.php:524 lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Search" + +#: actions/designadminpanel.php:537 lib/designsettings.php:217 +msgid "Text" +msgstr "Text" + +#: actions/designadminpanel.php:550 lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Login" + +#: actions/designadminpanel.php:611 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: actions/designadminpanel.php:612 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: actions/designadminpanel.php:618 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: actions/designadminpanel.php:620 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/siteadminpanel.php:371 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 actions/useradminpanel.php:226 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Save" + +#: actions/designadminpanel.php:621 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "This notice is not a favourite!" @@ -950,14 +1086,6 @@ msgstr "I want to post notices by e-mail." msgid "Publish a MicroID for my email address." msgstr "Publish a MicroID for my e-mail address." -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Save" - #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." @@ -971,7 +1099,7 @@ msgstr "No e-mail address." msgid "Cannot normalize that email address" msgstr "Cannot normalise that e-mail address" -#: actions/emailsettings.php:330 +#: actions/emailsettings.php:330 actions/siteadminpanel.php:156 msgid "Not a valid email address" msgstr "Not a valid e-mail address." @@ -1173,6 +1301,18 @@ msgstr "No such notice." msgid "Cannot read file." msgstr "Lost our file." +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +msgid "No profile specified." +msgstr "No profile specified." + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: lib/profileformaction.php:77 +msgid "No profile with that ID." +msgstr "No profile with that ID." + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 #, fuzzy @@ -1292,11 +1432,11 @@ msgstr "%s group members, page %d" msgid "A list of the users in this group." msgstr "A list of the users in this group." -#: actions/groupmembers.php:175 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:439 lib/groupnav.php:107 msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:346 lib/blockform.php:153 +#: actions/groupmembers.php:346 lib/blockform.php:69 msgid "Block" msgstr "Block" @@ -1385,7 +1525,7 @@ msgstr "" msgid "User is not blocked from group." msgstr "User has blocked you." -#: actions/groupunblock.php:128 actions/unblock.php:108 +#: actions/groupunblock.php:128 actions/unblock.php:77 msgid "Error removing the block." msgstr "Error removing the block." @@ -1692,7 +1832,7 @@ msgstr "Incorrect username or password." msgid "Error setting user." msgstr "Error setting user." -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: actions/login.php:204 actions/login.php:257 lib/action.php:457 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Login" @@ -2114,7 +2254,7 @@ msgid "" msgstr "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" -#: actions/profilesettings.php:144 +#: actions/profilesettings.php:144 actions/siteadminpanel.php:275 msgid "Language" msgstr "Language" @@ -2141,7 +2281,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Bio is too long (max 140 chars)." -#: actions/profilesettings.php:228 +#: actions/profilesettings.php:228 actions/siteadminpanel.php:163 msgid "Timezone not selected." msgstr "Timezone not selected." @@ -2166,7 +2306,7 @@ msgstr "Couldn't save profile." msgid "Couldn't save tags." msgstr "Couldn't save tags." -#: actions/profilesettings.php:344 +#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 msgid "Settings saved." msgstr "Settings saved." @@ -2403,7 +2543,7 @@ msgstr "Error with confirmation code." msgid "Registration successful" msgstr "Registration successful" -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: actions/register.php:114 actions/register.php:502 lib/action.php:454 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Register" @@ -2447,7 +2587,7 @@ msgid "Same as password above. Required." msgstr "Same as password above. Required." #: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:253 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mail" @@ -2554,7 +2694,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL of your profile on another compatible microblogging service" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 +#: lib/userprofile.php:356 msgid "Subscribe" msgstr "Subscribe" @@ -2630,6 +2770,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Message to %1$s on %2$s" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "You can't send a message to this user." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "User is already blocked from group." + #: actions/showfavorites.php:79 #, fuzzy, php-format msgid "%s's favorite notices, page %d" @@ -2875,6 +3025,145 @@ msgstr "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." "wikipedia.org/wiki/Micro-blogging) service " +#: actions/silence.php:65 actions/unsilence.php:65 +#, fuzzy +msgid "You cannot silence users on this site." +msgstr "You can't send a message to this user." + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "User is already blocked from group." + +#: actions/siteadminpanel.php:58 lib/adminpanelaction.php:272 +#, fuzzy +msgid "Site" +msgstr "Invite" + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site." +msgstr "" + +#: actions/siteadminpanel.php:145 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:153 +#, fuzzy +msgid "You must have a valid contact email address" +msgstr "Not a valid e-mail address." + +#: actions/siteadminpanel.php:171 +#, php-format +msgid "Unknown language \"%s\"" +msgstr "" + +#: actions/siteadminpanel.php:178 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/siteadminpanel.php:184 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/siteadminpanel.php:190 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/siteadminpanel.php:241 +#, fuzzy +msgid "Site name" +msgstr "Site notice" + +#: actions/siteadminpanel.php:242 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:246 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:249 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:250 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:254 +#, fuzzy +msgid "contact email address for your site" +msgstr "New e-mail address for posting to %s" + +#: actions/siteadminpanel.php:268 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:269 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:276 +#, fuzzy +msgid "Default site language" +msgstr "Preferred language" + +#: actions/siteadminpanel.php:282 +#, fuzzy +msgid "Private" +msgstr "Privacy" + +#: actions/siteadminpanel.php:284 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/siteadminpanel.php:290 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/siteadminpanel.php:291 +msgid "In a scheduled job" +msgstr "" + +#: actions/siteadminpanel.php:292 +#, fuzzy +msgid "Never" +msgstr "Recover" + +#: actions/siteadminpanel.php:294 +msgid "Data snapshots" +msgstr "" + +#: actions/siteadminpanel.php:295 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/siteadminpanel.php:301 +msgid "Frequency" +msgstr "" + +#: actions/siteadminpanel.php:302 +msgid "Snapshots will be sent once every N Web hits" +msgstr "" + +#: actions/siteadminpanel.php:309 +msgid "Report URL" +msgstr "" + +#: actions/siteadminpanel.php:310 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/siteadminpanel.php:371 actions/useradminpanel.php:226 +#, fuzzy +msgid "Save site settings" +msgstr "Avatar settings" + #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "SMS Settings" @@ -3149,6 +3438,21 @@ msgstr "No such tag." msgid "API method under construction." msgstr "API method under construction." +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "You have already blocked this user." + +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "User has blocked you." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "User has no profile." + #: actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "No profile id in request." @@ -3166,6 +3470,32 @@ msgstr "Unsubscribed" msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" +#: actions/useradminpanel.php:58 lib/personalgroupnav.php:115 +msgid "User" +msgstr "User" + +#: actions/useradminpanel.php:69 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:171 +#, fuzzy +msgid "Closed" +msgstr "Block" + +#: actions/useradminpanel.php:173 +msgid "Is registration on this site prohibited?" +msgstr "" + +#: actions/useradminpanel.php:178 +#, fuzzy +msgid "Invite-only" +msgstr "Invite" + +#: actions/useradminpanel.php:180 +msgid "Is registration on this site only open to invited users?" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Authorise subscription" @@ -3329,11 +3659,16 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: classes/Message.php:55 +#: classes/Message.php:45 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "Error sending direct message." + +#: classes/Message.php:61 msgid "Could not insert message." msgstr "Could not insert message." -#: classes/Message.php:65 +#: classes/Message.php:71 msgid "Could not update message with new URI." msgstr "Could not update message with new URI." @@ -3365,15 +3700,15 @@ msgid "" msgstr "" "Too many notices too fast; take a breather and post again in a few minutes." -#: classes/Notice.php:202 +#: classes/Notice.php:200 msgid "You are banned from posting notices on this site." msgstr "You are banned from posting notices on this site." -#: classes/Notice.php:268 classes/Notice.php:293 +#: classes/Notice.php:265 classes/Notice.php:290 msgid "Problem saving notice." msgstr "Problem saving notice." -#: classes/Notice.php:1120 +#: classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "DB error inserting reply: %s" @@ -3403,10 +3738,6 @@ msgstr "Change your password" msgid "Change email handling" msgstr "Change e-mail handling" -#: lib/accountsettingsaction.php:124 lib/groupnav.php:119 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:124 #, fuzzy msgid "Design your profile" @@ -3458,97 +3789,102 @@ msgstr "Connect" msgid "Connect to services" msgstr "Could not redirect to server: %s" -#: lib/action.php:439 lib/subgroupnav.php:105 +#: lib/action.php:439 +#, fuzzy +msgid "Change site configuration" +msgstr "Primary site navigation" + +#: lib/action.php:443 lib/subgroupnav.php:105 msgid "Invite" msgstr "Invite" -#: lib/action.php:440 lib/subgroupnav.php:106 +#: lib/action.php:444 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Invite friends and colleagues to join you on %s" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout" msgstr "Logout" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout from the site" msgstr "Logout from the site" -#: lib/action.php:450 +#: lib/action.php:454 msgid "Create an account" msgstr "Create an account" -#: lib/action.php:453 +#: lib/action.php:457 msgid "Login to the site" msgstr "Login to the site" -#: lib/action.php:456 lib/action.php:719 +#: lib/action.php:460 lib/action.php:723 msgid "Help" msgstr "Help" -#: lib/action.php:456 +#: lib/action.php:460 msgid "Help me!" msgstr "Help me!" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search" msgstr "Search" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search for people or text" msgstr "Search for people or text" -#: lib/action.php:480 +#: lib/action.php:484 msgid "Site notice" msgstr "Site notice" -#: lib/action.php:546 +#: lib/action.php:550 msgid "Local views" msgstr "Local views" -#: lib/action.php:612 +#: lib/action.php:616 msgid "Page notice" msgstr "Page notice" -#: lib/action.php:714 +#: lib/action.php:718 msgid "Secondary site navigation" msgstr "Secondary site navigation" -#: lib/action.php:721 +#: lib/action.php:725 msgid "About" msgstr "About" -#: lib/action.php:723 +#: lib/action.php:727 msgid "FAQ" msgstr "F.A.Q." -#: lib/action.php:727 +#: lib/action.php:731 msgid "TOS" msgstr "" -#: lib/action.php:730 +#: lib/action.php:734 msgid "Privacy" msgstr "Privacy" -#: lib/action.php:732 +#: lib/action.php:736 msgid "Source" msgstr "Source" -#: lib/action.php:734 +#: lib/action.php:738 msgid "Contact" msgstr "Contact" -#: lib/action.php:736 +#: lib/action.php:740 #, fuzzy msgid "Badge" msgstr "Nudge" -#: lib/action.php:764 +#: lib/action.php:768 msgid "StatusNet software license" msgstr "StatusNet software licence" -#: lib/action.php:767 +#: lib/action.php:771 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3557,12 +3893,12 @@ msgstr "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%)." -#: lib/action.php:769 +#: lib/action.php:773 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** is a microblogging service." -#: lib/action.php:771 +#: lib/action.php:775 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3573,35 +3909,60 @@ msgstr "" "s, available under the [GNU Affero General Public Licence](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:785 +#: lib/action.php:789 #, fuzzy msgid "Site content license" msgstr "StatusNet software licence" -#: lib/action.php:794 +#: lib/action.php:798 msgid "All " msgstr "All " -#: lib/action.php:799 +#: lib/action.php:803 msgid "license." msgstr "licence." -#: lib/action.php:1052 +#: lib/action.php:1067 msgid "Pagination" msgstr "Pagination" -#: lib/action.php:1061 +#: lib/action.php:1076 msgid "After" msgstr "After" -#: lib/action.php:1069 +#: lib/action.php:1084 msgid "Before" msgstr "Before" -#: lib/action.php:1117 +#: lib/action.php:1132 msgid "There was a problem with your session token." msgstr "There was a problem with your session token." +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "You can't send a message to this user." + +#: lib/adminpanelaction.php:195 +#, fuzzy +msgid "showForm() not implemented." +msgstr "Command not yet implemented." + +#: lib/adminpanelaction.php:224 +#, fuzzy +msgid "saveSettings() not implemented." +msgstr "Command not yet implemented." + +#: lib/adminpanelaction.php:273 +#, fuzzy +msgid "Basic site configuration" +msgstr "E-mail address confirmation" + +#: lib/adminpanelaction.php:276 +#, fuzzy +msgid "Design configuration" +msgstr "SMS confirmation" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -3777,30 +4138,36 @@ msgstr "You are not subscribed to that profile." #: lib/command.php:620 #, fuzzy -msgid "You are subscribed to these people: " -msgstr "You are not subscribed to that profile." +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "You are not subscribed to that profile." +msgstr[1] "You are not subscribed to that profile." -#: lib/command.php:637 +#: lib/command.php:640 #, fuzzy msgid "No one is subscribed to you." msgstr "Could not subscribe other to you." -#: lib/command.php:639 +#: lib/command.php:642 #, fuzzy -msgid "These people are subscribed to you: " -msgstr "People subscribed to %s" +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "Could not subscribe other to you." +msgstr[1] "Could not subscribe other to you." -#: lib/command.php:656 +#: lib/command.php:662 #, fuzzy msgid "You are not a member of any groups." msgstr "You are not a member of that group." -#: lib/command.php:658 +#: lib/command.php:664 #, fuzzy -msgid "You are a member of these groups: " -msgstr "You are not a member of that group." +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "You are not a member of that group." +msgstr[1] "You are not a member of that group." -#: lib/command.php:670 +#: lib/command.php:678 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -3839,19 +4206,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:192 +#: lib/common.php:203 msgid "No configuration file found. " msgstr "No configuration file found" -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:195 +#: lib/common.php:206 #, fuzzy msgid "Go to the installer." msgstr "Login to the site" @@ -3872,10 +4239,6 @@ msgstr "Updates by SMS" msgid "Database error" msgstr "" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" @@ -3886,65 +4249,6 @@ 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 "Change colours" - -#: 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:217 -msgid "Text" -msgstr "Text" - -#: 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:372 msgid "Bad default color settings: " msgstr "Bad default colour settings: " @@ -4173,12 +4477,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:235 +#: lib/mail.php:236 #, 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." -#: lib/mail.php:240 +#: lib/mail.php:241 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4199,17 +4503,17 @@ msgstr "" "Faithfully yours,\n" "%4$s.\n" -#: lib/mail.php:253 +#: lib/mail.php:254 #, php-format msgid "Location: %s\n" msgstr "Location: %s\n" -#: lib/mail.php:255 +#: lib/mail.php:256 #, php-format msgid "Homepage: %s\n" msgstr "Homepage: %s\n" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" @@ -4218,12 +4522,12 @@ msgstr "" "Bio: %s\n" "\n" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "New e-mail address for posting to %s" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4244,21 +4548,21 @@ msgstr "" "Faithfully yours,\n" "%4$s" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "%s status" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "SMS confirmation" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "You've been nudged by %s" -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4274,12 +4578,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "New private message from %s" -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4298,12 +4602,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:554 +#: lib/mail.php:559 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s added your notice as a favourite" -#: lib/mail.php:556 +#: lib/mail.php:561 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4324,12 +4628,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4466,7 +4770,12 @@ msgstr "Error inserting remote profile." msgid "Duplicate notice" msgstr "Delete notice" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "That user has blocked you from subscribing." + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Couldn't insert new subscription." @@ -4482,10 +4791,6 @@ msgstr "Replies" msgid "Favorites" msgstr "Favourites" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "User" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Inbox" @@ -4536,6 +4841,15 @@ msgstr "Member since" msgid "All groups" msgstr "All groups" +#: lib/profileformaction.php:123 +#, fuzzy +msgid "No return-to arguments" +msgstr "No id argument." + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "Public" @@ -4556,6 +4870,16 @@ msgstr "Featured" msgid "Popular" msgstr "Popular" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "Inbox" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Unblock this user" + #: lib/searchaction.php:120 #, fuzzy msgid "Search site" @@ -4594,6 +4918,16 @@ msgstr "Untitled section" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Site notice" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Block this user" + #: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" @@ -4623,28 +4957,28 @@ msgstr "" msgid "(none)" msgstr "(none)" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "" -#: lib/subs.php:52 +#: lib/subs.php:56 msgid "User has blocked you." msgstr "User has blocked you." -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "Could not subscribe." -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "Could not subscribe other to you." -#: lib/subs.php:124 +#: lib/subs.php:128 #, fuzzy msgid "Not subscribed!" msgstr "Not subscribed!" -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "Couldn't delete subscription." @@ -4656,6 +4990,29 @@ msgstr "None" msgid "Top posters" msgstr "Top posters" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "Unblock this user" + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Unblock this user" + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Unblock this user" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Unsubscribe from this user" @@ -4757,3 +5114,7 @@ msgstr "Sorry, that is not your incoming e-mail address." #: scripts/maildaemon.php:61 msgid "Sorry, no incoming email allowed." msgstr "Sorry, no incoming e-mail allowed." + +#, fuzzy +#~ msgid "These people are subscribed to you: " +#~ msgstr "People subscribed to %s" diff --git a/locale/es/LC_MESSAGES/statusnet.mo b/locale/es/LC_MESSAGES/statusnet.mo index 7bc7cf1b6140f09c4c700673abba5715c718b840..4c0463da5a6d6c0b9907ef1f1f2e7e468b862ae3 100644 GIT binary patch delta 19876 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 Xl-Rj{$K-yA-m0g{&Ka1~Rp);ICpZYY diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index aa34e255cb..54fb75f3d6 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -13,12 +13,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-16 19:42+0000\n" -"PO-Revision-Date: 2009-11-16 19:43:21+0000\n" +"POT-Creation-Date: 2009-11-18 19:31+0000\n" +"PO-Revision-Date: 2009-11-18 19:31:43+0000\n" "Language-Team: Spanish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\n" +"X-Generator: MediaWiki 1.16alpha(r59207); Translate extension (2009-11-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: out-statusnet\n" @@ -49,7 +49,7 @@ msgstr "No existe tal página" #: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 #: lib/command.php:364 lib/command.php:411 lib/command.php:466 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 +#: lib/subs.php:34 lib/subs.php:116 msgid "No such user." msgstr "No existe ese usuario." @@ -151,7 +151,8 @@ msgstr "No se pudo actualizar el usuario." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 #: actions/apistatusesupdate.php:127 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: actions/designadminpanel.php:125 actions/newnotice.php:94 +#: lib/designsettings.php:283 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -239,12 +240,12 @@ msgstr "Todos los mensajes directos enviados a %s" #: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 #: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigrouplistall.php:120 actions/apigrouplist.php:132 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apigroupmembership.php:106 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/apitimelinegroup.php:147 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!" @@ -387,6 +388,13 @@ msgstr "El apodo ya existe. Prueba otro." msgid "Alias can't be the same as nickname." msgstr "" +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#, fuzzy +msgid "Group not found!" +msgstr "¡No se encontró el método de la API!" + #: actions/apigroupjoin.php:110 msgid "You are already a member of that group." msgstr "Ya eres miembro de ese grupo" @@ -474,13 +482,13 @@ msgstr "%s / Favoritos desde %s" msgid "%s updates favorited by %s / %s." msgstr "%s actualizaciones favoritas por %s / %s." -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "línea temporal de %s" -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -569,7 +577,8 @@ msgstr "Original" msgid "Preview" msgstr "Vista previa" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#: actions/avatarsettings.php:148 lib/deleteuserform.php:66 +#: lib/noticelist.php:522 msgid "Delete" msgstr "Borrar" @@ -581,7 +590,7 @@ msgstr "Cargar" msgid "Crop" msgstr "Cortar" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/avatarsettings.php:265 actions/disfavor.php:74 #: actions/emailsettings.php:237 actions/favor.php:75 #: actions/groupblock.php:66 actions/grouplogo.php:309 #: actions/groupunblock.php:66 actions/imsettings.php:206 @@ -591,7 +600,7 @@ msgstr "Cortar" #: actions/profilesettings.php:187 actions/recoverpassword.php:337 #: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 +#: actions/tagother.php:166 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 lib/designsettings.php:294 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -659,72 +668,51 @@ msgstr "Lista de los usuarios en este grupo." msgid "Unblock user from group" msgstr "Falló desbloquear usuario." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" msgstr "Desbloquear" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Desbloquear este usuario" -#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61 -#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87 -#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31 -#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "No conectado." +#: actions/block.php:69 +#, fuzzy +msgid "You already blocked that user." +msgstr "Ya has bloqueado este usuario." -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 -msgid "No profile specified." -msgstr "No se especificó perfil." - -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 -msgid "No profile with that ID." -msgstr "No existe perfil con ese ID" - -#: actions/block.php:111 actions/block.php:134 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 msgid "Block user" msgstr "Bloquear usuario." -#: actions/block.php:136 +#: actions/block.php:130 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/block.php:149 actions/deletenotice.php:145 -#: actions/groupblock.php:178 +#: actions/block.php:143 actions/deletenotice.php:145 +#: actions/deleteuser.php:147 actions/groupblock.php:178 msgid "No" msgstr "No" -#: actions/block.php:149 +#: actions/block.php:143 actions/deleteuser.php:147 #, fuzzy msgid "Do not block this user" msgstr "Desbloquear este usuario" -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:179 +#: actions/block.php:144 actions/deletenotice.php:146 +#: actions/deleteuser.php:148 actions/groupblock.php:179 msgid "Yes" msgstr "Sí" -#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 -#: lib/blockform.php:153 +#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquear este usuario." -#: actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Ya has bloqueado este usuario." - -#: actions/block.php:170 +#: actions/block.php:162 msgid "Failed to save block information." msgstr "No se guardó información de bloqueo." @@ -789,6 +777,15 @@ msgstr "Avisos" msgid "No such notice." msgstr "No existe ese aviso." +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 +#: actions/unsubscribe.php:52 lib/adminpanelaction.php:72 +#: lib/profileformaction.php:63 lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "No conectado." + #: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "No se puede eliminar este aviso." @@ -825,6 +822,143 @@ 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/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "No se pudo actualizar el usuario." + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "No puedes borrar el estado de otro usuario." + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +#, fuzzy +msgid "Delete user" +msgstr "Borrar" + +#: actions/deleteuser.php:135 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "Borrar este aviso" + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/adminpanelaction.php:275 lib/groupnav.php:119 +msgid "Design" +msgstr "" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "" + +#: actions/designadminpanel.php:220 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "¡No se pudo guardar tu configuración de Twitter!" + +#: actions/designadminpanel.php:301 +#, fuzzy, php-format +msgid "Theme not available: %s" +msgstr "Esta página no está disponible en un " + +#: actions/designadminpanel.php:406 +#, fuzzy +msgid "Change theme" +msgstr "Cambiar" + +#: actions/designadminpanel.php:410 +msgid "Theme" +msgstr "" + +#: actions/designadminpanel.php:411 +#, fuzzy +msgid "Theme for the site." +msgstr "Salir de sitio" + +#: actions/designadminpanel.php:420 lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: actions/designadminpanel.php:424 actions/designadminpanel.php:498 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: actions/designadminpanel.php:429 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "Puedes cargar una imagen de logo para tu grupo." + +#: actions/designadminpanel.php:459 lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: actions/designadminpanel.php:475 lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: actions/designadminpanel.php:476 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: actions/designadminpanel.php:481 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: actions/designadminpanel.php:490 lib/designsettings.php:170 +msgid "Change colours" +msgstr "Cambiar colores" + +#: actions/designadminpanel.php:511 lib/designsettings.php:191 +msgid "Content" +msgstr "Contenido" + +#: actions/designadminpanel.php:524 lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Buscar" + +#: actions/designadminpanel.php:537 lib/designsettings.php:217 +msgid "Text" +msgstr "Texto" + +#: actions/designadminpanel.php:550 lib/designsettings.php:230 +msgid "Links" +msgstr "Vínculos" + +#: actions/designadminpanel.php:611 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: actions/designadminpanel.php:612 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: actions/designadminpanel.php:618 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: actions/designadminpanel.php:620 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/siteadminpanel.php:371 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 actions/useradminpanel.php:226 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Guardar" + +#: actions/designadminpanel.php:621 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "¡Este aviso no es un favorito!" @@ -971,14 +1105,6 @@ msgstr "Deseo enviar estados por email" msgid "Publish a MicroID for my email address." msgstr "Publicar un MicroID para mi dirección de correo." -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Guardar" - #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." @@ -992,7 +1118,7 @@ msgstr "Sin dirección de correo electrónico" msgid "Cannot normalize that email address" msgstr "No se puede normalizar esta dirección de correo electrónico." -#: actions/emailsettings.php:330 +#: actions/emailsettings.php:330 actions/siteadminpanel.php:156 msgid "Not a valid email address" msgstr "No es una dirección de correo electrónico válida" @@ -1196,6 +1322,18 @@ msgstr "No existe ese aviso." msgid "Cannot read file." msgstr "Se perdió nuestro archivo" +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +msgid "No profile specified." +msgstr "No se especificó perfil." + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: lib/profileformaction.php:77 +msgid "No profile with that ID." +msgstr "No existe perfil con ese ID" + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 #, fuzzy @@ -1320,11 +1458,11 @@ msgstr "Miembros del grupo %s, página %d" msgid "A list of the users in this group." msgstr "Lista de los usuarios en este grupo." -#: actions/groupmembers.php:175 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:439 lib/groupnav.php:107 msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:346 lib/blockform.php:153 +#: actions/groupmembers.php:346 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" @@ -1414,7 +1552,7 @@ msgstr "" msgid "User is not blocked from group." msgstr "El usuario te ha bloqueado." -#: actions/groupunblock.php:128 actions/unblock.php:108 +#: actions/groupunblock.php:128 actions/unblock.php:77 #, fuzzy msgid "Error removing the block." msgstr "Error al sacar bloqueo." @@ -1729,7 +1867,7 @@ msgstr "Nombre de usuario o contraseña incorrectos." msgid "Error setting user." msgstr "Error al configurar el usuario." -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: actions/login.php:204 actions/login.php:257 lib/action.php:457 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Inicio de sesión" @@ -2163,7 +2301,7 @@ 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 +#: actions/profilesettings.php:144 actions/siteadminpanel.php:275 msgid "Language" msgstr "Idioma" @@ -2191,7 +2329,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "La biografía es demasiado larga (máx. 140 caracteres)." -#: actions/profilesettings.php:228 +#: actions/profilesettings.php:228 actions/siteadminpanel.php:163 msgid "Timezone not selected." msgstr "Zona horaria no seleccionada" @@ -2217,7 +2355,7 @@ msgstr "No se pudo guardar el perfil." msgid "Couldn't save tags." msgstr "No se pudo guardar tags." -#: actions/profilesettings.php:344 +#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 msgid "Settings saved." msgstr "Se guardó configuración." @@ -2459,7 +2597,7 @@ msgstr "Error con el código de confirmación." msgid "Registration successful" msgstr "Registro exitoso." -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: actions/register.php:114 actions/register.php:502 lib/action.php:454 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrarse" @@ -2505,7 +2643,7 @@ msgid "Same as password above. Required." msgstr "Igual a la contraseña de arriba. Requerida" #: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:253 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Correo electrónico" @@ -2614,7 +2752,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "El URL de tu perfil en otro servicio de microblogueo compatible" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 +#: lib/userprofile.php:356 msgid "Subscribe" msgstr "Suscribirse" @@ -2690,6 +2828,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Respuestas a %1$s en %2$s!" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "No puedes enviar mensaje a este usuario." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "El usuario te ha bloqueado." + #: actions/showfavorites.php:79 #, fuzzy, php-format msgid "%s's favorite notices, page %d" @@ -2937,6 +3085,145 @@ msgstr "" "**%s** tiene una cuenta en %%%%site.name%%%%, un servicio [micro-blogging]" "(http://en.wikipedia.org/wiki/Micro-blogging) " +#: actions/silence.php:65 actions/unsilence.php:65 +#, fuzzy +msgid "You cannot silence users on this site." +msgstr "No puedes enviar mensaje a este usuario." + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "El usuario te ha bloqueado." + +#: actions/siteadminpanel.php:58 lib/adminpanelaction.php:272 +#, fuzzy +msgid "Site" +msgstr "Invitar" + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site." +msgstr "" + +#: actions/siteadminpanel.php:145 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:153 +#, fuzzy +msgid "You must have a valid contact email address" +msgstr "No es una dirección de correo electrónico válida" + +#: actions/siteadminpanel.php:171 +#, php-format +msgid "Unknown language \"%s\"" +msgstr "" + +#: actions/siteadminpanel.php:178 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/siteadminpanel.php:184 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/siteadminpanel.php:190 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/siteadminpanel.php:241 +#, fuzzy +msgid "Site name" +msgstr "Aviso de sitio" + +#: actions/siteadminpanel.php:242 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:246 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:249 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:250 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:254 +#, fuzzy +msgid "contact email address for your site" +msgstr "Nueva dirección de correo para postear a %s" + +#: actions/siteadminpanel.php:268 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:269 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:276 +#, fuzzy +msgid "Default site language" +msgstr "Lenguaje de preferencia" + +#: actions/siteadminpanel.php:282 +#, fuzzy +msgid "Private" +msgstr "Privacidad" + +#: actions/siteadminpanel.php:284 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/siteadminpanel.php:290 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/siteadminpanel.php:291 +msgid "In a scheduled job" +msgstr "" + +#: actions/siteadminpanel.php:292 +#, fuzzy +msgid "Never" +msgstr "Recuperar" + +#: actions/siteadminpanel.php:294 +msgid "Data snapshots" +msgstr "" + +#: actions/siteadminpanel.php:295 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/siteadminpanel.php:301 +msgid "Frequency" +msgstr "" + +#: actions/siteadminpanel.php:302 +msgid "Snapshots will be sent once every N Web hits" +msgstr "" + +#: actions/siteadminpanel.php:309 +msgid "Report URL" +msgstr "" + +#: actions/siteadminpanel.php:310 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/siteadminpanel.php:371 actions/useradminpanel.php:226 +#, fuzzy +msgid "Save site settings" +msgstr "Configuración de Avatar" + #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "Preferencias SMS" @@ -3219,6 +3506,21 @@ msgstr "No existe ese tag." msgid "API method under construction." msgstr "Método API en construcción." +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "Ya has bloqueado este usuario." + +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "El usuario te ha bloqueado." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "El usuario no tiene un perfil." + #: actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." @@ -3237,6 +3539,32 @@ msgstr "Desuscrito" msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" +#: actions/useradminpanel.php:58 lib/personalgroupnav.php:115 +msgid "User" +msgstr "Usuario" + +#: actions/useradminpanel.php:69 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:171 +#, fuzzy +msgid "Closed" +msgstr "Bloqueado" + +#: actions/useradminpanel.php:173 +msgid "Is registration on this site prohibited?" +msgstr "" + +#: actions/useradminpanel.php:178 +#, fuzzy +msgid "Invite-only" +msgstr "Invitar" + +#: actions/useradminpanel.php:180 +msgid "Is registration on this site only open to invited users?" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizar la suscripción" @@ -3401,11 +3729,16 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: classes/Message.php:55 +#: classes/Message.php:45 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "Error al enviar mensaje directo." + +#: classes/Message.php:61 msgid "Could not insert message." msgstr "No se pudo insertar mensaje." -#: classes/Message.php:65 +#: classes/Message.php:71 msgid "Could not update message with new URI." msgstr "No se pudo actualizar mensaje con nuevo URI." @@ -3440,15 +3773,15 @@ msgstr "" "Demasiados avisos demasiado rápido; para y publicar nuevamente en unos " "minutos." -#: classes/Notice.php:202 +#: classes/Notice.php:200 msgid "You are banned from posting notices on this site." msgstr "Tienes prohibido publicar avisos en este sitio." -#: classes/Notice.php:268 classes/Notice.php:293 +#: classes/Notice.php:265 classes/Notice.php:290 msgid "Problem saving notice." msgstr "Hubo un problema al guardar el aviso." -#: classes/Notice.php:1120 +#: classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Error de BD al insertar respuesta: %s" @@ -3478,10 +3811,6 @@ msgstr "Cambia tu contraseña" msgid "Change email handling" msgstr "Cambiar el manejo del correo." -#: lib/accountsettingsaction.php:124 lib/groupnav.php:119 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:124 msgid "Design your profile" msgstr "Diseñar tu perfil" @@ -3534,99 +3863,104 @@ msgstr "Conectarse" msgid "Connect to services" msgstr "No se pudo redirigir al servidor: %s" -#: lib/action.php:439 lib/subgroupnav.php:105 +#: lib/action.php:439 +#, fuzzy +msgid "Change site configuration" +msgstr "Navegación de sitio primario" + +#: lib/action.php:443 lib/subgroupnav.php:105 msgid "Invite" msgstr "Invitar" -#: lib/action.php:440 lib/subgroupnav.php:106 +#: lib/action.php:444 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Invita a amigos y colegas a unirse a %s" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout" msgstr "Salir" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout from the site" msgstr "Salir de sitio" -#: lib/action.php:450 +#: lib/action.php:454 #, fuzzy msgid "Create an account" msgstr "Crear una cuenta" -#: lib/action.php:453 +#: lib/action.php:457 msgid "Login to the site" msgstr "Ingresar a sitio" -#: lib/action.php:456 lib/action.php:719 +#: lib/action.php:460 lib/action.php:723 msgid "Help" msgstr "Ayuda" -#: lib/action.php:456 +#: lib/action.php:460 msgid "Help me!" msgstr "Ayúdame!" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search" msgstr "Buscar" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search for people or text" msgstr "Buscar personas o texto" -#: lib/action.php:480 +#: lib/action.php:484 msgid "Site notice" msgstr "Aviso de sitio" -#: lib/action.php:546 +#: lib/action.php:550 msgid "Local views" msgstr "Vistas locales" -#: lib/action.php:612 +#: lib/action.php:616 #, fuzzy msgid "Page notice" msgstr "Aviso de página" -#: lib/action.php:714 +#: lib/action.php:718 msgid "Secondary site navigation" msgstr "Navegación de sitio secundario" -#: lib/action.php:721 +#: lib/action.php:725 msgid "About" msgstr "Acerca de" -#: lib/action.php:723 +#: lib/action.php:727 msgid "FAQ" msgstr "Preguntas Frecuentes" -#: lib/action.php:727 +#: lib/action.php:731 msgid "TOS" msgstr "" -#: lib/action.php:730 +#: lib/action.php:734 msgid "Privacy" msgstr "Privacidad" -#: lib/action.php:732 +#: lib/action.php:736 msgid "Source" msgstr "Fuente" -#: lib/action.php:734 +#: lib/action.php:738 msgid "Contact" msgstr "Ponerse en contacto" -#: lib/action.php:736 +#: lib/action.php:740 #, fuzzy msgid "Badge" msgstr "Zumbido " -#: lib/action.php:764 +#: lib/action.php:768 msgid "StatusNet software license" msgstr "Licencia de software de StatusNet" -#: lib/action.php:767 +#: lib/action.php:771 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3635,12 +3969,12 @@ msgstr "" "**%%site.name%%** es un servicio de microblogueo de [%%site.broughtby%%**](%%" "site.broughtbyurl%%)." -#: lib/action.php:769 +#: lib/action.php:773 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** es un servicio de microblogueo." -#: lib/action.php:771 +#: lib/action.php:775 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3651,35 +3985,60 @@ msgstr "" "disponible bajo la [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)." -#: lib/action.php:785 +#: lib/action.php:789 #, fuzzy msgid "Site content license" msgstr "Licencia de software de StatusNet" -#: lib/action.php:794 +#: lib/action.php:798 msgid "All " msgstr "Todo" -#: lib/action.php:799 +#: lib/action.php:803 msgid "license." msgstr "Licencia." -#: lib/action.php:1052 +#: lib/action.php:1067 msgid "Pagination" msgstr "Paginación" -#: lib/action.php:1061 +#: lib/action.php:1076 msgid "After" msgstr "Después" -#: lib/action.php:1069 +#: lib/action.php:1084 msgid "Before" msgstr "Antes" -#: lib/action.php:1117 +#: lib/action.php:1132 msgid "There was a problem with your session token." msgstr "Hubo problemas con tu clave de sesión." +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "No puedes enviar mensaje a este usuario." + +#: lib/adminpanelaction.php:195 +#, fuzzy +msgid "showForm() not implemented." +msgstr "Todavía no se implementa comando." + +#: lib/adminpanelaction.php:224 +#, fuzzy +msgid "saveSettings() not implemented." +msgstr "Todavía no se implementa comando." + +#: lib/adminpanelaction.php:273 +#, fuzzy +msgid "Basic site configuration" +msgstr "Confirmación de correo electrónico" + +#: lib/adminpanelaction.php:276 +#, fuzzy +msgid "Design configuration" +msgstr "SMS confirmación" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -3855,30 +4214,36 @@ msgstr "No estás suscrito a ese perfil." #: lib/command.php:620 #, fuzzy -msgid "You are subscribed to these people: " -msgstr "No estás suscrito a ese perfil." +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "No estás suscrito a ese perfil." +msgstr[1] "No estás suscrito a ese perfil." -#: lib/command.php:637 +#: lib/command.php:640 #, fuzzy msgid "No one is subscribed to you." msgstr "No se pudo suscribir otro a ti." -#: lib/command.php:639 +#: lib/command.php:642 #, fuzzy -msgid "These people are subscribed to you: " -msgstr "Personas suscritas a %s" +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "No se pudo suscribir otro a ti." +msgstr[1] "No se pudo suscribir otro a ti." -#: lib/command.php:656 +#: lib/command.php:662 #, fuzzy msgid "You are not a member of any groups." msgstr "No eres miembro de ese grupo" -#: lib/command.php:658 +#: lib/command.php:664 #, fuzzy -msgid "You are a member of these groups: " -msgstr "No eres miembro de este grupo." +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "No eres miembro de este grupo." +msgstr[1] "No eres miembro de este grupo." -#: lib/command.php:670 +#: lib/command.php:678 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -3917,19 +4282,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:192 +#: lib/common.php:203 msgid "No configuration file found. " msgstr "Ningún archivo de configuración encontrado. " -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:195 +#: lib/common.php:206 msgid "Go to the installer." msgstr "Ir al instalador." @@ -3949,10 +4314,6 @@ msgstr "Actualizaciones por sms" msgid "Database error" msgstr "" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 msgid "Upload file" msgstr "Cargar archivo" @@ -3962,63 +4323,6 @@ 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 "Cambiar colores" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "" - -#: lib/designsettings.php:191 -msgid "Content" -msgstr "Contenido" - -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "Buscar" - -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Texto" - -#: lib/designsettings.php:230 -msgid "Links" -msgstr "Vínculos" - -#: 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:372 msgid "Bad default color settings: " msgstr "" @@ -4252,12 +4556,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:235 +#: lib/mail.php:236 #, 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" -#: lib/mail.php:240 +#: lib/mail.php:241 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4278,17 +4582,17 @@ msgstr "" "Atentamente,\n" "%4$s.\n" -#: lib/mail.php:253 +#: lib/mail.php:254 #, php-format msgid "Location: %s\n" msgstr "Ubicación: %s\n" -#: lib/mail.php:255 +#: lib/mail.php:256 #, php-format msgid "Homepage: %s\n" msgstr "Página de inicio: %s\n" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" @@ -4297,12 +4601,12 @@ msgstr "" "Bio: %s\n" "\n" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "Nueva dirección de correo para postear a %s" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4323,21 +4627,21 @@ msgstr "" "Attentamente, \n" "%4$s" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "estado de %s" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "SMS confirmación" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "%s te mandó un zumbido " -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4353,12 +4657,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "Nuevo mensaje privado de %s" -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4377,12 +4681,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:554 +#: lib/mail.php:559 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) agregó tu aviso como un favorito" -#: lib/mail.php:556 +#: lib/mail.php:561 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4403,12 +4707,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4546,7 +4850,12 @@ msgstr "Error al insertar perfil remoto" msgid "Duplicate notice" msgstr "Duplicar aviso" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Ese usuario te ha bloqueado la suscripción." + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "No se pudo insertar una nueva suscripción." @@ -4562,10 +4871,6 @@ msgstr "Respuestas" msgid "Favorites" msgstr "Favoritos" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Usuario" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Bandeja de Entrada" @@ -4616,6 +4921,15 @@ msgstr "Miembro desde" msgid "All groups" msgstr "Todos los grupos" +#: lib/profileformaction.php:123 +#, fuzzy +msgid "No return-to arguments" +msgstr "No existe argumento de ID." + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "Público" @@ -4636,6 +4950,16 @@ msgstr "Destacado" msgid "Popular" msgstr "Popular" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "Bandeja de Entrada" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Desbloquear este usuario" + #: lib/searchaction.php:120 #, fuzzy msgid "Search site" @@ -4674,6 +4998,16 @@ msgstr "Sección sin título" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Aviso de sitio" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Bloquear este usuario." + #: lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" @@ -4703,28 +5037,28 @@ msgstr "" msgid "(none)" msgstr "(ninguno)" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "" -#: lib/subs.php:52 +#: lib/subs.php:56 msgid "User has blocked you." msgstr "El usuario te ha bloqueado." -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "No se pudo suscribir." -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "No se pudo suscribir otro a ti." -#: lib/subs.php:124 +#: lib/subs.php:128 #, fuzzy msgid "Not subscribed!" msgstr "¡No estás suscrito!" -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "No se pudo eliminar la suscripción." @@ -4736,6 +5070,29 @@ msgstr "Ninguno" msgid "Top posters" msgstr "Principales posteadores" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "Desbloquear este usuario" + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Desbloquear este usuario" + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Desbloquear este usuario" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Desuscribirse de este usuario" @@ -4840,3 +5197,7 @@ msgstr "Lo sentimos, pero este no es su dirección de correo entrante." #: scripts/maildaemon.php:61 msgid "Sorry, no incoming email allowed." msgstr "Lo sentimos, pero no se permite correos entrantes" + +#, fuzzy +#~ msgid "These people are subscribed to you: " +#~ msgstr "Personas suscritas a %s" diff --git a/locale/fi/LC_MESSAGES/statusnet.mo b/locale/fi/LC_MESSAGES/statusnet.mo index 14026dc1ead6db301d9f781b2378fc1f1ea1459f..8c3399f7185899fc3b7aac0429eeb6af466a4192 100644 GIT binary patch delta 20561 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 z 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 delta 18499 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 diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 62ffbe99fd..3cf6033a4b 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-16 19:42+0000\n" -"PO-Revision-Date: 2009-11-16 19:43:27+0000\n" +"POT-Creation-Date: 2009-11-18 19:31+0000\n" +"PO-Revision-Date: 2009-11-18 19:31:52+0000\n" "Language-Team: French\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\n" +"X-Generator: MediaWiki 1.16alpha(r59207); Translate extension (2009-11-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: out-statusnet\n" @@ -46,7 +46,7 @@ msgstr "Page non trouvée" #: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 #: lib/command.php:364 lib/command.php:411 lib/command.php:466 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 +#: lib/subs.php:34 lib/subs.php:116 msgid "No such user." msgstr "Utilisateur non trouvé." @@ -150,7 +150,8 @@ msgstr "Impossible de mettre à jour l’utilisateur." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 #: actions/apistatusesupdate.php:127 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: actions/designadminpanel.php:125 actions/newnotice.php:94 +#: lib/designsettings.php:283 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -235,12 +236,12 @@ msgstr "Tous les messages envoyés à %s" #: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 #: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigrouplistall.php:120 actions/apigrouplist.php:132 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apigroupmembership.php:106 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/apitimelinegroup.php:147 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!" @@ -375,6 +376,13 @@ msgstr "Alias « %s » déjà utilisé. Essayez-en un autre." msgid "Alias can't be the same as nickname." msgstr "L’alias ne peut pas être le même que le pseudo." +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#, fuzzy +msgid "Group not found!" +msgstr "Méthode API non trouvée !" + #: actions/apigroupjoin.php:110 msgid "You are already a member of that group." msgstr "Vous êtes déjà membre de ce groupe." @@ -464,13 +472,13 @@ msgstr "%s / Favoris de %s" msgid "%s updates favorited by %s / %s." msgstr "%s statuts ont été ajoutés aux favoris de %s / %s." -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Activité de %s" -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -559,7 +567,8 @@ msgstr "Image originale" msgid "Preview" msgstr "Aperçu" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#: actions/avatarsettings.php:148 lib/deleteuserform.php:66 +#: lib/noticelist.php:522 msgid "Delete" msgstr "Supprimer" @@ -571,7 +580,7 @@ msgstr "Transfert" msgid "Crop" msgstr "Recadrer" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/avatarsettings.php:265 actions/disfavor.php:74 #: actions/emailsettings.php:237 actions/favor.php:75 #: actions/groupblock.php:66 actions/grouplogo.php:309 #: actions/groupunblock.php:66 actions/imsettings.php:206 @@ -581,7 +590,7 @@ msgstr "Recadrer" #: actions/profilesettings.php:187 actions/recoverpassword.php:337 #: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 +#: actions/tagother.php:166 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 lib/designsettings.php:294 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -647,40 +656,24 @@ msgstr "Une liste des utilisateurs dont l’inscription à ce groupe est bloqué msgid "Unblock user from group" msgstr "Débloquer l’utilisateur du groupe" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" msgstr "Débloquer" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Débloquer cet utilisateur" -#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61 -#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87 -#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31 -#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "Non connecté." +#: actions/block.php:69 +#, fuzzy +msgid "You already blocked that user." +msgstr "Vous avez déjà bloqué cet utilisateur." -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 -msgid "No profile specified." -msgstr "Aucun profil n’a été spécifié." - -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 -msgid "No profile with that ID." -msgstr "Aucun profil ne correspond à cet identifiant." - -#: actions/block.php:111 actions/block.php:134 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 msgid "Block user" msgstr "Bloquer cet utilisateur" -#: actions/block.php:136 +#: actions/block.php:130 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 " @@ -690,30 +683,25 @@ msgstr "" "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/block.php:149 actions/deletenotice.php:145 -#: actions/groupblock.php:178 +#: actions/block.php:143 actions/deletenotice.php:145 +#: actions/deleteuser.php:147 actions/groupblock.php:178 msgid "No" msgstr "Non" -#: actions/block.php:149 +#: actions/block.php:143 actions/deleteuser.php:147 msgid "Do not block this user" msgstr "Ne pas bloquer cet utilisateur" -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:179 +#: actions/block.php:144 actions/deletenotice.php:146 +#: actions/deleteuser.php:148 actions/groupblock.php:179 msgid "Yes" msgstr "Oui" -#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 -#: lib/blockform.php:153 +#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 msgid "Block this user" msgstr "Bloquer cet utilisateur" -#: actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Vous avez déjà bloqué cet utilisateur." - -#: actions/block.php:170 +#: actions/block.php:162 msgid "Failed to save block information." msgstr "Impossible d’enregistrer les informations de blocage." @@ -777,6 +765,15 @@ msgstr "Statuts" msgid "No such notice." msgstr "Statut non trouvé." +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 +#: actions/unsubscribe.php:52 lib/adminpanelaction.php:72 +#: lib/profileformaction.php:63 lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Non connecté." + #: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Impossible de supprimer ce statut." @@ -811,6 +808,144 @@ msgstr "" "Un problème est survenu avec votre jeton de session. Veuillez essayer à " "nouveau." +#: actions/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "Impossible de mettre à jour l’utilisateur." + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "Vous ne pouvez pas supprimer le statut d’un autre utilisateur." + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +#, fuzzy +msgid "Delete user" +msgstr "Supprimer" + +#: actions/deleteuser.php:135 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "Supprimer ce statut" + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/adminpanelaction.php:275 lib/groupnav.php:119 +msgid "Design" +msgstr "Conception" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "" + +#: actions/designadminpanel.php:220 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "Impossible de sauvegarder les parmètres de la conception." + +#: actions/designadminpanel.php:301 +#, fuzzy, php-format +msgid "Theme not available: %s" +msgstr "La messagerie instantanée n’est pas disponible." + +#: actions/designadminpanel.php:406 +#, fuzzy +msgid "Change theme" +msgstr "Modifier" + +#: actions/designadminpanel.php:410 +msgid "Theme" +msgstr "" + +#: actions/designadminpanel.php:411 +#, fuzzy +msgid "Theme for the site." +msgstr "Fermer la session" + +#: actions/designadminpanel.php:420 lib/designsettings.php:101 +msgid "Change background image" +msgstr "Changer l’image d’arrière plan" + +#: actions/designadminpanel.php:424 actions/designadminpanel.php:498 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "Arrière plan" + +#: actions/designadminpanel.php:429 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "" +"Vous pouvez choisir un logo pour votre groupe. La taille maximale du fichier " +"est de %s." + +#: actions/designadminpanel.php:459 lib/designsettings.php:139 +msgid "On" +msgstr "Activé" + +#: actions/designadminpanel.php:475 lib/designsettings.php:155 +msgid "Off" +msgstr "Désactivé" + +#: actions/designadminpanel.php:476 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "Activer ou désactiver l’image d’arrière plan." + +#: actions/designadminpanel.php:481 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "Répéter l’image d’arrière plan" + +#: actions/designadminpanel.php:490 lib/designsettings.php:170 +msgid "Change colours" +msgstr "Modifier les couleurs" + +#: actions/designadminpanel.php:511 lib/designsettings.php:191 +msgid "Content" +msgstr "Contenu" + +#: actions/designadminpanel.php:524 lib/designsettings.php:204 +msgid "Sidebar" +msgstr "Barre latérale" + +#: actions/designadminpanel.php:537 lib/designsettings.php:217 +msgid "Text" +msgstr "Texte" + +#: actions/designadminpanel.php:550 lib/designsettings.php:230 +msgid "Links" +msgstr "Liens" + +#: actions/designadminpanel.php:611 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "Utiliser les valeurs par défaut" + +#: actions/designadminpanel.php:612 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "Restaurer les conceptions par défaut" + +#: actions/designadminpanel.php:618 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "Revenir aux valeurs par défaut" + +#: actions/designadminpanel.php:620 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/siteadminpanel.php:371 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 actions/useradminpanel.php:226 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Enregistrer" + +#: actions/designadminpanel.php:621 lib/designsettings.php:257 +msgid "Save design" +msgstr "Sauvegarder la conception" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "Ce statut n’est pas un favori !" @@ -955,14 +1090,6 @@ msgstr "Je veux envoyer mes statuts par courriel." msgid "Publish a MicroID for my email address." msgstr "Publier un MicroID pour mon adresse courriel." -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Enregistrer" - #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." @@ -976,7 +1103,7 @@ msgstr "Aucune adresse courriel." msgid "Cannot normalize that email address" msgstr "Impossible d’utiliser cette adresse courriel" -#: actions/emailsettings.php:330 +#: actions/emailsettings.php:330 actions/siteadminpanel.php:156 msgid "Not a valid email address" msgstr "Adresse courriel invalide" @@ -1174,6 +1301,18 @@ msgstr "Fichier non trouvé." msgid "Cannot read file." msgstr "Impossible de lire le fichier" +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +msgid "No profile specified." +msgstr "Aucun profil n’a été spécifié." + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: lib/profileformaction.php:77 +msgid "No profile with that ID." +msgstr "Aucun profil ne correspond à cet identifiant." + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 msgid "No group specified." @@ -1292,11 +1431,11 @@ msgstr "Membres du groupe %s - page %d" msgid "A list of the users in this group." msgstr "Liste des utilisateurs inscrits à ce groupe." -#: actions/groupmembers.php:175 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:439 lib/groupnav.php:107 msgid "Admin" msgstr "Administrer" -#: actions/groupmembers.php:346 lib/blockform.php:153 +#: actions/groupmembers.php:346 lib/blockform.php:69 msgid "Block" msgstr "Bloquer" @@ -1382,7 +1521,7 @@ msgstr "Seul un administrateur peut débloquer les membres du groupes." msgid "User is not blocked from group." msgstr "Cet utilisateur n’est pas bloqué du groupe." -#: actions/groupunblock.php:128 actions/unblock.php:108 +#: actions/groupunblock.php:128 actions/unblock.php:77 msgid "Error removing the block." msgstr "Erreur lors de l’annulation du blocage." @@ -1698,7 +1837,7 @@ msgstr "Identifiant ou mot de passe incorrect." msgid "Error setting user." msgstr "Erreur lors de la configuration de l’utilisateur." -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: actions/login.php:204 actions/login.php:257 lib/action.php:457 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Ouvrir une session" @@ -2125,7 +2264,7 @@ msgid "" msgstr "" "Marquages (tags) pour votre profil, séparés par des virgules ou des espaces" -#: actions/profilesettings.php:144 +#: actions/profilesettings.php:144 actions/siteadminpanel.php:275 msgid "Language" msgstr "Langue" @@ -2153,7 +2292,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "La bio est trop longue (%d caractères maximum)." -#: actions/profilesettings.php:228 +#: actions/profilesettings.php:228 actions/siteadminpanel.php:163 msgid "Timezone not selected." msgstr "Aucun fuseau horaire n’a été choisi." @@ -2178,7 +2317,7 @@ msgstr "Impossible d’enregistrer le profil." msgid "Couldn't save tags." msgstr "Impossible d’enregistrer les marquages." -#: actions/profilesettings.php:344 +#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 msgid "Settings saved." msgstr "Préférences enregistrées." @@ -2419,7 +2558,7 @@ msgstr "Désolé, code d’invitation invalide." msgid "Registration successful" msgstr "Compte créé avec succès" -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: actions/register.php:114 actions/register.php:502 lib/action.php:454 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Créer un compte" @@ -2464,7 +2603,7 @@ msgid "Same as password above. Required." msgstr "Identique au mot de passe ci-dessus. Requis." #: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:253 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Courriel" @@ -2573,7 +2712,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL de votre profil sur un autre service de micro-blogging compatible" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 +#: lib/userprofile.php:356 msgid "Subscribe" msgstr "S’abonner" @@ -2649,6 +2788,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Message adressé à %1$s le %2$s" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "Vous ne pouvez pas envoyer de messages à cet utilisateur." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "Cet utilisateur est déjà bloqué pour le groupe." + #: actions/showfavorites.php:79 #, php-format msgid "%s's favorite notices, page %d" @@ -2905,6 +3054,145 @@ msgstr "" "**%s** est inscrit au service de [micro-blogging](http://fr.wikipedia.org/" "wiki/Microblog) %%%%site.name%%%%" +#: actions/silence.php:65 actions/unsilence.php:65 +#, fuzzy +msgid "You cannot silence users on this site." +msgstr "Vous ne pouvez pas envoyer de messages à cet utilisateur." + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "Cet utilisateur est déjà bloqué pour le groupe." + +#: actions/siteadminpanel.php:58 lib/adminpanelaction.php:272 +#, fuzzy +msgid "Site" +msgstr "Inviter" + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site." +msgstr "" + +#: actions/siteadminpanel.php:145 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:153 +#, fuzzy +msgid "You must have a valid contact email address" +msgstr "Adresse courriel invalide" + +#: actions/siteadminpanel.php:171 +#, php-format +msgid "Unknown language \"%s\"" +msgstr "" + +#: actions/siteadminpanel.php:178 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/siteadminpanel.php:184 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/siteadminpanel.php:190 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/siteadminpanel.php:241 +#, fuzzy +msgid "Site name" +msgstr "Notice du site" + +#: actions/siteadminpanel.php:242 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:246 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:249 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:250 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:254 +#, fuzzy +msgid "contact email address for your site" +msgstr "Nouvelle adresse courriel pour poster dans %s" + +#: actions/siteadminpanel.php:268 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:269 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:276 +#, fuzzy +msgid "Default site language" +msgstr "Langue préférée" + +#: actions/siteadminpanel.php:282 +#, fuzzy +msgid "Private" +msgstr "Confidentialité" + +#: actions/siteadminpanel.php:284 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/siteadminpanel.php:290 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/siteadminpanel.php:291 +msgid "In a scheduled job" +msgstr "" + +#: actions/siteadminpanel.php:292 +#, fuzzy +msgid "Never" +msgstr "Récupérer" + +#: actions/siteadminpanel.php:294 +msgid "Data snapshots" +msgstr "" + +#: actions/siteadminpanel.php:295 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/siteadminpanel.php:301 +msgid "Frequency" +msgstr "" + +#: actions/siteadminpanel.php:302 +msgid "Snapshots will be sent once every N Web hits" +msgstr "" + +#: actions/siteadminpanel.php:309 +msgid "Report URL" +msgstr "" + +#: actions/siteadminpanel.php:310 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/siteadminpanel.php:371 actions/useradminpanel.php:226 +#, fuzzy +msgid "Save site settings" +msgstr "Paramètres de l’avatar" + #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "Paramètres SMS" @@ -3188,6 +3476,21 @@ msgstr "Aucun marquage trouvé." msgid "API method under construction." msgstr "Méthode API en construction." +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "Vous avez déjà bloqué cet utilisateur." + +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "Cet utilisateur n’est pas bloqué du groupe." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "Aucun profil ne correspond à cet utilisateur." + #: actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Aucune identité de profil dans la requête." @@ -3207,6 +3510,32 @@ msgstr "" "La licence du flux auquel vous avez souscrit ‘%s’ n’est pas compatible avec " "la licence du site ‘%s’." +#: actions/useradminpanel.php:58 lib/personalgroupnav.php:115 +msgid "User" +msgstr "Utilisateur" + +#: actions/useradminpanel.php:69 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:171 +#, fuzzy +msgid "Closed" +msgstr "Bloqué" + +#: actions/useradminpanel.php:173 +msgid "Is registration on this site prohibited?" +msgstr "" + +#: actions/useradminpanel.php:178 +#, fuzzy +msgid "Invite-only" +msgstr "Inviter" + +#: actions/useradminpanel.php:180 +msgid "Is registration on this site only open to invited users?" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autoriser l’abonnement" @@ -3251,13 +3580,12 @@ msgid "Subscription authorized" msgstr "Abonnement autorisé" #: 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é. " +"L’abonnement a été autorisé, mais aucune URL de rappel n’a pas été passée. " "Vérifiez les instructions du site pour savoir comment compléter " "l’autorisation de l’abonnement. Votre jeton d’abonnement est :" @@ -3370,11 +3698,16 @@ msgstr "Un fichier aussi gros dépasserai votre quota utilisateur de %d octets." msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "Un fichier aussi gros dépasserai votre quota mensuel de %d octets." -#: classes/Message.php:55 +#: classes/Message.php:45 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "Une erreur est survenue pendant l’envoi de votre message." + +#: classes/Message.php:61 msgid "Could not insert message." msgstr "Impossible d’insérer le message." -#: classes/Message.php:65 +#: classes/Message.php:71 msgid "Could not update message with new URI." msgstr "Impossible de mettre à jour le message avec un nouvel URI." @@ -3407,15 +3740,15 @@ msgstr "" "Trop de statuts, trop vite ! Prenez une pause et publiez à nouveau dans " "quelques minutes." -#: classes/Notice.php:202 +#: classes/Notice.php:200 msgid "You are banned from posting notices on this site." msgstr "Il vous est interdit de publier des statuts dans ce site." -#: classes/Notice.php:268 classes/Notice.php:293 +#: classes/Notice.php:265 classes/Notice.php:290 msgid "Problem saving notice." msgstr "Problème lors de l’enregistrement du statut." -#: classes/Notice.php:1120 +#: 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" @@ -3445,10 +3778,6 @@ msgstr "Modifier votre mot de passe" msgid "Change email handling" msgstr "Modifier le traitement des courriels" -#: lib/accountsettingsaction.php:124 lib/groupnav.php:119 -msgid "Design" -msgstr "Conception" - #: lib/accountsettingsaction.php:124 msgid "Design your profile" msgstr "Concevez votre profil" @@ -3498,97 +3827,102 @@ msgstr "Connecter" msgid "Connect to services" msgstr "Se connecter aux services" -#: lib/action.php:439 lib/subgroupnav.php:105 +#: lib/action.php:439 +#, fuzzy +msgid "Change site configuration" +msgstr "Navigation primaire du site" + +#: lib/action.php:443 lib/subgroupnav.php:105 msgid "Invite" msgstr "Inviter" -#: lib/action.php:440 lib/subgroupnav.php:106 +#: lib/action.php:444 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter des amis et collègues à vous rejoindre dans %s" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout" msgstr "Fermeture de session" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout from the site" msgstr "Fermer la session" -#: lib/action.php:450 +#: lib/action.php:454 msgid "Create an account" msgstr "Créer un compte" -#: lib/action.php:453 +#: lib/action.php:457 msgid "Login to the site" msgstr "Ouvrir une session" -#: lib/action.php:456 lib/action.php:719 +#: lib/action.php:460 lib/action.php:723 msgid "Help" msgstr "Aide" -#: lib/action.php:456 +#: lib/action.php:460 msgid "Help me!" msgstr "À l’aide !" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search" msgstr "Rechercher" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search for people or text" msgstr "Rechercher des personnes ou du texte" -#: lib/action.php:480 +#: lib/action.php:484 msgid "Site notice" msgstr "Notice du site" -#: lib/action.php:546 +#: lib/action.php:550 msgid "Local views" msgstr "Vues locales" -#: lib/action.php:612 +#: lib/action.php:616 msgid "Page notice" msgstr "Avis de la page" -#: lib/action.php:714 +#: lib/action.php:718 msgid "Secondary site navigation" msgstr "Navigation secondaire du site" -#: lib/action.php:721 +#: lib/action.php:725 msgid "About" msgstr "À propos" -#: lib/action.php:723 +#: lib/action.php:727 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:727 +#: lib/action.php:731 msgid "TOS" msgstr "CGU" -#: lib/action.php:730 +#: lib/action.php:734 msgid "Privacy" msgstr "Confidentialité" -#: lib/action.php:732 +#: lib/action.php:736 msgid "Source" msgstr "Source" -#: lib/action.php:734 +#: lib/action.php:738 msgid "Contact" msgstr "Contact" -#: lib/action.php:736 +#: lib/action.php:740 #, fuzzy msgid "Badge" msgstr "Clin d’œil" -#: lib/action.php:764 +#: lib/action.php:768 msgid "StatusNet software license" msgstr "Licence du logiciel StatusNet" -#: lib/action.php:767 +#: lib/action.php:771 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3597,12 +3931,12 @@ msgstr "" "**%%site.name%%** est un service de microblogging qui vous est proposé par " "[%%site.broughtby%%](%%site.broughtbyurl%%)." -#: lib/action.php:769 +#: lib/action.php:773 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** est un service de micro-blogging." -#: lib/action.php:771 +#: lib/action.php:775 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3613,34 +3947,59 @@ msgstr "" "version %s, disponible sous la licence [GNU Affero General Public License] " "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:785 +#: lib/action.php:789 msgid "Site content license" msgstr "Licence du contenu du site" -#: lib/action.php:794 +#: lib/action.php:798 msgid "All " msgstr "Tous " -#: lib/action.php:799 +#: lib/action.php:803 msgid "license." msgstr "licence." -#: lib/action.php:1052 +#: lib/action.php:1067 msgid "Pagination" msgstr "Pagination" -#: lib/action.php:1061 +#: lib/action.php:1076 msgid "After" msgstr "Après" -#: lib/action.php:1069 +#: lib/action.php:1084 msgid "Before" msgstr "Avant" -#: lib/action.php:1117 +#: lib/action.php:1132 msgid "There was a problem with your session token." msgstr "Un problème est survenu avec votre jeton de session." +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "Vous ne pouvez pas envoyer de messages à cet utilisateur." + +#: lib/adminpanelaction.php:195 +#, fuzzy +msgid "showForm() not implemented." +msgstr "Cette commande n’a pas encore été implémentée." + +#: lib/adminpanelaction.php:224 +#, fuzzy +msgid "saveSettings() not implemented." +msgstr "Cette commande n’a pas encore été implémentée." + +#: lib/adminpanelaction.php:273 +#, fuzzy +msgid "Basic site configuration" +msgstr "Confirmation de l’adresse courriel" + +#: lib/adminpanelaction.php:276 +#, fuzzy +msgid "Design configuration" +msgstr "Confirmation SMS" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "Pièces jointes" @@ -3678,10 +4037,9 @@ msgid "Sorry, this command is not yet implemented." msgstr "Désolé, cette commande n’a pas encore été implémentée." #: lib/command.php:88 -#, fuzzy, php-format +#, 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 trouver un utilisateur avec le pseudo %s" #: lib/command.php:92 msgid "It does not make a lot of sense to nudge yourself!" @@ -3818,37 +4176,39 @@ msgstr "" "pendant 2 minutes : %s" #: lib/command.php:618 -#, fuzzy msgid "You are not subscribed to anyone." -msgstr "Vous n'êtes pas abonné(e) à ce profil." +msgstr "Vous n'êtes pas abonné(e) à personne." #: lib/command.php:620 #, fuzzy -msgid "You are subscribed to these people: " -msgstr "Vous n'êtes pas abonné(e) à ce profil." +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "Vous êtes abonné à ces personnes : " +msgstr[1] "Vous êtes abonné à ces personnes : " -#: lib/command.php:637 -#, fuzzy +#: lib/command.php:640 msgid "No one is subscribed to you." -msgstr "Impossible d’abonner une autre personne à votre profil." +msgstr "Personne ne s'est abonné à vous." -#: lib/command.php:639 +#: lib/command.php:642 #, fuzzy -msgid "These people are subscribed to you: " -msgstr "Abonnés de %s" +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "Personne ne s'est abonné à vous." +msgstr[1] "Personne ne s'est abonné à vous." -#: lib/command.php:656 -#, fuzzy +#: lib/command.php:662 msgid "You are not a member of any groups." -msgstr "Vous n'êtes pas membre de ce groupe." +msgstr "Vous n'êtes pas membre d'aucun groupe." -#: lib/command.php:658 +#: lib/command.php:664 #, fuzzy -msgid "You are a member of these groups: " -msgstr "Vous n'êtes pas membre de ce groupe." +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "Vous êtes membre de ces groupes : " +msgstr[1] "Vous êtes membre de ces groupes : " -#: lib/command.php:670 -#, fuzzy +#: lib/command.php:678 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -3891,6 +4251,9 @@ msgstr "" "off - désactiver les notifications\n" "help - montrer l’aide\n" "follow - s’abonner à l’utilisateur\n" +"groups - lister les groupes de vous avez joint\n" +"subscriptions - lister les personnes que vous suivez\n" +"subscribers - lister les personnes qui vous suivent\n" "leave - se désabonner de l’utilisateur\n" "d - message direct à l’utilisateur\n" "get - obtenir le dernier avis de l’utilisateur\n" @@ -3919,20 +4282,20 @@ msgstr "" "tracks - pas encore implémenté.\n" "tracking - pas encore implémenté.\n" -#: lib/common.php:192 +#: lib/common.php:203 msgid "No configuration file found. " msgstr "Aucun fichier de configuration n'a été trouvé. " -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" "J’ai cherché des fichiers de configuration dans les emplacements suivants : " -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "Vous pouvez essayer de lancer l’installeur pour régler ce problème." -#: lib/common.php:195 +#: lib/common.php:206 msgid "Go to the installer." msgstr "Aller au programme d’installation" @@ -3952,10 +4315,6 @@ msgstr "Suivi des statuts par SMS" msgid "Database error" msgstr "Erreur de la base de données" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "Changer l’image d’arrière plan" - #: lib/designsettings.php:105 msgid "Upload file" msgstr "Importer un fichier" @@ -3967,65 +4326,9 @@ msgstr "" "Vous pouvez importer une image d’arrière plan personnelle. La taille " "maximale du fichier est de 2 Mo." -#: lib/designsettings.php:139 -msgid "On" -msgstr "Activé" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "Désactivé" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "Activer ou désactiver l’image d’arrière plan." - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "Répéter l’image d’arrière plan" - -#: lib/designsettings.php:170 -msgid "Change colours" -msgstr "Modifier les couleurs" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "Arrière plan" - -#: lib/designsettings.php:191 -msgid "Content" -msgstr "Contenu" - -#: lib/designsettings.php:204 -msgid "Sidebar" -msgstr "Barre latérale" - -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Texte" - -#: lib/designsettings.php:230 -msgid "Links" -msgstr "Liens" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "Utiliser les valeurs par défaut" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "Restaurer les conceptions par défaut" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "Revenir aux valeurs par défaut" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "Sauvegarder la conception" - #: lib/designsettings.php:372 msgid "Bad default color settings: " -msgstr "" +msgstr "Mauvais paramètres de couleur par défaut : " #: lib/designsettings.php:468 msgid "Design defaults restored." @@ -4269,12 +4572,12 @@ msgstr "" "Merci de votre attention,\n" "%s\n" -#: lib/mail.php:235 +#: lib/mail.php:236 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s suit maintenant vos statuts dans %2$s." -#: lib/mail.php:240 +#: lib/mail.php:241 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4299,17 +4602,17 @@ msgstr "" "----\n" "Changez votre adresse de courriel ou vos options de notification sur %8$s\n" -#: lib/mail.php:253 +#: lib/mail.php:254 #, php-format msgid "Location: %s\n" msgstr "Emplacement : %s\n" -#: lib/mail.php:255 +#: lib/mail.php:256 #, php-format msgid "Homepage: %s\n" msgstr "Site Web : %s\n" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" @@ -4318,12 +4621,12 @@ msgstr "" "Bio : %s\n" "\n" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "Nouvelle adresse courriel pour poster dans %s" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4345,21 +4648,21 @@ msgstr "" "Amicalement vôtre,\n" "%4$s" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "Statut de %s" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "Confirmation SMS" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "Vous avez reçu un clin d’œil de %s" -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4386,12 +4689,12 @@ msgstr "" "Bien à vous,\n" "%4$s\n" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "Nouveau message personnel de %s" -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4424,13 +4727,13 @@ msgstr "" "Bien à vous,\n" "%5$s\n" -#: lib/mail.php:554 +#: lib/mail.php:559 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) a ajouté un de vos statut à ses favoris" -#: lib/mail.php:556 -#, fuzzy, php-format +#: lib/mail.php:561 +#, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" "\n" @@ -4449,26 +4752,30 @@ msgid "" "Faithfully yours,\n" "%6$s\n" msgstr "" -"%1$s vient de marquer votre message de %2$s comme un de ses favoris.\n" +"%1$s (@%7$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" +"L'URL de votre message est :\n" "\n" "%3$s\n" "\n" -"Vous pouvez consulter la liste des favoris de %1$s ici :\n" +"Le texte de votre message est :\n" "\n" "%4$s\n" "\n" -"Cordialement,\n" +"Vous pouvez voir la liste des favoris de %1$s ici :\n" +"\n" "%5$s\n" +"\n" +"Cordialement,\n" +"%6$s\n" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) vous a envoyé un avis" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4618,7 +4925,12 @@ msgstr "Erreur lors de l’insertion du profil distant" msgid "Duplicate notice" msgstr "Dupliquer l’avis" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Cet utilisateur vous a empêché de vous inscrire." + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Impossible d’insérer un nouvel abonnement." @@ -4634,10 +4946,6 @@ msgstr "Réponses" msgid "Favorites" msgstr "Favoris" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Utilisateur" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Boîte de réception" @@ -4687,6 +4995,15 @@ msgstr "Membre depuis" msgid "All groups" msgstr "Tous les groupes" +#: lib/profileformaction.php:123 +#, fuzzy +msgid "No return-to arguments" +msgstr "Aucun argument d’identification." + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "Public" @@ -4707,6 +5024,16 @@ msgstr "En vedette" msgid "Popular" msgstr "Populaires" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "Boîte de réception" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Débloquer cet utilisateur" + #: lib/searchaction.php:120 msgid "Search site" msgstr "Rechercher sur le site" @@ -4743,6 +5070,16 @@ msgstr "Section sans titre" msgid "More..." msgstr "Plus..." +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Notice du site" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Bloquer cet utilisateur" + #: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" @@ -4772,27 +5109,27 @@ msgstr "" msgid "(none)" msgstr "(aucun)" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "Déjà souscrit !" -#: lib/subs.php:52 +#: lib/subs.php:56 msgid "User has blocked you." msgstr "Cet utilisateur vous a bloqué." -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "Impossible de s’abonner." -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "Impossible d’abonner une autre personne à votre profil." -#: lib/subs.php:124 +#: lib/subs.php:128 msgid "Not subscribed!" msgstr "Pas abonné !" -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "Impossible de cesser l’abonnement" @@ -4804,6 +5141,29 @@ msgstr "Aucun" msgid "Top posters" msgstr "Utilisateurs les plus actifs" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "Débloquer cet utilisateur" + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Débloquer cet utilisateur" + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Débloquer cet utilisateur" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Ne plus suivre cet utilisateur" @@ -4906,3 +5266,6 @@ msgstr "Désolé, ceci n’est pas votre adresse de courriel entrant." #: scripts/maildaemon.php:61 msgid "Sorry, no incoming email allowed." msgstr "Désolé, la réception de courriels n’est pas permise." + +#~ msgid "These people are subscribed to you: " +#~ msgstr "Ces personnes sont abonnées à vous : " diff --git a/locale/ga/LC_MESSAGES/statusnet.mo b/locale/ga/LC_MESSAGES/statusnet.mo index 78a0e7ba0f553bc6277412f309a176cad3a423cf..c9641c01e9fccbd0edbb587bcf9a47c456e7b813 100644 GIT binary patch delta 18678 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�llg+W;92V)%a4ssGPnEN|d$>@Yz*c?NDG*8~f+8Z^*8K@gi zLEU&7YI`og)>wq<@HHC`_{r>|N~r7KgSD^=s$==+txjeZnL)S-H4;^SHYYYmJy}0% zK5DH@M=iEpsP;#&8eT-T4?l0#PF)P9+!r6gCsFM;+xX%0jQ>6YCv0HR1v3IGu#or} z)R2$3X!h%isBJbAOX3dH(C)*sco6I332cnPm&{0|SUaPx*B5o2p_dr{4P*)ll)wjm zF+<-CRZhhwI0W@%^RWsRV>|pD^=TJ<+0=K!GL%!T!>v!-`pMR17)`sKUNRlY97nw< z+*iz#r{LX`Kf_X3=BnvX6sqS{tesFdEWl8lh~YRD@5O~!6HlQ=Ebv$Jg(npC0N(Co z^k$lkT3m12@;j&($YIpnUcor5c+D)HCe|LP4&$(gtIP^AS{&P~yHRs_0L$T*7>(zxfq$5C6>Ae~7i+3@tkq{-ZQX+! z!7u+{{I&S563~sx{b_bXJgP&3Q8&)EK94b!7otXB3zo&tt!J&jpr-6ETQ2jLnbH_+ zLcBgUM9*K0e+rqI1a!fVP&Yn@y1+&2pQu${`foFYl~8kBAGKJ!q1yLH4S5FYMg^!L ze-pK~c33Z9ZOSp;e@uh>u_}Rns5jb3)FONub>SJP5n6#+hMVWBm{{_di(w!B&)`16}?%<0Gh!&O}YcQq-IB zebl!66g36sY&@of%m3m@MAdh}5bb{tnK%MNQ5Sd#_2TfMZm_?(eK7qaJOWtZPtfWt%PUMUBX3s5SEyYD#a|`Y>;pS*5Yqo{H|M z3(Q4*0a;{SYJC&?5MPUZF{qr&|1muP)$#GD5qcK2M&@7xEXJmI4mBlJ!p&5B`;v(# zFamYLTwC6Z+6Bk4COYL^{tu}n)CIesw$~Wc?pbT&hp-3bKk*^#8ev9qzV&m|2!`@M z4f7)MI&oz76X=1jVN6A{$~R$K$~UYjk*54K)+N3Z>)-{v8>6F)Jy0V#1-0l7V|5pw zc>HZowy5Ot|8eTk$}avi%RX35Mo)SJ^$L!UG2V-MvPZEsj=|oz&DNK%;`0CfuOVuV zC!)@uj@-vtgWusg?2of!jlW=5$`4fKy4r`YDuX9c-^r@Px%}VVobLPeV=en`X1m#ym}ylp*=I=@tcxnT_Iy6v$ZX4vvv>sHiz;7kJhUk&4`nG@QgR`DRz4Ki){71W|y zh>zf9)DU)JLbdM;t&1>>@(OH(n^3#y2h;;yMlJS|iRQghGtp}*S`$!%KGsasTu!v* z#nw&ee-olc=A13xL_J7E4YNC%qdo=GQTu*8Y8TB#eT;9%`gq7o<}jH*u$lrjUH&hJ zmr-;2E9zr7BFU`gI83MfBX`=}fRw$? zGbZD#vVM+hX!s}U30BoNBXI)Nk(;QF)ox%MW?f_b#hTpE)aRjYyb)i*GpLXCA&vAY z%l;cnM&D!#Q6HC|p;q%n)V}`PS~}S*u1ctQ5^8FiqIO4X)Mr9hYd;%LL+yfG48cXV zyb}Gt{~slzReKtB;R~p_{~fj1Dm6AXMi=F~0(jlx?StLtKlFJ}I*>ot<3QTnc_dP9 zY1@V0QK$EhbGNPdf{Gl{YRa*9G@401kJvx>GHKf#bvi$c@(JocCg}n0rM!l`=Kc2Z zII&Ocd2it)>RIz%CydN7T9u;bw~w~OZrH|S2)<0Zm)L`(JCD}1(Fo~SY1^lg|J$~E znEYF$;naOYdcd~PJLCh})aL!;{7EqIKQ5e1O#dxNhyGV4qBkN2c{yF92I9B7oopg@E?L(`-^BpJLZ}U&u2CHn_)5u4L zvlh4DbJXw0U{XiYX3{b0J|ullK7sm&QO8YUdei#ne<{KCqzr<*Z=6T*5nN1z>*Q}A zYy{^Q3Yo;3VM#_tD>|MumAY{x{qmtB>yGm}n~?wKO2=l(<5^TLt%=7b`sV)44V{L<$4hpkK#y zd`%l2+o>y0-E{K5lFAbwNqU`lYaB{!1a_sY&y=4?YsgO{)}3^Q{8VE8{kMR?6q1fb zR^_Xa|DJ|LsE^*cq$kKPBla*UgM4#h|B!SHAa;Y8j<;|u+UR?~j&58-$J?Y!#Pyv}M}5)&Qdcj*-K6F;{F%Udl85|*xE}|hj+wN%4BuE^gtVTNLitD1c+yAId)pHHmUN85P}K1zM%cW{ zOZ3AYQ*8XWEx*orJBhW!1Z+WkHt8YCXK)o}k$RA?ZO;v`Yk-h{{rP_v|AW%)qZ}s; zr?3ofA63cJzoYyO<+AodQ@L;o=`qsb+b7^G(o>|K#C3dZaNg!Rr%CSwaDRP=Yej>< zaF}hdlFA|Wq*cV8B;TEMid2L0P3rF^&+nf8|GA_E`F^Ar(r?r^!+E4F^K`tT`5!}I6safq@&tb;|03x;iQg-nOa7*Or^7Iw_*uM4osO@lf0lePX)~!k zvBT&ibs>!-z3y+x{|i9dZRG2c3dr{$`N#he8m%Vf6KF%_Z_1N&6cf{tOZt=ir=$=% z@gw!w#OA0SvA(ul6ka4Pwqn|@tQJv{*9#5q-QuO zk90qI9W}`p;~)4ACypmoBj1JCO431+j*-M#Q0KE3kD&7^WKv5w$NsN+%cvuwVA@&?NK{jMCb%A|?p>kyldy==SD_!+UeQsp~4WA{b<43FV?-AE=06(&Ml_$_< zKIK^QG2}yR-6!O~Bj2C&3;F8Q|A05}Q`?5D^Bpn&B>oO3l;_weyr=@@D7|JAz_`MLJ|2&<~QkWU_APq>f5YJ$1A zo)kygL%9R>KHP2FIYsy0_furFCodz_otKfH?oQ3g9+WY-AlH+hk&|7N`0$Ue`2UXc zPmDd;gVWvlL(;R-eI@$%f--aR($k9O^jQ^FVUVXFGv8b+lU42+f=)46>9 zkc>QcL0)>UbAP%&puBHFdMxR^vj2Yb7K5$_g=XjEy9ebIWTzz*)y(`ZFf@Avy{w;; zojJNFWO%)xz!B-WMaczk1XjpR&o9W$uAiUd_T&yO$V$)7&nxAvz4 zqkWAhRw}AJ@oZqj?6iS7qnutIzjyShmuEye;SuSk`+4d4`5D=R^NPwmKdMA*W_ori zwHbczJc$nZo|zmQ;K?eQGkJG##jJF|^xV9hY&T<(S1>RyH8*2mdYYTAkIpIZRh(U;Xn0|*z{oT+LTTxF8H2Okwllt$ z=UoiT%t;;g|9jvY@mfO6e?3d@>^##|-}=|0iWa?=99Y+rnVarO8|}_BjnmT_IK3Hu zb>m-E=A1O&`wKhx4lN9h{~vAjaQ511ML~;RaaFe09jJckL56tp{gd3lSGYK-6qg^I zn^Q16#kXQ{wW1Ff*L0O0=*iBe;h@}{EMJ3+Xjh)E!Rs-zUjI0hwq|Tnd>da+OmO<; z6u478*=|j^+YShK@nrh1pVy%1$gWI=JMV4n6yTHG`^E4&?6{{`qZ>{XGm|oDk|Erl@E&kj1 zn}uit=yJa6OADJ1Oi$0I@BbQ%e=P@=ow?r-R%3QjzWdIxEn2cH*_D)4keBaPwcFz! z;mOQM)85VZq~^QRvsigZa=-hoafuJx0dhjePw-d z`zrc6>}ws;HZ$j`f^<)A(R2Gsg-1Nd5EXbvrMrjcrVmQb%}De3rXH>3TYj`$NP1>Q zRz|ib*EjN5Ti>W-ZEPCnd-AWyqHD+Uf_-7{Rw){M=Fbwro%KH9k^{eOS~9$6dTIfy z&y(wP&EX%ucP&gva8)Q;_tO_8eEl!P6ivR=GqmW_n@xghv}FS|aJSFS&-J8voZJ0k zF%)=mGjg1cp4>FT?{NN6XOb<8{>*9>>lH4eY+G_cwdYwqP*!(FwN3ZoNTYYTUWxEdC7`7B}I<#L(f^{xA< ga$&O?uF*}~Z`@8}~4NKuLb1A_G41R_KP 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 diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index bce6ff40a8..ff4fd29efd 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -5,12 +5,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-16 19:42+0000\n" -"PO-Revision-Date: 2009-11-16 19:43:30+0000\n" +"POT-Creation-Date: 2009-11-18 19:31+0000\n" +"PO-Revision-Date: 2009-11-18 19:31:55+0000\n" "Language-Team: Irish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\n" +"X-Generator: MediaWiki 1.16alpha(r59207); Translate extension (2009-11-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ga\n" "X-Message-Group: out-statusnet\n" @@ -42,7 +42,7 @@ msgstr "Non existe a etiqueta." #: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 #: lib/command.php:364 lib/command.php:411 lib/command.php:466 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 +#: lib/subs.php:34 lib/subs.php:116 msgid "No such user." msgstr "Ningún usuario." @@ -145,7 +145,8 @@ msgstr "Non se puido actualizar o usuario." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 #: actions/apistatusesupdate.php:127 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: actions/designadminpanel.php:125 actions/newnotice.php:94 +#: lib/designsettings.php:283 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -233,12 +234,12 @@ msgstr "Tódalas mensaxes directas enviadas a %s" #: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 #: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigrouplistall.php:120 actions/apigrouplist.php:132 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apigroupmembership.php:106 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/apitimelinegroup.php:147 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!" @@ -381,6 +382,13 @@ msgstr "O alcume xa está sendo empregado por outro usuario. Tenta con outro." msgid "Alias can't be the same as nickname." msgstr "" +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#, fuzzy +msgid "Group not found!" +msgstr "Método da API non atopado" + #: actions/apigroupjoin.php:110 msgid "You are already a member of that group." msgstr "Xa estas suscrito a estes usuarios:" @@ -471,13 +479,13 @@ msgstr "%s / Favoritos dende %s" msgid "%s updates favorited by %s / %s." msgstr "%s updates favorited by %s / %s." -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/apitimelinegroup.php:108 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/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -566,7 +574,8 @@ msgstr "" msgid "Preview" msgstr "" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#: actions/avatarsettings.php:148 lib/deleteuserform.php:66 +#: lib/noticelist.php:522 #, fuzzy msgid "Delete" msgstr "eliminar" @@ -579,7 +588,7 @@ msgstr "Subir" msgid "Crop" msgstr "" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/avatarsettings.php:265 actions/disfavor.php:74 #: actions/emailsettings.php:237 actions/favor.php:75 #: actions/groupblock.php:66 actions/grouplogo.php:309 #: actions/groupunblock.php:66 actions/imsettings.php:206 @@ -589,7 +598,7 @@ msgstr "" #: actions/profilesettings.php:187 actions/recoverpassword.php:337 #: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 +#: actions/tagother.php:166 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 lib/designsettings.php:294 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..." @@ -657,41 +666,25 @@ msgstr "" msgid "Unblock user from group" msgstr "Desbloqueo de usuario fallido." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" msgstr "Desbloquear" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Bloquear usuario" -#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61 -#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87 -#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31 -#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "Non está logueado." +#: actions/block.php:69 +#, fuzzy +msgid "You already blocked that user." +msgstr "Xa bloqueaches a este usuario." -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 -msgid "No profile specified." -msgstr "Non se especificou ningún perfil." - -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 -msgid "No profile with that ID." -msgstr "Non se atopou un perfil con ese ID." - -#: actions/block.php:111 actions/block.php:134 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 msgid "Block user" msgstr "Bloquear usuario" -#: actions/block.php:136 +#: actions/block.php:130 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 " @@ -701,32 +694,27 @@ msgstr "" "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:149 actions/deletenotice.php:145 -#: actions/groupblock.php:178 +#: actions/block.php:143 actions/deletenotice.php:145 +#: actions/deleteuser.php:147 actions/groupblock.php:178 msgid "No" msgstr "No" -#: actions/block.php:149 +#: actions/block.php:143 actions/deleteuser.php:147 #, fuzzy msgid "Do not block this user" msgstr "Bloquear usuario" -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:179 +#: actions/block.php:144 actions/deletenotice.php:146 +#: actions/deleteuser.php:148 actions/groupblock.php:179 msgid "Yes" msgstr "Si" -#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 -#: lib/blockform.php:153 +#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Bloquear usuario" -#: actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Xa bloqueaches a este usuario." - -#: actions/block.php:170 +#: actions/block.php:162 msgid "Failed to save block information." msgstr "Erro ao gardar información de bloqueo." @@ -792,6 +780,15 @@ msgstr "Chíos" msgid "No such notice." msgstr "Ningún chío." +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 +#: actions/unsubscribe.php:52 lib/adminpanelaction.php:72 +#: lib/profileformaction.php:63 lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Non está logueado." + #: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Non se pode eliminar este chíos." @@ -828,6 +825,145 @@ msgstr "Eliminar chío" 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/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "Non se puido actualizar o usuario." + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "Non deberías eliminar o estado de outro usuario" + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +#, fuzzy +msgid "Delete user" +msgstr "eliminar" + +#: actions/deleteuser.php:135 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "Eliminar chío" + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/adminpanelaction.php:275 lib/groupnav.php:119 +msgid "Design" +msgstr "" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "" + +#: actions/designadminpanel.php:220 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "Non se puideron gardar os teus axustes de Twitter!" + +#: actions/designadminpanel.php:301 +#, fuzzy, php-format +msgid "Theme not available: %s" +msgstr "Esta páxina non está dispoñíbel no tipo de medio que aceptas" + +#: actions/designadminpanel.php:406 +#, fuzzy +msgid "Change theme" +msgstr "Modificado" + +#: actions/designadminpanel.php:410 +msgid "Theme" +msgstr "" + +#: actions/designadminpanel.php:411 +msgid "Theme for the site." +msgstr "" + +#: actions/designadminpanel.php:420 lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: actions/designadminpanel.php:424 actions/designadminpanel.php:498 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: actions/designadminpanel.php:429 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "Podes actualizar a túa información do perfil persoal aquí" + +#: actions/designadminpanel.php:459 lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: actions/designadminpanel.php:475 lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: actions/designadminpanel.php:476 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: actions/designadminpanel.php:481 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: actions/designadminpanel.php:490 lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Cambiar contrasinal" + +#: actions/designadminpanel.php:511 lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Conectar" + +#: actions/designadminpanel.php:524 lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Buscar" + +#: actions/designadminpanel.php:537 lib/designsettings.php:217 +msgid "Text" +msgstr "Texto" + +#: actions/designadminpanel.php:550 lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Lista" + +#: actions/designadminpanel.php:611 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: actions/designadminpanel.php:612 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: actions/designadminpanel.php:618 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: actions/designadminpanel.php:620 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/siteadminpanel.php:371 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 actions/useradminpanel.php:226 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Gardar" + +#: actions/designadminpanel.php:621 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "Este chío non é un favorito!" @@ -976,14 +1112,6 @@ msgstr "Quero enviar chíos dende o mail." msgid "Publish a MicroID for my email address." msgstr "Publicar unha MicroID dende a miña dirección de correo." -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Gardar" - #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." @@ -997,7 +1125,7 @@ msgstr "Non se inseriu unha dirección de correo" msgid "Cannot normalize that email address" msgstr "Esa dirección de correo non se pode normalizar " -#: actions/emailsettings.php:330 +#: actions/emailsettings.php:330 actions/siteadminpanel.php:156 msgid "Not a valid email address" msgstr "Non é unha dirección de correo válida" @@ -1198,6 +1326,18 @@ msgstr "Ningún chío." msgid "Cannot read file." msgstr "Bloqueo de usuario fallido." +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +msgid "No profile specified." +msgstr "Non se especificou ningún perfil." + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: lib/profileformaction.php:77 +msgid "No profile with that ID." +msgstr "Non se atopou un perfil con ese ID." + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 #, fuzzy @@ -1321,11 +1461,11 @@ msgstr "" msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:439 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:346 lib/blockform.php:153 +#: actions/groupmembers.php:346 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" @@ -1414,7 +1554,7 @@ msgstr "" msgid "User is not blocked from group." msgstr "O usuario bloqueoute." -#: actions/groupunblock.php:128 actions/unblock.php:108 +#: actions/groupunblock.php:128 actions/unblock.php:77 msgid "Error removing the block." msgstr "Acounteceu un erro borrando o bloqueo." @@ -1725,7 +1865,7 @@ msgstr "Usuario ou contrasinal incorrectos." msgid "Error setting user." msgstr "Acounteceu un erro configurando o usuario." -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: actions/login.php:204 actions/login.php:257 lib/action.php:457 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Inicio de sesión" @@ -2157,7 +2297,7 @@ msgstr "" "Etiquetas para o teu usuario (letras, números, -, ., e _), separados por " "coma ou espazo" -#: actions/profilesettings.php:144 +#: actions/profilesettings.php:144 actions/siteadminpanel.php:275 msgid "Language" msgstr "Linguaxe" @@ -2185,7 +2325,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "O teu Bio é demasiado longo (max 140 car.)." -#: actions/profilesettings.php:228 +#: actions/profilesettings.php:228 actions/siteadminpanel.php:163 msgid "Timezone not selected." msgstr "Fuso Horario non seleccionado" @@ -2210,7 +2350,7 @@ msgstr "Non se puido gardar o perfil." msgid "Couldn't save tags." msgstr "Non se puideron gardar as etiquetas." -#: actions/profilesettings.php:344 +#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 msgid "Settings saved." msgstr "Configuracións gardadas." @@ -2454,7 +2594,7 @@ msgstr "Acounteceu un erro co código de confirmación." msgid "Registration successful" msgstr "Xa estas rexistrado!!" -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: actions/register.php:114 actions/register.php:502 lib/action.php:454 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Rexistrar" @@ -2504,7 +2644,7 @@ msgid "Same as password above. Required." msgstr "A mesma contrasinal que arriba. Requerido." #: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:253 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Correo Electrónico" @@ -2612,7 +2752,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Enderezo do teu perfil en outro servizo de microblogaxe compatíbel" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 +#: lib/userprofile.php:356 msgid "Subscribe" msgstr "Subscribir" @@ -2688,6 +2828,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Mensaxe de %1$s en %2$s" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "Non podes enviar mensaxes a este usurio." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "O usuario bloqueoute." + #: actions/showfavorites.php:79 #, fuzzy, php-format msgid "%s's favorite notices, page %d" @@ -2949,6 +3099,145 @@ msgstr "" "(http://status.net/). [Únete agora](%%action.register%%) para compartir " "chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" +#: actions/silence.php:65 actions/unsilence.php:65 +#, fuzzy +msgid "You cannot silence users on this site." +msgstr "Non podes enviar mensaxes a este usurio." + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "O usuario bloqueoute." + +#: actions/siteadminpanel.php:58 lib/adminpanelaction.php:272 +#, fuzzy +msgid "Site" +msgstr "Invitar" + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site." +msgstr "" + +#: actions/siteadminpanel.php:145 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:153 +#, fuzzy +msgid "You must have a valid contact email address" +msgstr "Non é unha dirección de correo válida" + +#: actions/siteadminpanel.php:171 +#, php-format +msgid "Unknown language \"%s\"" +msgstr "" + +#: actions/siteadminpanel.php:178 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/siteadminpanel.php:184 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/siteadminpanel.php:190 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/siteadminpanel.php:241 +#, fuzzy +msgid "Site name" +msgstr "Novo chío" + +#: actions/siteadminpanel.php:242 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:246 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:249 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:250 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:254 +#, fuzzy +msgid "contact email address for your site" +msgstr "Nova dirección de email para posterar en %s" + +#: actions/siteadminpanel.php:268 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:269 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:276 +#, fuzzy +msgid "Default site language" +msgstr "Linguaxe preferida" + +#: actions/siteadminpanel.php:282 +#, fuzzy +msgid "Private" +msgstr "Privacidade" + +#: actions/siteadminpanel.php:284 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/siteadminpanel.php:290 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/siteadminpanel.php:291 +msgid "In a scheduled job" +msgstr "" + +#: actions/siteadminpanel.php:292 +#, fuzzy +msgid "Never" +msgstr "Recuperar" + +#: actions/siteadminpanel.php:294 +msgid "Data snapshots" +msgstr "" + +#: actions/siteadminpanel.php:295 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/siteadminpanel.php:301 +msgid "Frequency" +msgstr "" + +#: actions/siteadminpanel.php:302 +msgid "Snapshots will be sent once every N Web hits" +msgstr "" + +#: actions/siteadminpanel.php:309 +msgid "Report URL" +msgstr "" + +#: actions/siteadminpanel.php:310 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/siteadminpanel.php:371 actions/useradminpanel.php:226 +#, fuzzy +msgid "Save site settings" +msgstr "Configuracións de Twitter" + #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "Configuracións de SMS" @@ -3225,6 +3514,21 @@ msgstr "Non existe a etiqueta." msgid "API method under construction." msgstr "Método da API en contrución." +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "Xa bloqueaches a este usuario." + +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "O usuario bloqueoute." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "O usuario non ten perfil." + #: actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Non hai identificador de perfil na peticion." @@ -3242,6 +3546,32 @@ msgstr "De-suscribido" msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" +#: actions/useradminpanel.php:58 lib/personalgroupnav.php:115 +msgid "User" +msgstr "Usuario" + +#: actions/useradminpanel.php:69 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:171 +#, fuzzy +msgid "Closed" +msgstr "Bloquear" + +#: actions/useradminpanel.php:173 +msgid "Is registration on this site prohibited?" +msgstr "" + +#: actions/useradminpanel.php:178 +#, fuzzy +msgid "Invite-only" +msgstr "Invitar" + +#: actions/useradminpanel.php:180 +msgid "Is registration on this site only open to invited users?" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Subscrición de autorización." @@ -3404,11 +3734,16 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: classes/Message.php:55 +#: classes/Message.php:45 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "Erro ó enviar a mensaxe directa." + +#: classes/Message.php:61 msgid "Could not insert message." msgstr "Non se pode inserir unha mensaxe." -#: classes/Message.php:65 +#: classes/Message.php:71 msgid "Could not update message with new URI." msgstr "Non se puido actualizar a mensaxe coa nova URI." @@ -3442,15 +3777,15 @@ msgstr "" "Demasiados chíos en pouco tempo; tomate un respiro e envíao de novo dentro " "duns minutos." -#: classes/Notice.php:202 +#: classes/Notice.php:200 msgid "You are banned from posting notices on this site." msgstr "Tes restrinxido o envio de chíos neste sitio." -#: classes/Notice.php:268 classes/Notice.php:293 +#: classes/Notice.php:265 classes/Notice.php:290 msgid "Problem saving notice." msgstr "Aconteceu un erro ó gardar o chío." -#: classes/Notice.php:1120 +#: classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Erro ó inserir a contestación na BD: %s" @@ -3481,10 +3816,6 @@ msgstr "Cambiar contrasinal" msgid "Change email handling" msgstr "Cambiar a xestión de email" -#: lib/accountsettingsaction.php:124 lib/groupnav.php:119 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:124 #, fuzzy msgid "Design your profile" @@ -3538,103 +3869,108 @@ msgstr "Conectar" msgid "Connect to services" msgstr "Non se pode redireccionar ao servidor: %s" -#: lib/action.php:439 lib/subgroupnav.php:105 +#: lib/action.php:439 +#, fuzzy +msgid "Change site configuration" +msgstr "Navegación de subscricións" + +#: lib/action.php:443 lib/subgroupnav.php:105 msgid "Invite" msgstr "Invitar" -#: lib/action.php:440 lib/subgroupnav.php:106 +#: lib/action.php:444 lib/subgroupnav.php:106 #, 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/action.php:445 +#: lib/action.php:449 msgid "Logout" msgstr "Sair" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout from the site" msgstr "" -#: lib/action.php:450 +#: lib/action.php:454 #, fuzzy msgid "Create an account" msgstr "Crear nova conta" -#: lib/action.php:453 +#: lib/action.php:457 msgid "Login to the site" msgstr "" -#: lib/action.php:456 lib/action.php:719 +#: lib/action.php:460 lib/action.php:723 msgid "Help" msgstr "Axuda" -#: lib/action.php:456 +#: lib/action.php:460 #, fuzzy msgid "Help me!" msgstr "Axuda" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search" msgstr "Buscar" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search for people or text" msgstr "" -#: lib/action.php:480 +#: lib/action.php:484 #, fuzzy msgid "Site notice" msgstr "Novo chío" -#: lib/action.php:546 +#: lib/action.php:550 msgid "Local views" msgstr "" -#: lib/action.php:612 +#: lib/action.php:616 #, fuzzy msgid "Page notice" msgstr "Novo chío" -#: lib/action.php:714 +#: lib/action.php:718 #, fuzzy msgid "Secondary site navigation" msgstr "Navegación de subscricións" -#: lib/action.php:721 +#: lib/action.php:725 msgid "About" msgstr "Sobre" -#: lib/action.php:723 +#: lib/action.php:727 msgid "FAQ" msgstr "Preguntas frecuentes" -#: lib/action.php:727 +#: lib/action.php:731 msgid "TOS" msgstr "" -#: lib/action.php:730 +#: lib/action.php:734 msgid "Privacy" msgstr "Privacidade" -#: lib/action.php:732 +#: lib/action.php:736 msgid "Source" msgstr "Fonte" -#: lib/action.php:734 +#: lib/action.php:738 msgid "Contact" msgstr "Contacto" -#: lib/action.php:736 +#: lib/action.php:740 msgid "Badge" msgstr "" -#: lib/action.php:764 +#: lib/action.php:768 msgid "StatusNet software license" msgstr "" -#: lib/action.php:767 +#: lib/action.php:771 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3643,12 +3979,12 @@ msgstr "" "**%%site.name%%** é un servizo de microbloguexo que che proporciona [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:769 +#: lib/action.php:773 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** é un servizo de microbloguexo." -#: lib/action.php:771 +#: lib/action.php:775 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3659,39 +3995,64 @@ msgstr "" "%s, dispoñible baixo licenza [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:785 +#: lib/action.php:789 #, fuzzy msgid "Site content license" msgstr "Atopar no contido dos chíos" -#: lib/action.php:794 +#: lib/action.php:798 #, fuzzy msgid "All " msgstr "Todos" -#: lib/action.php:799 +#: lib/action.php:803 msgid "license." msgstr "" -#: lib/action.php:1052 +#: lib/action.php:1067 msgid "Pagination" msgstr "" -#: lib/action.php:1061 +#: lib/action.php:1076 #, fuzzy msgid "After" msgstr "« Despois" -#: lib/action.php:1069 +#: lib/action.php:1084 #, fuzzy msgid "Before" msgstr "Antes »" -#: lib/action.php:1117 +#: lib/action.php:1132 #, fuzzy msgid "There was a problem with your session token." msgstr "Houbo un problema co teu token de sesión. Tentao de novo, anda..." +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "Non podes enviar mensaxes a este usurio." + +#: lib/adminpanelaction.php:195 +#, fuzzy +msgid "showForm() not implemented." +msgstr "Comando non implementado." + +#: lib/adminpanelaction.php:224 +#, fuzzy +msgid "saveSettings() not implemented." +msgstr "Comando non implementado." + +#: lib/adminpanelaction.php:273 +#, fuzzy +msgid "Basic site configuration" +msgstr "Confirmar correo electrónico" + +#: lib/adminpanelaction.php:276 +#, fuzzy +msgid "Design configuration" +msgstr "Confirmación de SMS" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -3870,30 +4231,36 @@ msgstr "Non estás suscrito a ese perfil" #: lib/command.php:620 #, fuzzy -msgid "You are subscribed to these people: " -msgstr "Non estás suscrito a ese perfil" +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "Non estás suscrito a ese perfil" +msgstr[1] "Non estás suscrito a ese perfil" -#: lib/command.php:637 +#: lib/command.php:640 #, fuzzy msgid "No one is subscribed to you." msgstr "Outro usuario non se puido suscribir a ti." -#: lib/command.php:639 +#: lib/command.php:642 #, fuzzy -msgid "These people are subscribed to you: " -msgstr "Suscrito a %s" +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "Outro usuario non se puido suscribir a ti." +msgstr[1] "Outro usuario non se puido suscribir a ti." -#: lib/command.php:656 +#: lib/command.php:662 #, fuzzy msgid "You are not a member of any groups." msgstr "Non estás suscrito a ese perfil" -#: lib/command.php:658 +#: lib/command.php:664 #, fuzzy -msgid "You are a member of these groups: " -msgstr "Non estás suscrito a ese perfil" +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "Non estás suscrito a ese perfil" +msgstr[1] "Non estás suscrito a ese perfil" -#: lib/command.php:670 +#: lib/command.php:678 #, fuzzy msgid "" "Commands:\n" @@ -3959,20 +4326,20 @@ msgstr "" "tracks - non implementado por agora.\n" "tracking - non implementado por agora.\n" -#: lib/common.php:192 +#: lib/common.php:203 #, fuzzy msgid "No configuration file found. " msgstr "Sen código de confirmación." -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:195 +#: lib/common.php:206 msgid "Go to the installer." msgstr "" @@ -3992,10 +4359,6 @@ msgstr "Chíos dende SMS" msgid "Database error" msgstr "" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" @@ -4006,66 +4369,6 @@ 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:217 -msgid "Text" -msgstr "Texto" - -#: 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:372 msgid "Bad default color settings: " msgstr "" @@ -4319,12 +4622,12 @@ msgstr "" "Grazas polo teu tempo, \n" "%s\n" -#: lib/mail.php:235 +#: lib/mail.php:236 #, 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:240 +#: lib/mail.php:241 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4345,29 +4648,29 @@ msgstr "" "Atentamente todo seu,\n" "%4$s.\n" -#: lib/mail.php:253 +#: lib/mail.php:254 #, fuzzy, php-format msgid "Location: %s\n" msgstr "Ubicación: %s" -#: lib/mail.php:255 +#: lib/mail.php:256 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Páxina persoal: %s" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "Nova dirección de email para posterar en %s" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4388,21 +4691,21 @@ msgstr "" "Sempre teu...,\n" "%4$s" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "Estado de %s" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "Confirmación de SMS" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "%s douche un toque" -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4428,12 +4731,12 @@ msgstr "" "With kind regards,\n" "%4$s\n" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "%s enviouche unha nova mensaxe privada" -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4466,12 +4769,12 @@ msgstr "" "With kind regards,\n" "%5$s\n" -#: lib/mail.php:554 +#: lib/mail.php:559 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s gustoulle o teu chío" -#: lib/mail.php:556 +#: lib/mail.php:561 #, fuzzy, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4504,12 +4807,12 @@ msgstr "" "Fielmente teu,\n" "%5$s\n" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4655,7 +4958,12 @@ msgstr "Aconteceu un erro ó inserir o perfil remoto" msgid "Duplicate notice" msgstr "Eliminar chío" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Este usuario non che permite suscribirte a el." + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Non se puido inserir a nova subscrición." @@ -4671,10 +4979,6 @@ msgstr "Respostas" msgid "Favorites" msgstr "Favoritos" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Usuario" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Band. Entrada" @@ -4727,6 +5031,15 @@ msgstr "Membro dende" msgid "All groups" msgstr "Tódalas etiquetas" +#: lib/profileformaction.php:123 +#, fuzzy +msgid "No return-to arguments" +msgstr "Non hai argumento id." + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "Público" @@ -4748,6 +5061,16 @@ msgstr "Destacado" msgid "Popular" msgstr "Popular" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "Band. Entrada" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Bloquear usuario" + #: lib/searchaction.php:120 #, fuzzy msgid "Search site" @@ -4788,6 +5111,16 @@ msgstr "" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Novo chío" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Bloquear usuario" + #: lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" @@ -4817,28 +5150,28 @@ msgstr "" msgid "(none)" msgstr "(nada)" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "" -#: lib/subs.php:52 +#: lib/subs.php:56 msgid "User has blocked you." msgstr "O usuario bloqueoute." -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "No se pode suscribir." -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "Outro usuario non se puido suscribir a ti." -#: lib/subs.php:124 +#: lib/subs.php:128 #, fuzzy msgid "Not subscribed!" msgstr "Non está suscrito!" -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "Non se pode eliminar a subscrición." @@ -4851,6 +5184,29 @@ msgstr "No" msgid "Top posters" msgstr "" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "Bloquear usuario" + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Bloquear usuario" + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Bloquear usuario" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 #, fuzzy msgid "Unsubscribe from this user" @@ -4958,3 +5314,7 @@ msgstr "Ise é un enderezo IM incorrecto." #: scripts/maildaemon.php:61 msgid "Sorry, no incoming email allowed." msgstr "Aivá, non se permiten correos entrantes." + +#, fuzzy +#~ msgid "These people are subscribed to you: " +#~ msgstr "Suscrito a %s" diff --git a/locale/he/LC_MESSAGES/statusnet.mo b/locale/he/LC_MESSAGES/statusnet.mo index 57b3fb49fc8a701bb4bca65952d49e2176bbe417..792701599db6ac58ac607c2c45a920d96addd318 100644 GIT binary patch delta 11373 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 diff --git a/locale/he/LC_MESSAGES/statusnet.po b/locale/he/LC_MESSAGES/statusnet.po index 3de5c00722..e6adf336f8 100644 --- a/locale/he/LC_MESSAGES/statusnet.po +++ b/locale/he/LC_MESSAGES/statusnet.po @@ -5,12 +5,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-16 19:42+0000\n" -"PO-Revision-Date: 2009-11-16 19:43:33+0000\n" +"POT-Creation-Date: 2009-11-18 19:31+0000\n" +"PO-Revision-Date: 2009-11-18 19:31:58+0000\n" "Language-Team: Hebrew\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\n" +"X-Generator: MediaWiki 1.16alpha(r59207); Translate extension (2009-11-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: he\n" "X-Message-Group: out-statusnet\n" @@ -42,7 +42,7 @@ msgstr "אין הודעה כזו." #: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 #: lib/command.php:364 lib/command.php:411 lib/command.php:466 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 +#: lib/subs.php:34 lib/subs.php:116 msgid "No such user." msgstr "אין משתמש כזה." @@ -145,7 +145,8 @@ msgstr "עידכון המשתמש נכשל." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 #: actions/apistatusesupdate.php:127 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: actions/designadminpanel.php:125 actions/newnotice.php:94 +#: lib/designsettings.php:283 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -230,12 +231,12 @@ msgstr "" #: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 #: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigrouplistall.php:120 actions/apigrouplist.php:132 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apigroupmembership.php:106 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/apitimelinegroup.php:147 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!" @@ -374,6 +375,13 @@ msgstr "כינוי זה כבר תפוס. נסה כינוי אחר." msgid "Alias can't be the same as nickname." msgstr "" +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#, fuzzy +msgid "Group not found!" +msgstr "לא נמצא" + #: actions/apigroupjoin.php:110 #, fuzzy msgid "You are already a member of that group." @@ -465,13 +473,13 @@ msgstr "" msgid "%s updates favorited by %s / %s." msgstr "" -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -561,7 +569,8 @@ msgstr "" msgid "Preview" msgstr "" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#: actions/avatarsettings.php:148 lib/deleteuserform.php:66 +#: lib/noticelist.php:522 #, fuzzy msgid "Delete" msgstr "מחק" @@ -574,7 +583,7 @@ msgstr "ההעלה" msgid "Crop" msgstr "" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/avatarsettings.php:265 actions/disfavor.php:74 #: actions/emailsettings.php:237 actions/favor.php:75 #: actions/groupblock.php:66 actions/grouplogo.php:309 #: actions/groupunblock.php:66 actions/imsettings.php:206 @@ -584,7 +593,7 @@ msgstr "" #: actions/profilesettings.php:187 actions/recoverpassword.php:337 #: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 +#: actions/tagother.php:166 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 lib/designsettings.php:294 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -652,75 +661,53 @@ msgstr "" msgid "Unblock user from group" msgstr "אין משתמש כזה." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "אין משתמש כזה." -#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61 -#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87 -#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31 -#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "לא מחובר." +#: actions/block.php:69 +#, fuzzy +msgid "You already blocked that user." +msgstr "כבר נכנסת למערכת!" -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 -msgid "No profile specified." -msgstr "" - -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 -msgid "No profile with that ID." -msgstr "" - -#: actions/block.php:111 actions/block.php:134 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 #, fuzzy msgid "Block user" msgstr "אין משתמש כזה." -#: actions/block.php:136 +#: actions/block.php:130 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/block.php:149 actions/deletenotice.php:145 -#: actions/groupblock.php:178 +#: actions/block.php:143 actions/deletenotice.php:145 +#: actions/deleteuser.php:147 actions/groupblock.php:178 msgid "No" msgstr "לא" -#: actions/block.php:149 +#: actions/block.php:143 actions/deleteuser.php:147 #, fuzzy msgid "Do not block this user" msgstr "אין משתמש כזה." -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:179 +#: actions/block.php:144 actions/deletenotice.php:146 +#: actions/deleteuser.php:148 actions/groupblock.php:179 msgid "Yes" msgstr "כן" -#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 -#: lib/blockform.php:153 +#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "אין משתמש כזה." -#: actions/block.php:165 -#, fuzzy -msgid "You have already blocked this user." -msgstr "כבר נכנסת למערכת!" - -#: actions/block.php:170 +#: actions/block.php:162 msgid "Failed to save block information." msgstr "" @@ -785,6 +772,15 @@ msgstr "הודעות" msgid "No such notice." msgstr "אין הודעה כזו." +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 +#: actions/unsubscribe.php:52 lib/adminpanelaction.php:72 +#: lib/profileformaction.php:63 lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "לא מחובר." + #: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "" @@ -816,6 +812,144 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "" +#: actions/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "עידכון המשתמש נכשל." + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "ניתן להשתמש במנוי המקומי!" + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +#, fuzzy +msgid "Delete user" +msgstr "מחק" + +#: actions/deleteuser.php:135 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "אין משתמש כזה." + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/adminpanelaction.php:275 lib/groupnav.php:119 +msgid "Design" +msgstr "" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "" + +#: actions/designadminpanel.php:220 +msgid "Unable to delete design setting." +msgstr "" + +#: actions/designadminpanel.php:301 +#, fuzzy, php-format +msgid "Theme not available: %s" +msgstr "עמוד זה אינו זמין בסוג מדיה שאתה יכול לקבל" + +#: actions/designadminpanel.php:406 +#, fuzzy +msgid "Change theme" +msgstr "שנה" + +#: actions/designadminpanel.php:410 +msgid "Theme" +msgstr "" + +#: actions/designadminpanel.php:411 +msgid "Theme for the site." +msgstr "" + +#: actions/designadminpanel.php:420 lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: actions/designadminpanel.php:424 actions/designadminpanel.php:498 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: actions/designadminpanel.php:429 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "זה ארוך מידי. אורך מירבי להודעה הוא 140 אותיות." + +#: actions/designadminpanel.php:459 lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: actions/designadminpanel.php:475 lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: actions/designadminpanel.php:476 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: actions/designadminpanel.php:481 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: actions/designadminpanel.php:490 lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "שנה סיסמה" + +#: actions/designadminpanel.php:511 lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "התחבר" + +#: actions/designadminpanel.php:524 lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "חיפוש" + +#: actions/designadminpanel.php:537 lib/designsettings.php:217 +msgid "Text" +msgstr "טקסט" + +#: actions/designadminpanel.php:550 lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "היכנס" + +#: actions/designadminpanel.php:611 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: actions/designadminpanel.php:612 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: actions/designadminpanel.php:618 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: actions/designadminpanel.php:620 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/siteadminpanel.php:371 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 actions/useradminpanel.php:226 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "שמור" + +#: actions/designadminpanel.php:621 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "" @@ -959,14 +1093,6 @@ msgstr "" msgid "Publish a MicroID for my email address." msgstr "" -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "שמור" - #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." @@ -980,7 +1106,7 @@ msgstr "" msgid "Cannot normalize that email address" msgstr "" -#: actions/emailsettings.php:330 +#: actions/emailsettings.php:330 actions/siteadminpanel.php:156 msgid "Not a valid email address" msgstr "" @@ -1180,6 +1306,18 @@ msgstr "אין הודעה כזו." msgid "Cannot read file." msgstr "אין הודעה כזו." +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +msgid "No profile specified." +msgstr "" + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: lib/profileformaction.php:77 +msgid "No profile with that ID." +msgstr "" + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 msgid "No group specified." @@ -1300,11 +1438,11 @@ msgstr "" msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:439 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:346 lib/blockform.php:153 +#: actions/groupmembers.php:346 lib/blockform.php:69 msgid "Block" msgstr "" @@ -1393,7 +1531,7 @@ msgstr "" msgid "User is not blocked from group." msgstr "למשתמש אין פרופיל." -#: actions/groupunblock.php:128 actions/unblock.php:108 +#: actions/groupunblock.php:128 actions/unblock.php:77 #, fuzzy msgid "Error removing the block." msgstr "שגיאה בשמירת המשתמש." @@ -1672,7 +1810,7 @@ msgstr "שם משתמש או סיסמה לא נכונים." msgid "Error setting user." msgstr "שגיאה ביצירת שם המשתמש." -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: actions/login.php:204 actions/login.php:257 lib/action.php:457 #: lib/logingroupnav.php:79 msgid "Login" msgstr "היכנס" @@ -2094,7 +2232,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:144 +#: actions/profilesettings.php:144 actions/siteadminpanel.php:275 msgid "Language" msgstr "שפה" @@ -2120,7 +2258,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "הביוגרפיה ארוכה מידי (לכל היותר 140 אותיות)" -#: actions/profilesettings.php:228 +#: actions/profilesettings.php:228 actions/siteadminpanel.php:163 msgid "Timezone not selected." msgstr "" @@ -2146,7 +2284,7 @@ msgstr "שמירת הפרופיל נכשלה." msgid "Couldn't save tags." msgstr "שמירת הפרופיל נכשלה." -#: actions/profilesettings.php:344 +#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 msgid "Settings saved." msgstr "ההגדרות נשמרו." @@ -2380,7 +2518,7 @@ msgstr "שגיאה באישור הקוד." msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: actions/register.php:114 actions/register.php:502 lib/action.php:454 #: lib/logingroupnav.php:85 msgid "Register" msgstr "הירשם" @@ -2424,7 +2562,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:253 lib/accountsettingsaction.php:120 msgid "Email" msgstr "" @@ -2512,7 +2650,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "כתובת הפרופיל שלך בשרות ביקרובלוג תואם אחר" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 +#: lib/userprofile.php:356 msgid "Subscribe" msgstr "הירשם כמנוי" @@ -2587,6 +2725,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "תגובת עבור %s" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "לא שלחנו אלינו את הפרופיל הזה" + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "למשתמש אין פרופיל." + #: actions/showfavorites.php:79 #, fuzzy, php-format msgid "%s's favorite notices, page %d" @@ -2830,6 +2978,140 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" +#: actions/silence.php:65 actions/unsilence.php:65 +msgid "You cannot silence users on this site." +msgstr "" + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "למשתמש אין פרופיל." + +#: actions/siteadminpanel.php:58 lib/adminpanelaction.php:272 +msgid "Site" +msgstr "" + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site." +msgstr "" + +#: actions/siteadminpanel.php:145 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:153 +msgid "You must have a valid contact email address" +msgstr "" + +#: actions/siteadminpanel.php:171 +#, php-format +msgid "Unknown language \"%s\"" +msgstr "" + +#: actions/siteadminpanel.php:178 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/siteadminpanel.php:184 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/siteadminpanel.php:190 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/siteadminpanel.php:241 +#, fuzzy +msgid "Site name" +msgstr "הודעה חדשה" + +#: actions/siteadminpanel.php:242 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:246 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:249 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:250 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:254 +msgid "contact email address for your site" +msgstr "" + +#: actions/siteadminpanel.php:268 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:269 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:276 +msgid "Default site language" +msgstr "" + +#: actions/siteadminpanel.php:282 +#, fuzzy +msgid "Private" +msgstr "פרטיות" + +#: actions/siteadminpanel.php:284 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/siteadminpanel.php:290 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/siteadminpanel.php:291 +msgid "In a scheduled job" +msgstr "" + +#: actions/siteadminpanel.php:292 +#, fuzzy +msgid "Never" +msgstr "שיחזור" + +#: actions/siteadminpanel.php:294 +msgid "Data snapshots" +msgstr "" + +#: actions/siteadminpanel.php:295 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/siteadminpanel.php:301 +msgid "Frequency" +msgstr "" + +#: actions/siteadminpanel.php:302 +msgid "Snapshots will be sent once every N Web hits" +msgstr "" + +#: actions/siteadminpanel.php:309 +msgid "Report URL" +msgstr "" + +#: actions/siteadminpanel.php:310 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/siteadminpanel.php:371 actions/useradminpanel.php:226 +#, fuzzy +msgid "Save site settings" +msgstr "הגדרות" + #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "" @@ -3101,6 +3383,21 @@ msgstr "אין הודעה כזו." msgid "API method under construction." msgstr "" +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "כבר נכנסת למערכת!" + +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "למשתמש אין פרופיל." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "למשתמש אין פרופיל." + #: actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." @@ -3121,6 +3418,31 @@ msgstr "בטל מנוי" msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" +#: actions/useradminpanel.php:58 lib/personalgroupnav.php:115 +msgid "User" +msgstr "מתשמש" + +#: actions/useradminpanel.php:69 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:171 +#, fuzzy +msgid "Closed" +msgstr "אין משתמש כזה." + +#: actions/useradminpanel.php:173 +msgid "Is registration on this site prohibited?" +msgstr "" + +#: actions/useradminpanel.php:178 +msgid "Invite-only" +msgstr "" + +#: actions/useradminpanel.php:180 +msgid "Is registration on this site only open to invited users?" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "אשר מנוי" @@ -3280,11 +3602,15 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: classes/Message.php:55 +#: classes/Message.php:45 +msgid "You are banned from sending direct messages." +msgstr "" + +#: classes/Message.php:61 msgid "Could not insert message." msgstr "" -#: classes/Message.php:65 +#: classes/Message.php:71 msgid "Could not update message with new URI." msgstr "" @@ -3314,15 +3640,15 @@ msgid "" "few minutes." msgstr "" -#: classes/Notice.php:202 +#: classes/Notice.php:200 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:268 classes/Notice.php:293 +#: classes/Notice.php:265 classes/Notice.php:290 msgid "Problem saving notice." msgstr "בעיה בשמירת ההודעה." -#: classes/Notice.php:1120 +#: classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "שגיאת מסד נתונים בהכנסת התגובה: %s" @@ -3353,10 +3679,6 @@ msgstr "" msgid "Change email handling" msgstr "" -#: lib/accountsettingsaction.php:124 lib/groupnav.php:119 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:124 #, fuzzy msgid "Design your profile" @@ -3409,101 +3731,106 @@ msgstr "התחבר" msgid "Connect to services" msgstr "נכשלה ההפניה לשרת: %s" -#: lib/action.php:439 lib/subgroupnav.php:105 +#: lib/action.php:439 +#, fuzzy +msgid "Change site configuration" +msgstr "הרשמות" + +#: lib/action.php:443 lib/subgroupnav.php:105 msgid "Invite" msgstr "" -#: lib/action.php:440 lib/subgroupnav.php:106 +#: lib/action.php:444 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout" msgstr "צא" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout from the site" msgstr "" -#: lib/action.php:450 +#: lib/action.php:454 #, fuzzy msgid "Create an account" msgstr "צור חשבון חדש" -#: lib/action.php:453 +#: lib/action.php:457 msgid "Login to the site" msgstr "" -#: lib/action.php:456 lib/action.php:719 +#: lib/action.php:460 lib/action.php:723 msgid "Help" msgstr "עזרה" -#: lib/action.php:456 +#: lib/action.php:460 #, fuzzy msgid "Help me!" msgstr "עזרה" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search" msgstr "חיפוש" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search for people or text" msgstr "" -#: lib/action.php:480 +#: lib/action.php:484 #, fuzzy msgid "Site notice" msgstr "הודעה חדשה" -#: lib/action.php:546 +#: lib/action.php:550 msgid "Local views" msgstr "" -#: lib/action.php:612 +#: lib/action.php:616 #, fuzzy msgid "Page notice" msgstr "הודעה חדשה" -#: lib/action.php:714 +#: lib/action.php:718 #, fuzzy msgid "Secondary site navigation" msgstr "הרשמות" -#: lib/action.php:721 +#: lib/action.php:725 msgid "About" msgstr "אודות" -#: lib/action.php:723 +#: lib/action.php:727 msgid "FAQ" msgstr "רשימת שאלות נפוצות" -#: lib/action.php:727 +#: lib/action.php:731 msgid "TOS" msgstr "" -#: lib/action.php:730 +#: lib/action.php:734 msgid "Privacy" msgstr "פרטיות" -#: lib/action.php:732 +#: lib/action.php:736 msgid "Source" msgstr "מקור" -#: lib/action.php:734 +#: lib/action.php:738 msgid "Contact" msgstr "צור קשר" -#: lib/action.php:736 +#: lib/action.php:740 msgid "Badge" msgstr "" -#: lib/action.php:764 +#: lib/action.php:768 msgid "StatusNet software license" msgstr "" -#: lib/action.php:767 +#: lib/action.php:771 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3512,12 +3839,12 @@ msgstr "" "**%%site.name%%** הוא שרות ביקרובלוג הניתן על ידי [%%site.broughtby%%](%%" "site.broughtbyurl%%)." -#: lib/action.php:769 +#: lib/action.php:773 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** הוא שרות ביקרובלוג." -#: lib/action.php:771 +#: lib/action.php:775 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3528,37 +3855,58 @@ msgstr "" "s, המופצת תחת רשיון [GNU Affero General Public License](http://www.fsf.org/" "licensing/licenses/agpl-3.0.html)" -#: lib/action.php:785 +#: lib/action.php:789 #, fuzzy msgid "Site content license" msgstr "הודעה חדשה" -#: lib/action.php:794 +#: lib/action.php:798 msgid "All " msgstr "" -#: lib/action.php:799 +#: lib/action.php:803 msgid "license." msgstr "" -#: lib/action.php:1052 +#: lib/action.php:1067 msgid "Pagination" msgstr "" -#: lib/action.php:1061 +#: lib/action.php:1076 #, fuzzy msgid "After" msgstr "<< אחרי" -#: lib/action.php:1069 +#: lib/action.php:1084 #, fuzzy msgid "Before" msgstr "לפני >>" -#: lib/action.php:1117 +#: lib/action.php:1132 msgid "There was a problem with your session token." msgstr "" +#: lib/adminpanelaction.php:96 +msgid "You cannot make changes to this site." +msgstr "" + +#: lib/adminpanelaction.php:195 +msgid "showForm() not implemented." +msgstr "" + +#: lib/adminpanelaction.php:224 +msgid "saveSettings() not implemented." +msgstr "" + +#: lib/adminpanelaction.php:273 +#, fuzzy +msgid "Basic site configuration" +msgstr "הרשמות" + +#: lib/adminpanelaction.php:276 +msgid "Design configuration" +msgstr "" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -3734,30 +4082,36 @@ msgstr "לא שלחנו אלינו את הפרופיל הזה" #: lib/command.php:620 #, fuzzy -msgid "You are subscribed to these people: " -msgstr "לא שלחנו אלינו את הפרופיל הזה" +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "לא שלחנו אלינו את הפרופיל הזה" +msgstr[1] "לא שלחנו אלינו את הפרופיל הזה" -#: lib/command.php:637 +#: lib/command.php:640 #, fuzzy msgid "No one is subscribed to you." msgstr "הרשמה מרוחקת" -#: lib/command.php:639 +#: lib/command.php:642 #, fuzzy -msgid "These people are subscribed to you: " -msgstr "הרשמה מרוחקת" +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "הרשמה מרוחקת" +msgstr[1] "הרשמה מרוחקת" -#: lib/command.php:656 +#: lib/command.php:662 #, fuzzy msgid "You are not a member of any groups." msgstr "לא שלחנו אלינו את הפרופיל הזה" -#: lib/command.php:658 +#: lib/command.php:664 #, fuzzy -msgid "You are a member of these groups: " -msgstr "לא שלחנו אלינו את הפרופיל הזה" +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "לא שלחנו אלינו את הפרופיל הזה" +msgstr[1] "לא שלחנו אלינו את הפרופיל הזה" -#: lib/command.php:670 +#: lib/command.php:678 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -3796,20 +4150,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:192 +#: lib/common.php:203 #, fuzzy msgid "No configuration file found. " msgstr "אין קוד אישור." -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:195 +#: lib/common.php:206 msgid "Go to the installer." msgstr "" @@ -3829,10 +4183,6 @@ msgstr "" msgid "Database error" msgstr "" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" @@ -3843,66 +4193,6 @@ 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:217 -msgid "Text" -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:372 msgid "Bad default color settings: " msgstr "" @@ -4140,12 +4430,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:235 +#: lib/mail.php:236 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" -#: lib/mail.php:240 +#: lib/mail.php:241 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4165,29 +4455,29 @@ msgstr "" " שלך,\n" " %4$s.\n" -#: lib/mail.php:253 +#: lib/mail.php:254 #, php-format msgid "Location: %s\n" msgstr "" -#: lib/mail.php:255 +#: lib/mail.php:256 #, php-format msgid "Homepage: %s\n" msgstr "" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4200,21 +4490,21 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4230,12 +4520,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4254,12 +4544,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:554 +#: lib/mail.php:559 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%1$s כעת מאזין להודעות שלך ב-%2$s" -#: lib/mail.php:556 +#: lib/mail.php:561 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4280,12 +4570,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4427,7 +4717,11 @@ msgstr "שגיאה בהכנסת פרופיל מרוחק" msgid "Duplicate notice" msgstr "הודעה חדשה" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +msgid "You have been banned from subscribing." +msgstr "" + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "הכנסת מנוי חדש נכשלה." @@ -4443,10 +4737,6 @@ msgstr "תגובות" msgid "Favorites" msgstr "מועדפים" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "מתשמש" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" @@ -4498,6 +4788,15 @@ msgstr "חבר מאז" msgid "All groups" msgstr "" +#: lib/profileformaction.php:123 +#, fuzzy +msgid "No return-to arguments" +msgstr "אין מסמך כזה." + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "ציבורי" @@ -4519,6 +4818,15 @@ msgstr "" msgid "Popular" msgstr "אנשים" +#: lib/sandboxform.php:67 +msgid "Sandbox" +msgstr "" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "אין משתמש כזה." + #: lib/searchaction.php:120 #, fuzzy msgid "Search site" @@ -4558,6 +4866,16 @@ msgstr "" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "הודעה חדשה" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "אין משתמש כזה." + #: lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" @@ -4587,29 +4905,29 @@ msgstr "" msgid "(none)" msgstr "" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "" -#: lib/subs.php:52 +#: lib/subs.php:56 #, fuzzy msgid "User has blocked you." msgstr "למשתמש אין פרופיל." -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "" -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "" -#: lib/subs.php:124 +#: lib/subs.php:128 #, fuzzy msgid "Not subscribed!" msgstr "לא מנוי!" -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "מחיקת המנוי לא הצליחה." @@ -4622,6 +4940,29 @@ msgstr "לא" msgid "Top posters" msgstr "" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "אין משתמש כזה." + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "אין משתמש כזה." + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "אין משתמש כזה." + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "" @@ -4726,3 +5067,7 @@ msgstr "" #: scripts/maildaemon.php:61 msgid "Sorry, no incoming email allowed." msgstr "" + +#, fuzzy +#~ msgid "These people are subscribed to you: " +#~ msgstr "הרשמה מרוחקת" diff --git a/locale/is/LC_MESSAGES/statusnet.mo b/locale/is/LC_MESSAGES/statusnet.mo index 0d3848efd37634a2b6772b2bdf992a97161aeebf..9a9203ec0a8f39f1622c5ed252b548209e918e86 100644 GIT binary patch delta 17341 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 delta 15341 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 diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 231078cc7a..c1a19d1651 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -6,12 +6,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-16 19:42+0000\n" -"PO-Revision-Date: 2009-11-16 19:43:39+0000\n" +"POT-Creation-Date: 2009-11-18 19:31+0000\n" +"PO-Revision-Date: 2009-11-18 19:32:04+0000\n" "Language-Team: Italian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\n" +"X-Generator: MediaWiki 1.16alpha(r59207); Translate extension (2009-11-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: out-statusnet\n" @@ -43,7 +43,7 @@ msgstr "Nessuna tale etichetta." #: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 #: lib/command.php:364 lib/command.php:411 lib/command.php:466 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 +#: lib/subs.php:34 lib/subs.php:116 msgid "No such user." msgstr "Nessun tale utente." @@ -146,7 +146,8 @@ msgstr "Impossibile aggiornare l'utente." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 #: actions/apistatusesupdate.php:127 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: actions/designadminpanel.php:125 actions/newnotice.php:94 +#: lib/designsettings.php:283 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -232,12 +233,12 @@ msgstr "Tutti i messaggi diretti inviati a %s" #: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 #: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigrouplistall.php:120 actions/apigrouplist.php:132 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apigroupmembership.php:106 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/apitimelinegroup.php:147 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!" @@ -378,6 +379,13 @@ msgstr "Soprannome già in uso. Prova con un altro." msgid "Alias can't be the same as nickname." msgstr "" +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#, fuzzy +msgid "Group not found!" +msgstr "Metodo delle API non trovato!" + #: actions/apigroupjoin.php:110 #, fuzzy msgid "You are already a member of that group." @@ -469,13 +477,13 @@ msgstr "%s / Preferiti da %s" msgid "%s updates favorited by %s / %s." msgstr "%s aggiornamenti preferiti da %s / %s" -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Attività di %s" -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -563,7 +571,8 @@ msgstr "Originale" msgid "Preview" msgstr "Anteprima" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#: actions/avatarsettings.php:148 lib/deleteuserform.php:66 +#: lib/noticelist.php:522 msgid "Delete" msgstr "Elimina" @@ -575,7 +584,7 @@ msgstr "Carica" msgid "Crop" msgstr "Ritaglia" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/avatarsettings.php:265 actions/disfavor.php:74 #: actions/emailsettings.php:237 actions/favor.php:75 #: actions/groupblock.php:66 actions/grouplogo.php:309 #: actions/groupunblock.php:66 actions/imsettings.php:206 @@ -585,7 +594,7 @@ msgstr "Ritaglia" #: actions/profilesettings.php:187 actions/recoverpassword.php:337 #: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 +#: actions/tagother.php:166 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 lib/designsettings.php:294 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." @@ -652,71 +661,50 @@ msgstr "Un elenco degli utenti in questo gruppo." msgid "Unblock user from group" msgstr "Sblocco dell'utente non riuscito." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" msgstr "Sblocca" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Sblocca questo utente" -#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61 -#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87 -#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31 -#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "Non connesso." +#: actions/block.php:69 +#, fuzzy +msgid "You already blocked that user." +msgstr "Hai già bloccato questo utente." -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 -msgid "No profile specified." -msgstr "Nessun profilo specificato." - -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 -msgid "No profile with that ID." -msgstr "Nessun profilo con quel ID." - -#: actions/block.php:111 actions/block.php:134 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 msgid "Block user" msgstr "Blocca utente" -#: actions/block.php:136 +#: actions/block.php:130 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/block.php:149 actions/deletenotice.php:145 -#: actions/groupblock.php:178 +#: actions/block.php:143 actions/deletenotice.php:145 +#: actions/deleteuser.php:147 actions/groupblock.php:178 msgid "No" msgstr "No" -#: actions/block.php:149 +#: actions/block.php:143 actions/deleteuser.php:147 #, fuzzy msgid "Do not block this user" msgstr "Sblocca questo utente" -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:179 +#: actions/block.php:144 actions/deletenotice.php:146 +#: actions/deleteuser.php:148 actions/groupblock.php:179 msgid "Yes" msgstr "Sì" -#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 -#: lib/blockform.php:153 +#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 msgid "Block this user" msgstr "Blocca questo utente" -#: actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Hai già bloccato questo utente." - -#: actions/block.php:170 +#: actions/block.php:162 msgid "Failed to save block information." msgstr "Salvataggio delle informazioni per il blocco non riuscito." @@ -782,6 +770,15 @@ msgstr "Messaggi" msgid "No such notice." msgstr "Nessun tale messaggio." +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 +#: actions/unsubscribe.php:52 lib/adminpanelaction.php:72 +#: lib/profileformaction.php:63 lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Non connesso." + #: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Impossibile eliminare questo messaggio." @@ -817,6 +814,146 @@ msgstr "Elimina questo messaggio" 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/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "Impossibile aggiornare l'utente." + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "Non puoi eliminare lo stato di un altro utente." + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +#, fuzzy +msgid "Delete user" +msgstr "Elimina" + +#: actions/deleteuser.php:135 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "Elimina questo messaggio" + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/adminpanelaction.php:275 lib/groupnav.php:119 +msgid "Design" +msgstr "" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "" + +#: actions/designadminpanel.php:220 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "Impossibile salvare le tue impostazioni di Twitter!" + +#: actions/designadminpanel.php:301 +#, fuzzy, php-format +msgid "Theme not available: %s" +msgstr "Questa pagina non è disponibile in un " + +#: actions/designadminpanel.php:406 +#, fuzzy +msgid "Change theme" +msgstr "Modifica" + +#: actions/designadminpanel.php:410 +msgid "Theme" +msgstr "" + +#: actions/designadminpanel.php:411 +#, fuzzy +msgid "Theme for the site." +msgstr "Sconnettiti dal sito" + +#: actions/designadminpanel.php:420 lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: actions/designadminpanel.php:424 actions/designadminpanel.php:498 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: actions/designadminpanel.php:429 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "Puoi caricare un'immagine per il logo del tuo gruppo." + +#: actions/designadminpanel.php:459 lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: actions/designadminpanel.php:475 lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: actions/designadminpanel.php:476 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: actions/designadminpanel.php:481 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: actions/designadminpanel.php:490 lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Modifica la tua password" + +#: actions/designadminpanel.php:511 lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Connetti" + +#: actions/designadminpanel.php:524 lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Ricerca" + +#: actions/designadminpanel.php:537 lib/designsettings.php:217 +msgid "Text" +msgstr "Testo" + +#: actions/designadminpanel.php:550 lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Elenco" + +#: actions/designadminpanel.php:611 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: actions/designadminpanel.php:612 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: actions/designadminpanel.php:618 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: actions/designadminpanel.php:620 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/siteadminpanel.php:371 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 actions/useradminpanel.php:226 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Salva" + +#: actions/designadminpanel.php:621 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "Questo messaggio non è un preferito!" @@ -963,14 +1100,6 @@ msgstr "Voglio inviare i messaggi via email" msgid "Publish a MicroID for my email address." msgstr "Pubblica un MicroID per il mio indirizzo email" -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Salva" - #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." @@ -984,7 +1113,7 @@ msgstr "Nessun indirizzo email." msgid "Cannot normalize that email address" msgstr "Impossibile normalizzare l'indirizzo email" -#: actions/emailsettings.php:330 +#: actions/emailsettings.php:330 actions/siteadminpanel.php:156 msgid "Not a valid email address" msgstr "Non è un indirizzo email valido" @@ -1186,6 +1315,18 @@ msgstr "Nessun tale messaggio." msgid "Cannot read file." msgstr "Perso il nostro file." +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +msgid "No profile specified." +msgstr "Nessun profilo specificato." + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: lib/profileformaction.php:77 +msgid "No profile with that ID." +msgstr "Nessun profilo con quel ID." + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 #, fuzzy @@ -1308,11 +1449,11 @@ msgstr "Membri del gruppo %s, pagina %d" msgid "A list of the users in this group." msgstr "Un elenco degli utenti in questo gruppo." -#: actions/groupmembers.php:175 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:439 lib/groupnav.php:107 msgid "Admin" msgstr "Amministra" -#: actions/groupmembers.php:346 lib/blockform.php:153 +#: actions/groupmembers.php:346 lib/blockform.php:69 msgid "Block" msgstr "Blocca" @@ -1401,7 +1542,7 @@ msgstr "" msgid "User is not blocked from group." msgstr "L'utente ti ha bloccato." -#: actions/groupunblock.php:128 actions/unblock.php:108 +#: actions/groupunblock.php:128 actions/unblock.php:77 msgid "Error removing the block." msgstr "Errore nel rimuovere il blocco." @@ -1713,7 +1854,7 @@ msgstr "Nome utente o password non corretto." msgid "Error setting user." msgstr "Errore nell'impostare l'utente." -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: actions/login.php:204 actions/login.php:257 lib/action.php:457 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Accedi" @@ -2140,7 +2281,7 @@ msgid "" msgstr "" "Le tue etichette (lettere, numeri, -, . e _), separate da virgole o spazi" -#: actions/profilesettings.php:144 +#: actions/profilesettings.php:144 actions/siteadminpanel.php:275 msgid "Language" msgstr "Lingua" @@ -2168,7 +2309,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "La biografia è troppo lunga (max 140 caratteri)." -#: actions/profilesettings.php:228 +#: actions/profilesettings.php:228 actions/siteadminpanel.php:163 msgid "Timezone not selected." msgstr "Fuso orario non selezionato" @@ -2193,7 +2334,7 @@ msgstr "Impossibile salvare il profilo." msgid "Couldn't save tags." msgstr "Impossibile salvare le etichette." -#: actions/profilesettings.php:344 +#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 msgid "Settings saved." msgstr "Impostazioni salvate." @@ -2431,7 +2572,7 @@ msgstr "Errore con il codice di conferma." msgid "Registration successful" msgstr "Registrazione riuscita" -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: actions/register.php:114 actions/register.php:502 lib/action.php:454 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Registra" @@ -2476,7 +2617,7 @@ msgid "Same as password above. Required." msgstr "Stessa password di sopra. Richiesta." #: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:253 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Email" @@ -2584,7 +2725,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL del tuo profilo su un altro servizio di micro-blog compatibile" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 +#: lib/userprofile.php:356 msgid "Subscribe" msgstr "Abbonati" @@ -2660,6 +2801,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Messaggio a %1$s su %2$s" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "Non puoi inviare un messaggio a questo utente." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "L'utente ti ha bloccato." + #: actions/showfavorites.php:79 #, fuzzy, php-format msgid "%s's favorite notices, page %d" @@ -2905,6 +3056,145 @@ msgstr "" "**%s** ha un account su %%%%site.name%%%%, un servizio di [micro-blog]" "(http://it.wikipedia.org/wiki/Microblogging) " +#: actions/silence.php:65 actions/unsilence.php:65 +#, fuzzy +msgid "You cannot silence users on this site." +msgstr "Non puoi inviare un messaggio a questo utente." + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "L'utente ti ha bloccato." + +#: actions/siteadminpanel.php:58 lib/adminpanelaction.php:272 +#, fuzzy +msgid "Site" +msgstr "Invita" + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site." +msgstr "" + +#: actions/siteadminpanel.php:145 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:153 +#, fuzzy +msgid "You must have a valid contact email address" +msgstr "Non è un indirizzo email valido" + +#: actions/siteadminpanel.php:171 +#, php-format +msgid "Unknown language \"%s\"" +msgstr "" + +#: actions/siteadminpanel.php:178 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/siteadminpanel.php:184 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/siteadminpanel.php:190 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/siteadminpanel.php:241 +#, fuzzy +msgid "Site name" +msgstr "Messaggio del sito" + +#: actions/siteadminpanel.php:242 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:246 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:249 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:250 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:254 +#, fuzzy +msgid "contact email address for your site" +msgstr "Nuovo indirizzo email per inviare messaggi a %s" + +#: actions/siteadminpanel.php:268 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:269 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:276 +#, fuzzy +msgid "Default site language" +msgstr "Lingua preferita" + +#: actions/siteadminpanel.php:282 +#, fuzzy +msgid "Private" +msgstr "Privacy" + +#: actions/siteadminpanel.php:284 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/siteadminpanel.php:290 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/siteadminpanel.php:291 +msgid "In a scheduled job" +msgstr "" + +#: actions/siteadminpanel.php:292 +#, fuzzy +msgid "Never" +msgstr "Recupera" + +#: actions/siteadminpanel.php:294 +msgid "Data snapshots" +msgstr "" + +#: actions/siteadminpanel.php:295 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/siteadminpanel.php:301 +msgid "Frequency" +msgstr "" + +#: actions/siteadminpanel.php:302 +msgid "Snapshots will be sent once every N Web hits" +msgstr "" + +#: actions/siteadminpanel.php:309 +msgid "Report URL" +msgstr "" + +#: actions/siteadminpanel.php:310 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/siteadminpanel.php:371 actions/useradminpanel.php:226 +#, fuzzy +msgid "Save site settings" +msgstr "Impostazioni immagine" + #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "Impostazioni SMS" @@ -3178,6 +3468,21 @@ msgstr "Nessuna tale etichetta." msgid "API method under construction." msgstr "Metodo delle API in lavorazione." +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "Hai già bloccato questo utente." + +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "L'utente ti ha bloccato." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "L'utente non ha un profilo." + #: actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Nessun ID di profilo nella richiesta." @@ -3195,6 +3500,32 @@ msgstr "Annullato abbonamento" msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" +#: actions/useradminpanel.php:58 lib/personalgroupnav.php:115 +msgid "User" +msgstr "Utente" + +#: actions/useradminpanel.php:69 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:171 +#, fuzzy +msgid "Closed" +msgstr "Blocca" + +#: actions/useradminpanel.php:173 +msgid "Is registration on this site prohibited?" +msgstr "" + +#: actions/useradminpanel.php:178 +#, fuzzy +msgid "Invite-only" +msgstr "Invita" + +#: actions/useradminpanel.php:180 +msgid "Is registration on this site only open to invited users?" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizza abbonamento" @@ -3357,11 +3688,16 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: classes/Message.php:55 +#: classes/Message.php:45 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "Errore nell'inviare il messaggio diretto." + +#: classes/Message.php:61 msgid "Could not insert message." msgstr "Impossibile inserire messaggio." -#: classes/Message.php:65 +#: classes/Message.php:71 msgid "Could not update message with new URI." msgstr "Impossibile aggiornare il messaggio con il nuovo URI." @@ -3395,15 +3731,15 @@ msgstr "" "Troppi messaggi troppo velocemente; fai una pausa e scrivi di nuovo tra " "qualche minuto." -#: classes/Notice.php:202 +#: classes/Notice.php:200 msgid "You are banned from posting notices on this site." msgstr "Ti è proibito inviare messaggi su questo sito." -#: classes/Notice.php:268 classes/Notice.php:293 +#: classes/Notice.php:265 classes/Notice.php:290 msgid "Problem saving notice." msgstr "Problema nel salvare il messaggio." -#: classes/Notice.php:1120 +#: classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Errore del DB nell'inserire la risposta: %s" @@ -3433,10 +3769,6 @@ msgstr "Modifica la tua password" msgid "Change email handling" msgstr "Modifica la gestione dell'email" -#: lib/accountsettingsaction.php:124 lib/groupnav.php:119 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:124 #, fuzzy msgid "Design your profile" @@ -3488,97 +3820,102 @@ msgstr "Connetti" msgid "Connect to services" msgstr "Impossibile redirigere al server: %s" -#: lib/action.php:439 lib/subgroupnav.php:105 +#: lib/action.php:439 +#, fuzzy +msgid "Change site configuration" +msgstr "Esplorazione sito primaria" + +#: lib/action.php:443 lib/subgroupnav.php:105 msgid "Invite" msgstr "Invita" -#: lib/action.php:440 lib/subgroupnav.php:106 +#: lib/action.php:444 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Invita amici e colleghi a seguirti su %s" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout" msgstr "Esci" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout from the site" msgstr "Sconnettiti dal sito" -#: lib/action.php:450 +#: lib/action.php:454 msgid "Create an account" msgstr "Crea un account" -#: lib/action.php:453 +#: lib/action.php:457 msgid "Login to the site" msgstr "Accedi al sito" -#: lib/action.php:456 lib/action.php:719 +#: lib/action.php:460 lib/action.php:723 msgid "Help" msgstr "Aiuto" -#: lib/action.php:456 +#: lib/action.php:460 msgid "Help me!" msgstr "Aiutami!" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search" msgstr "Ricerca" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search for people or text" msgstr "Ricerca persone o per testo" -#: lib/action.php:480 +#: lib/action.php:484 msgid "Site notice" msgstr "Messaggio del sito" -#: lib/action.php:546 +#: lib/action.php:550 msgid "Local views" msgstr "Viste locali" -#: lib/action.php:612 +#: lib/action.php:616 msgid "Page notice" msgstr "Pagina messaggio" -#: lib/action.php:714 +#: lib/action.php:718 msgid "Secondary site navigation" msgstr "Esplorazione secondaria del sito" -#: lib/action.php:721 +#: lib/action.php:725 msgid "About" msgstr "Informazioni" -#: lib/action.php:723 +#: lib/action.php:727 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:727 +#: lib/action.php:731 msgid "TOS" msgstr "" -#: lib/action.php:730 +#: lib/action.php:734 msgid "Privacy" msgstr "Privacy" -#: lib/action.php:732 +#: lib/action.php:736 msgid "Source" msgstr "Sorgenti" -#: lib/action.php:734 +#: lib/action.php:738 msgid "Contact" msgstr "Contatti" -#: lib/action.php:736 +#: lib/action.php:740 #, fuzzy msgid "Badge" msgstr "Richiama" -#: lib/action.php:764 +#: lib/action.php:768 msgid "StatusNet software license" msgstr "Licenza del software statusnet" -#: lib/action.php:767 +#: lib/action.php:771 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3587,12 +3924,12 @@ msgstr "" "**%%site.name%%** è un servizio di micro-blog offerto da [%%site.broughtby%%]" "(%%site.broughtbyurl%%). " -#: lib/action.php:769 +#: lib/action.php:773 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** è un servizio di micro-blog. " -#: lib/action.php:771 +#: lib/action.php:775 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3603,35 +3940,60 @@ msgstr "" "%s, disponibile sotto licenza [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:785 +#: lib/action.php:789 #, fuzzy msgid "Site content license" msgstr "Licenza del software statusnet" -#: lib/action.php:794 +#: lib/action.php:798 msgid "All " msgstr "Tutto " -#: lib/action.php:799 +#: lib/action.php:803 msgid "license." msgstr "licenza." -#: lib/action.php:1052 +#: lib/action.php:1067 msgid "Pagination" msgstr "Paginazione" -#: lib/action.php:1061 +#: lib/action.php:1076 msgid "After" msgstr "Successivi" -#: lib/action.php:1069 +#: lib/action.php:1084 msgid "Before" msgstr "Precedenti" -#: lib/action.php:1117 +#: lib/action.php:1132 msgid "There was a problem with your session token." msgstr "C'è stato un problema con il tuo token di sessione." +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "Non puoi inviare un messaggio a questo utente." + +#: lib/adminpanelaction.php:195 +#, fuzzy +msgid "showForm() not implemented." +msgstr "Comando non ancora implementato." + +#: lib/adminpanelaction.php:224 +#, fuzzy +msgid "saveSettings() not implemented." +msgstr "Comando non ancora implementato." + +#: lib/adminpanelaction.php:273 +#, fuzzy +msgid "Basic site configuration" +msgstr "Conferma indirizzo email" + +#: lib/adminpanelaction.php:276 +#, fuzzy +msgid "Design configuration" +msgstr "Conferma SMS" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -3807,30 +4169,36 @@ msgstr "Non sei abbonato a quel profilo." #: lib/command.php:620 #, fuzzy -msgid "You are subscribed to these people: " -msgstr "Non sei abbonato a quel profilo." +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "Non sei abbonato a quel profilo." +msgstr[1] "Non sei abbonato a quel profilo." -#: lib/command.php:637 +#: lib/command.php:640 #, fuzzy msgid "No one is subscribed to you." msgstr "Impossibile abbonare altri a te." -#: lib/command.php:639 +#: lib/command.php:642 #, fuzzy -msgid "These people are subscribed to you: " -msgstr "Persone abbonate a %s" +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "Impossibile abbonare altri a te." +msgstr[1] "Impossibile abbonare altri a te." -#: lib/command.php:656 +#: lib/command.php:662 #, fuzzy msgid "You are not a member of any groups." msgstr "Non sei un membro di quel gruppo." -#: lib/command.php:658 +#: lib/command.php:664 #, fuzzy -msgid "You are a member of these groups: " -msgstr "Non sei un membro di quel gruppo." +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "Non sei un membro di quel gruppo." +msgstr[1] "Non sei un membro di quel gruppo." -#: lib/command.php:670 +#: lib/command.php:678 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -3869,20 +4237,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:192 +#: lib/common.php:203 #, fuzzy msgid "No configuration file found. " msgstr "Nessun codice di conferma." -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:195 +#: lib/common.php:206 #, fuzzy msgid "Go to the installer." msgstr "Accedi al sito" @@ -3903,10 +4271,6 @@ msgstr "Aggiornamenti via SMS" msgid "Database error" msgstr "" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" @@ -3917,66 +4281,6 @@ 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:217 -msgid "Text" -msgstr "Testo" - -#: 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:372 msgid "Bad default color settings: " msgstr "" @@ -4206,12 +4510,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:235 +#: lib/mail.php:236 #, 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." -#: lib/mail.php:240 +#: lib/mail.php:241 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4232,17 +4536,17 @@ msgstr "" "Cordiali saluti,\n" "%4$s.\n" -#: lib/mail.php:253 +#: lib/mail.php:254 #, php-format msgid "Location: %s\n" msgstr "Ubicazione: %s\n" -#: lib/mail.php:255 +#: lib/mail.php:256 #, php-format msgid "Homepage: %s\n" msgstr "Pagina web: %s\n" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" @@ -4251,12 +4555,12 @@ msgstr "" "Biografia: %s\n" "\n" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "Nuovo indirizzo email per inviare messaggi a %s" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4277,21 +4581,21 @@ msgstr "" "Cordiali saluti,\n" "%4$s" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "stato di %s" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "Conferma SMS" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "%s ti ha richiamato" -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4307,12 +4611,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "Nuovo messaggio privato da %s" -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4331,12 +4635,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:554 +#: lib/mail.php:559 #, 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 +#: lib/mail.php:561 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4357,12 +4661,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4500,7 +4804,12 @@ msgstr "Errore nell'inserire un profilo remoto" msgid "Duplicate notice" msgstr "Elimina messaggio" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Quell'utente ti ha bloccato dall'abbonarti." + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Impossibile inserire un nuovo abbonamento." @@ -4516,10 +4825,6 @@ msgstr "Risposte" msgid "Favorites" msgstr "Preferiti" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Utente" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "In arrivo" @@ -4570,6 +4875,15 @@ msgstr "Membro dal" msgid "All groups" msgstr "Tutti i gruppi" +#: lib/profileformaction.php:123 +#, fuzzy +msgid "No return-to arguments" +msgstr "Nessun argomento ID." + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "Pubblico" @@ -4590,6 +4904,16 @@ msgstr "In evidenza" msgid "Popular" msgstr "Famosi" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "In arrivo" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Sblocca questo utente" + #: lib/searchaction.php:120 #, fuzzy msgid "Search site" @@ -4628,6 +4952,16 @@ msgstr "Sezione senza nome" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Messaggio del sito" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Blocca questo utente" + #: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" @@ -4657,28 +4991,28 @@ msgstr "" msgid "(none)" msgstr "(nessuna)" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "" -#: lib/subs.php:52 +#: lib/subs.php:56 msgid "User has blocked you." msgstr "L'utente ti ha bloccato." -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "Impossibile abbonarsi." -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "Impossibile abbonare altri a te." -#: lib/subs.php:124 +#: lib/subs.php:128 #, fuzzy msgid "Not subscribed!" msgstr "Non abbonato!" -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "Impossibile eliminare l'abbonamento." @@ -4690,6 +5024,29 @@ msgstr "Nessuno" msgid "Top posters" msgstr "Chi scrive più messaggi" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "Sblocca questo utente" + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Sblocca questo utente" + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Sblocca questo utente" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Annulla l'abbonamento da questo utente" @@ -4793,3 +5150,7 @@ msgstr "Quella non è la tua email di ricezione." #: scripts/maildaemon.php:61 msgid "Sorry, no incoming email allowed." msgstr "Email di ricezione non consentita." + +#, fuzzy +#~ msgid "These people are subscribed to you: " +#~ msgstr "Persone abbonate a %s" diff --git a/locale/ja/LC_MESSAGES/statusnet.mo b/locale/ja/LC_MESSAGES/statusnet.mo index 3fd89d0643f68e7a1332a12cff29c6acaf95030e..eeceb93e6255c49373d3ea0da6e14877b459b177 100644 GIT binary patch delta 13032 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 delta 11530 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" -#: lib/action.php:1117 +#: lib/action.php:1132 msgid "There was a problem with your session token." msgstr "" +#: lib/adminpanelaction.php:96 +msgid "You cannot make changes to this site." +msgstr "" + +#: lib/adminpanelaction.php:195 +msgid "showForm() not implemented." +msgstr "" + +#: lib/adminpanelaction.php:224 +msgid "saveSettings() not implemented." +msgstr "" + +#: lib/adminpanelaction.php:273 +#, fuzzy +msgid "Basic site configuration" +msgstr "メールアドレス確認" + +#: lib/adminpanelaction.php:276 +#, fuzzy +msgid "Design configuration" +msgstr "メールアドレス確認" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -3769,30 +4120,36 @@ msgstr "そのプロファイルは送信されていません。" #: lib/command.php:620 #, fuzzy -msgid "You are subscribed to these people: " -msgstr "そのプロファイルは送信されていません。" +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "そのプロファイルは送信されていません。" +msgstr[1] "そのプロファイルは送信されていません。" -#: lib/command.php:637 +#: lib/command.php:640 #, fuzzy msgid "No one is subscribed to you." msgstr "リモートサブスクライブ" -#: lib/command.php:639 +#: lib/command.php:642 #, fuzzy -msgid "These people are subscribed to you: " -msgstr "リモートサブスクライブ" +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "リモートサブスクライブ" +msgstr[1] "リモートサブスクライブ" -#: lib/command.php:656 +#: lib/command.php:662 #, fuzzy msgid "You are not a member of any groups." msgstr "そのプロファイルは送信されていません。" -#: lib/command.php:658 +#: lib/command.php:664 #, fuzzy -msgid "You are a member of these groups: " -msgstr "そのプロファイルは送信されていません。" +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "そのプロファイルは送信されていません。" +msgstr[1] "そのプロファイルは送信されていません。" -#: lib/command.php:670 +#: lib/command.php:678 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -3831,20 +4188,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:192 +#: lib/common.php:203 #, fuzzy msgid "No configuration file found. " msgstr "確認コードがありません。" -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:195 +#: lib/common.php:206 #, fuzzy msgid "Go to the installer." msgstr "サイトへログイン" @@ -3865,10 +4222,6 @@ msgstr "" msgid "Database error" msgstr "" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" @@ -3879,65 +4232,6 @@ 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 -msgid "Content" -msgstr "内容" - -#: lib/designsettings.php:204 -#, fuzzy -msgid "Sidebar" -msgstr "検索" - -#: lib/designsettings.php:217 -msgid "Text" -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:372 msgid "Bad default color settings: " msgstr "" @@ -4167,12 +4461,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:235 +#: lib/mail.php:236 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s は %2$s であなたの通知を購読しています。" -#: lib/mail.php:240 +#: lib/mail.php:241 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4193,29 +4487,29 @@ msgstr "" "確かにあなたの,\n" "%4$s.\n" -#: lib/mail.php:253 +#: lib/mail.php:254 #, php-format msgid "Location: %s\n" msgstr "場所: %s\n" -#: lib/mail.php:255 +#: lib/mail.php:256 #, php-format msgid "Homepage: %s\n" msgstr "ホームページ: %s\n" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4228,21 +4522,21 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "%s の状態" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "あなたは %s に突かれています" -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4258,12 +4552,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4282,12 +4576,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:554 +#: lib/mail.php:559 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%1$s は %2$s であなたの通知を聞いています。" -#: lib/mail.php:556 +#: lib/mail.php:561 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4308,12 +4602,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4452,7 +4746,11 @@ msgstr "リモートプロファイル追加エラー" msgid "Duplicate notice" msgstr "新しい通知" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +msgid "You have been banned from subscribing." +msgstr "" + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "サブスクリプションを追加できません" @@ -4468,10 +4766,6 @@ msgstr "返信" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" @@ -4522,6 +4816,15 @@ msgstr "からのメンバー" msgid "All groups" msgstr "" +#: lib/profileformaction.php:123 +#, fuzzy +msgid "No return-to arguments" +msgstr "そのようなドキュメントはありません。" + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "パブリック" @@ -4542,6 +4845,15 @@ msgstr "" msgid "Popular" msgstr "人気" +#: lib/sandboxform.php:67 +msgid "Sandbox" +msgstr "" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "このユーザをアンブロックする" + #: lib/searchaction.php:120 #, fuzzy msgid "Search site" @@ -4580,6 +4892,16 @@ msgstr "名称未設定のセクション" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "新しい通知" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "このユーザをブロックする" + #: lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" @@ -4609,29 +4931,29 @@ msgstr "" msgid "(none)" msgstr "(なし)" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "" -#: lib/subs.php:52 +#: lib/subs.php:56 #, fuzzy msgid "User has blocked you." msgstr "プロファイルがありません。" -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "" -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "" -#: lib/subs.php:124 +#: lib/subs.php:128 #, fuzzy msgid "Not subscribed!" msgstr "購読していません!" -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "サブスクリプションを削除できません" @@ -4643,6 +4965,29 @@ msgstr "" msgid "Top posters" msgstr "上位投稿者" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "このユーザをアンブロックする" + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "このユーザをアンブロックする" + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "このユーザをアンブロックする" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "このユーザからのサブスクライブを解除する" @@ -4746,3 +5091,7 @@ msgstr "" #: scripts/maildaemon.php:61 msgid "Sorry, no incoming email allowed." msgstr "" + +#, fuzzy +#~ msgid "These people are subscribed to you: " +#~ msgstr "リモートサブスクライブ" diff --git a/locale/ko/LC_MESSAGES/statusnet.mo b/locale/ko/LC_MESSAGES/statusnet.mo index 87095638066b22b30a75eb026d1c69e5d7a3e06b..19e0ecb936de2decd66fd6a05a6da32702b0c7a5 100644 GIT binary patch delta 19855 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 delta 17715 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 diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index 19a9f4a6ed..b3cf335b8b 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -5,12 +5,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-16 19:42+0000\n" -"PO-Revision-Date: 2009-11-16 19:43:45+0000\n" +"POT-Creation-Date: 2009-11-18 19:31+0000\n" +"PO-Revision-Date: 2009-11-18 19:32:10+0000\n" "Language-Team: Korean\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\n" +"X-Generator: MediaWiki 1.16alpha(r59207); Translate extension (2009-11-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: out-statusnet\n" @@ -42,7 +42,7 @@ msgstr "그러한 태그가 없습니다." #: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 #: lib/command.php:364 lib/command.php:411 lib/command.php:466 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 +#: lib/subs.php:34 lib/subs.php:116 msgid "No such user." msgstr "그러한 사용자는 없습니다." @@ -145,7 +145,8 @@ msgstr "사용자를 업데이트 할 수 없습니다." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 #: actions/apistatusesupdate.php:127 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: actions/designadminpanel.php:125 actions/newnotice.php:94 +#: lib/designsettings.php:283 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -231,12 +232,12 @@ msgstr "%s에게 모든 직접 메시지" #: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 #: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigrouplistall.php:120 actions/apigrouplist.php:132 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apigroupmembership.php:106 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/apitimelinegroup.php:147 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!" @@ -377,6 +378,13 @@ msgstr "별명이 이미 사용중 입니다. 다른 별명을 시도해 보십 msgid "Alias can't be the same as nickname." msgstr "" +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#, fuzzy +msgid "Group not found!" +msgstr "API 메서드를 찾을 수 없습니다." + #: actions/apigroupjoin.php:110 #, fuzzy msgid "You are already a member of that group." @@ -468,13 +476,13 @@ msgstr "%s / %s의 좋아하는 글들" msgid "%s updates favorited by %s / %s." msgstr "%s 좋아하는 글이 업데이트 됐습니다. %S에 의해 / %s." -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s 타임라인" -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -562,7 +570,8 @@ msgstr "원래 설정" msgid "Preview" msgstr "미리보기" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#: actions/avatarsettings.php:148 lib/deleteuserform.php:66 +#: lib/noticelist.php:522 msgid "Delete" msgstr "삭제" @@ -574,7 +583,7 @@ msgstr "올리기" msgid "Crop" msgstr "자르기" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/avatarsettings.php:265 actions/disfavor.php:74 #: actions/emailsettings.php:237 actions/favor.php:75 #: actions/groupblock.php:66 actions/grouplogo.php:309 #: actions/groupunblock.php:66 actions/imsettings.php:206 @@ -584,7 +593,7 @@ msgstr "자르기" #: actions/profilesettings.php:187 actions/recoverpassword.php:337 #: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 +#: actions/tagother.php:166 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 lib/designsettings.php:294 msgid "There was a problem with your session token. Try again, please." msgstr "세션토큰에 문제가 있습니다. 다시 시도해주세요." @@ -651,71 +660,50 @@ msgstr "이 그룹의 회원리스트" msgid "Unblock user from group" msgstr "사용자 차단 해제에 실패했습니다." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" msgstr "차단해제" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "이 사용자를 차단해제합니다." -#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61 -#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87 -#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31 -#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "로그인하고 있지 않습니다." +#: actions/block.php:69 +#, fuzzy +msgid "You already blocked that user." +msgstr "당신은 이미 이 사용자를 차단하고 있습니다." -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 -msgid "No profile specified." -msgstr "프로필을 지정하지 않았습니다." - -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 -msgid "No profile with that ID." -msgstr "해당 ID의 프로필이 없습니다." - -#: actions/block.php:111 actions/block.php:134 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 msgid "Block user" msgstr "사용자를 차단합니다." -#: actions/block.php:136 +#: actions/block.php:130 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/block.php:149 actions/deletenotice.php:145 -#: actions/groupblock.php:178 +#: actions/block.php:143 actions/deletenotice.php:145 +#: actions/deleteuser.php:147 actions/groupblock.php:178 msgid "No" msgstr "아니오" -#: actions/block.php:149 +#: actions/block.php:143 actions/deleteuser.php:147 #, fuzzy msgid "Do not block this user" msgstr "이 사용자를 차단해제합니다." -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:179 +#: actions/block.php:144 actions/deletenotice.php:146 +#: actions/deleteuser.php:148 actions/groupblock.php:179 msgid "Yes" msgstr "네, 맞습니다." -#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 -#: lib/blockform.php:153 +#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 msgid "Block this user" msgstr "이 사용자 차단하기" -#: actions/block.php:165 -msgid "You have already blocked this user." -msgstr "당신은 이미 이 사용자를 차단하고 있습니다." - -#: actions/block.php:170 +#: actions/block.php:162 msgid "Failed to save block information." msgstr "정보차단을 저장하는데 실패했습니다." @@ -781,6 +769,15 @@ msgstr "통지" msgid "No such notice." msgstr "그러한 통지는 없습니다." +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 +#: actions/unsubscribe.php:52 lib/adminpanelaction.php:72 +#: lib/profileformaction.php:63 lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "로그인하고 있지 않습니다." + #: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "이 통지를 지울 수 없습니다." @@ -815,6 +812,146 @@ msgstr "이 게시글 삭제하기" msgid "There was a problem with your session token. Try again, please." msgstr "세션토큰에 문제가 있습니다. 다시 시도해주세요." +#: actions/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "사용자를 업데이트 할 수 없습니다." + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "당신은 다른 사용자의 상태를 삭제하지 않아도 된다." + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +#, fuzzy +msgid "Delete user" +msgstr "삭제" + +#: actions/deleteuser.php:135 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "이 게시글 삭제하기" + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/adminpanelaction.php:275 lib/groupnav.php:119 +msgid "Design" +msgstr "" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "" + +#: actions/designadminpanel.php:220 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "트위터 환경설정을 저장할 수 없습니다." + +#: actions/designadminpanel.php:301 +#, fuzzy, php-format +msgid "Theme not available: %s" +msgstr "이 페이지는 귀하가 승인한 미디어 타입에서는 이용할 수 없습니다." + +#: actions/designadminpanel.php:406 +#, fuzzy +msgid "Change theme" +msgstr "변환" + +#: actions/designadminpanel.php:410 +msgid "Theme" +msgstr "" + +#: actions/designadminpanel.php:411 +#, fuzzy +msgid "Theme for the site." +msgstr "이 사이트로부터 로그아웃" + +#: actions/designadminpanel.php:420 lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: actions/designadminpanel.php:424 actions/designadminpanel.php:498 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: actions/designadminpanel.php:429 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "당신그룹의 로고 이미지를 업로드할 수 있습니다." + +#: actions/designadminpanel.php:459 lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: actions/designadminpanel.php:475 lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: actions/designadminpanel.php:476 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: actions/designadminpanel.php:481 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: actions/designadminpanel.php:490 lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "비밀번호 바꾸기" + +#: actions/designadminpanel.php:511 lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "연결" + +#: actions/designadminpanel.php:524 lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "검색" + +#: actions/designadminpanel.php:537 lib/designsettings.php:217 +msgid "Text" +msgstr "문자" + +#: actions/designadminpanel.php:550 lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "로그인" + +#: actions/designadminpanel.php:611 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: actions/designadminpanel.php:612 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: actions/designadminpanel.php:618 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: actions/designadminpanel.php:620 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/siteadminpanel.php:371 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 actions/useradminpanel.php:226 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "저장" + +#: actions/designadminpanel.php:621 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "이 메시지는 favorite이 아닙니다." @@ -958,14 +1095,6 @@ msgstr "이메일로 통보를 포스트 하길 원합니다." msgid "Publish a MicroID for my email address." msgstr "이메일 주소를 위한 MicroID의 생성" -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "저장" - #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." @@ -979,7 +1108,7 @@ msgstr "이메일이 추가 되지 않았습니다." msgid "Cannot normalize that email address" msgstr "그 이메일 주소를 정규화 할 수 없습니다." -#: actions/emailsettings.php:330 +#: actions/emailsettings.php:330 actions/siteadminpanel.php:156 msgid "Not a valid email address" msgstr "유효한 이메일 주소가 아닙니다." @@ -1179,6 +1308,18 @@ msgstr "그러한 통지는 없습니다." msgid "Cannot read file." msgstr "파일을 잃어버렸습니다." +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +msgid "No profile specified." +msgstr "프로필을 지정하지 않았습니다." + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: lib/profileformaction.php:77 +msgid "No profile with that ID." +msgstr "해당 ID의 프로필이 없습니다." + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 #, fuzzy @@ -1301,11 +1442,11 @@ msgstr "%s 그룹 회원, %d페이지" msgid "A list of the users in this group." msgstr "이 그룹의 회원리스트" -#: actions/groupmembers.php:175 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:439 lib/groupnav.php:107 msgid "Admin" msgstr "관리자" -#: actions/groupmembers.php:346 lib/blockform.php:153 +#: actions/groupmembers.php:346 lib/blockform.php:69 msgid "Block" msgstr "차단하기" @@ -1394,7 +1535,7 @@ msgstr "" msgid "User is not blocked from group." msgstr "회원이 당신을 차단해왔습니다." -#: actions/groupunblock.php:128 actions/unblock.php:108 +#: actions/groupunblock.php:128 actions/unblock.php:77 msgid "Error removing the block." msgstr "차단 제거 에러!" @@ -1694,7 +1835,7 @@ msgstr "틀린 계정 또는 비밀 번호" msgid "Error setting user." msgstr "사용자 세팅 오류" -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: actions/login.php:204 actions/login.php:257 lib/action.php:457 #: lib/logingroupnav.php:79 msgid "Login" msgstr "로그인" @@ -2116,7 +2257,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "당신을 위한 태그, (문자,숫자,-, ., _로 구성) 콤마 혹은 공백으로 구분." -#: actions/profilesettings.php:144 +#: actions/profilesettings.php:144 actions/siteadminpanel.php:275 msgid "Language" msgstr "언어" @@ -2142,7 +2283,7 @@ msgstr "나에게 구독하는 사람에게 자동 구독 신청" msgid "Bio is too long (max %d chars)." msgstr "자기소개가 너무 깁니다. (최대 140글자)" -#: actions/profilesettings.php:228 +#: actions/profilesettings.php:228 actions/siteadminpanel.php:163 msgid "Timezone not selected." msgstr "타임존이 설정 되지 않았습니다." @@ -2167,7 +2308,7 @@ msgstr "프로필을 저장 할 수 없습니다." msgid "Couldn't save tags." msgstr "태그를 저장할 수 없습니다." -#: actions/profilesettings.php:344 +#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 msgid "Settings saved." msgstr "설정 저장" @@ -2403,7 +2544,7 @@ msgstr "확인 코드 오류" msgid "Registration successful" msgstr "회원 가입이 성공적입니다." -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: actions/register.php:114 actions/register.php:502 lib/action.php:454 #: lib/logingroupnav.php:85 msgid "Register" msgstr "회원가입" @@ -2449,7 +2590,7 @@ msgid "Same as password above. Required." msgstr "위와 같은 비밀 번호. 필수 사항." #: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:253 lib/accountsettingsaction.php:120 msgid "Email" msgstr "이메일" @@ -2554,7 +2695,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "다른 마이크로블로깅 서비스의 귀하의 프로필 URL" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 +#: lib/userprofile.php:356 msgid "Subscribe" msgstr "구독" @@ -2630,6 +2771,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "%2$s에서 %1$s까지 메시지" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "당신은 이 사용자에게 메시지를 보낼 수 없습니다." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "회원이 당신을 차단해왔습니다." + #: actions/showfavorites.php:79 #, fuzzy, php-format msgid "%s's favorite notices, page %d" @@ -2875,6 +3026,145 @@ msgstr "" "**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/" "Micro-blogging) 서비스에 계정을 갖고 있습니다." +#: actions/silence.php:65 actions/unsilence.php:65 +#, fuzzy +msgid "You cannot silence users on this site." +msgstr "당신은 이 사용자에게 메시지를 보낼 수 없습니다." + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "회원이 당신을 차단해왔습니다." + +#: actions/siteadminpanel.php:58 lib/adminpanelaction.php:272 +#, fuzzy +msgid "Site" +msgstr "초대" + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site." +msgstr "" + +#: actions/siteadminpanel.php:145 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:153 +#, fuzzy +msgid "You must have a valid contact email address" +msgstr "유효한 이메일 주소가 아닙니다." + +#: actions/siteadminpanel.php:171 +#, php-format +msgid "Unknown language \"%s\"" +msgstr "" + +#: actions/siteadminpanel.php:178 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/siteadminpanel.php:184 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/siteadminpanel.php:190 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/siteadminpanel.php:241 +#, fuzzy +msgid "Site name" +msgstr "사이트 공지" + +#: actions/siteadminpanel.php:242 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:246 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:249 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:250 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:254 +#, fuzzy +msgid "contact email address for your site" +msgstr "%s에 포스팅 할 새로운 이메일 주소" + +#: actions/siteadminpanel.php:268 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:269 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:276 +#, fuzzy +msgid "Default site language" +msgstr "언어 설정" + +#: actions/siteadminpanel.php:282 +#, fuzzy +msgid "Private" +msgstr "개인정보 취급방침" + +#: actions/siteadminpanel.php:284 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/siteadminpanel.php:290 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/siteadminpanel.php:291 +msgid "In a scheduled job" +msgstr "" + +#: actions/siteadminpanel.php:292 +#, fuzzy +msgid "Never" +msgstr "복구" + +#: actions/siteadminpanel.php:294 +msgid "Data snapshots" +msgstr "" + +#: actions/siteadminpanel.php:295 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/siteadminpanel.php:301 +msgid "Frequency" +msgstr "" + +#: actions/siteadminpanel.php:302 +msgid "Snapshots will be sent once every N Web hits" +msgstr "" + +#: actions/siteadminpanel.php:309 +msgid "Report URL" +msgstr "" + +#: actions/siteadminpanel.php:310 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/siteadminpanel.php:371 actions/useradminpanel.php:226 +#, fuzzy +msgid "Save site settings" +msgstr "아바타 설정" + #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "SMS 세팅" @@ -3144,6 +3434,21 @@ msgstr "그러한 태그가 없습니다." msgid "API method under construction." msgstr "API 메서드를 구성중 입니다." +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "당신은 이미 이 사용자를 차단하고 있습니다." + +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "회원이 당신을 차단해왔습니다." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "이용자가 프로필을 가지고 있지 않습니다." + #: actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "요청한 프로필id가 없습니다." @@ -3161,6 +3466,32 @@ msgstr "구독취소 되었습니다." msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" +#: actions/useradminpanel.php:58 lib/personalgroupnav.php:115 +msgid "User" +msgstr "이용자" + +#: actions/useradminpanel.php:69 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:171 +#, fuzzy +msgid "Closed" +msgstr "차단하기" + +#: actions/useradminpanel.php:173 +msgid "Is registration on this site prohibited?" +msgstr "" + +#: actions/useradminpanel.php:178 +#, fuzzy +msgid "Invite-only" +msgstr "초대" + +#: actions/useradminpanel.php:180 +msgid "Is registration on this site only open to invited users?" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "구독을 허가" @@ -3321,11 +3652,16 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: classes/Message.php:55 +#: classes/Message.php:45 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "직접 메시지 보내기 오류." + +#: classes/Message.php:61 msgid "Could not insert message." msgstr "메시지를 삽입할 수 없습니다." -#: classes/Message.php:65 +#: classes/Message.php:71 msgid "Could not update message with new URI." msgstr "새 URI와 함께 메시지를 업데이트할 수 없습니다." @@ -3359,15 +3695,15 @@ msgstr "" "너무 많은 게시글이 너무 빠르게 올라옵니다. 한숨고르고 몇분후에 다시 포스트를 " "해보세요." -#: classes/Notice.php:202 +#: classes/Notice.php:200 msgid "You are banned from posting notices on this site." msgstr "이 사이트에 게시글 포스팅으로부터 당신은 금지되었습니다." -#: classes/Notice.php:268 classes/Notice.php:293 +#: classes/Notice.php:265 classes/Notice.php:290 msgid "Problem saving notice." msgstr "통지를 저장하는데 문제가 발생했습니다." -#: classes/Notice.php:1120 +#: classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "답신을 추가 할 때에 데이타베이스 에러 : %s" @@ -3397,10 +3733,6 @@ msgstr "비밀번호 바꾸기" msgid "Change email handling" msgstr "이메일 처리 변경" -#: lib/accountsettingsaction.php:124 lib/groupnav.php:119 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:124 #, fuzzy msgid "Design your profile" @@ -3452,97 +3784,102 @@ msgstr "연결" msgid "Connect to services" msgstr "서버에 재접속 할 수 없습니다 : %s" -#: lib/action.php:439 lib/subgroupnav.php:105 +#: lib/action.php:439 +#, fuzzy +msgid "Change site configuration" +msgstr "주 사이트 네비게이션" + +#: lib/action.php:443 lib/subgroupnav.php:105 msgid "Invite" msgstr "초대" -#: lib/action.php:440 lib/subgroupnav.php:106 +#: lib/action.php:444 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "%s에 친구를 가입시키기 위해 친구와 동료를 초대합니다." -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout" msgstr "로그아웃" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout from the site" msgstr "이 사이트로부터 로그아웃" -#: lib/action.php:450 +#: lib/action.php:454 msgid "Create an account" msgstr "계정 만들기" -#: lib/action.php:453 +#: lib/action.php:457 msgid "Login to the site" msgstr "이 사이트 로그인" -#: lib/action.php:456 lib/action.php:719 +#: lib/action.php:460 lib/action.php:723 msgid "Help" msgstr "도움말" -#: lib/action.php:456 +#: lib/action.php:460 msgid "Help me!" msgstr "도움이 필요해!" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search" msgstr "검색" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search for people or text" msgstr "프로필이나 텍스트 검색" -#: lib/action.php:480 +#: lib/action.php:484 msgid "Site notice" msgstr "사이트 공지" -#: lib/action.php:546 +#: lib/action.php:550 msgid "Local views" msgstr "로컬 뷰" -#: lib/action.php:612 +#: lib/action.php:616 msgid "Page notice" msgstr "페이지 공지" -#: lib/action.php:714 +#: lib/action.php:718 msgid "Secondary site navigation" msgstr "보조 사이트 네비게이션" -#: lib/action.php:721 +#: lib/action.php:725 msgid "About" msgstr "정보" -#: lib/action.php:723 +#: lib/action.php:727 msgid "FAQ" msgstr "자주 묻는 질문" -#: lib/action.php:727 +#: lib/action.php:731 msgid "TOS" msgstr "" -#: lib/action.php:730 +#: lib/action.php:734 msgid "Privacy" msgstr "개인정보 취급방침" -#: lib/action.php:732 +#: lib/action.php:736 msgid "Source" msgstr "소스 코드" -#: lib/action.php:734 +#: lib/action.php:738 msgid "Contact" msgstr "연락하기" -#: lib/action.php:736 +#: lib/action.php:740 #, fuzzy msgid "Badge" msgstr "찔러 보기" -#: lib/action.php:764 +#: lib/action.php:768 msgid "StatusNet software license" msgstr "라코니카 소프트웨어 라이선스" -#: lib/action.php:767 +#: lib/action.php:771 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3551,12 +3888,12 @@ msgstr "" "**%%site.name%%** 는 [%%site.broughtby%%](%%site.broughtbyurl%%)가 제공하는 " "마이크로블로깅서비스입니다." -#: lib/action.php:769 +#: lib/action.php:773 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** 는 마이크로블로깅서비스입니다." -#: lib/action.php:771 +#: lib/action.php:775 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3567,35 +3904,60 @@ msgstr "" "을 사용합니다. StatusNet는 [GNU Affero General Public License](http://www." "fsf.org/licensing/licenses/agpl-3.0.html) 라이선스에 따라 사용할 수 있습니다." -#: lib/action.php:785 +#: lib/action.php:789 #, fuzzy msgid "Site content license" msgstr "라코니카 소프트웨어 라이선스" -#: lib/action.php:794 +#: lib/action.php:798 msgid "All " msgstr "모든 것" -#: lib/action.php:799 +#: lib/action.php:803 msgid "license." msgstr "라이선스" -#: lib/action.php:1052 +#: lib/action.php:1067 msgid "Pagination" msgstr "페이지수" -#: lib/action.php:1061 +#: lib/action.php:1076 msgid "After" msgstr "뒷 페이지" -#: lib/action.php:1069 +#: lib/action.php:1084 msgid "Before" msgstr "앞 페이지" -#: lib/action.php:1117 +#: lib/action.php:1132 msgid "There was a problem with your session token." msgstr "당신의 세션토큰관련 문제가 있습니다." +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "당신은 이 사용자에게 메시지를 보낼 수 없습니다." + +#: lib/adminpanelaction.php:195 +#, fuzzy +msgid "showForm() not implemented." +msgstr "명령이 아직 실행되지 않았습니다." + +#: lib/adminpanelaction.php:224 +#, fuzzy +msgid "saveSettings() not implemented." +msgstr "명령이 아직 실행되지 않았습니다." + +#: lib/adminpanelaction.php:273 +#, fuzzy +msgid "Basic site configuration" +msgstr "이메일 주소 확인서" + +#: lib/adminpanelaction.php:276 +#, fuzzy +msgid "Design configuration" +msgstr "SMS 인증" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -3771,30 +4133,36 @@ msgstr "당신은 이 프로필에 구독되지 않고있습니다." #: lib/command.php:620 #, fuzzy -msgid "You are subscribed to these people: " -msgstr "당신은 이 프로필에 구독되지 않고있습니다." +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "당신은 이 프로필에 구독되지 않고있습니다." +msgstr[1] "당신은 이 프로필에 구독되지 않고있습니다." -#: lib/command.php:637 +#: lib/command.php:640 #, fuzzy msgid "No one is subscribed to you." msgstr "다른 사람을 구독 하실 수 없습니다." -#: lib/command.php:639 +#: lib/command.php:642 #, fuzzy -msgid "These people are subscribed to you: " -msgstr "%s에 의해 구독되는 사람들" +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "다른 사람을 구독 하실 수 없습니다." +msgstr[1] "다른 사람을 구독 하실 수 없습니다." -#: lib/command.php:656 +#: lib/command.php:662 #, fuzzy msgid "You are not a member of any groups." msgstr "당신은 해당 그룹의 멤버가 아닙니다." -#: lib/command.php:658 +#: lib/command.php:664 #, fuzzy -msgid "You are a member of these groups: " -msgstr "당신은 해당 그룹의 멤버가 아닙니다." +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "당신은 해당 그룹의 멤버가 아닙니다." +msgstr[1] "당신은 해당 그룹의 멤버가 아닙니다." -#: lib/command.php:670 +#: lib/command.php:678 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -3833,20 +4201,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:192 +#: lib/common.php:203 #, fuzzy msgid "No configuration file found. " msgstr "확인 코드가 없습니다." -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:195 +#: lib/common.php:206 #, fuzzy msgid "Go to the installer." msgstr "이 사이트 로그인" @@ -3867,10 +4235,6 @@ msgstr "SMS에 의한 업데이트" msgid "Database error" msgstr "" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" @@ -3881,66 +4245,6 @@ 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:217 -msgid "Text" -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:372 msgid "Bad default color settings: " msgstr "" @@ -4170,12 +4474,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:235 +#: lib/mail.php:236 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다." -#: lib/mail.php:240 +#: lib/mail.php:241 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4194,17 +4498,17 @@ msgstr "" "\n" "그럼 이만,%4$s.\n" -#: lib/mail.php:253 +#: lib/mail.php:254 #, php-format msgid "Location: %s\n" msgstr "위치: %s\n" -#: lib/mail.php:255 +#: lib/mail.php:256 #, php-format msgid "Homepage: %s\n" msgstr "홈페이지: %s\n" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" @@ -4213,12 +4517,12 @@ msgstr "" "소개: %s\n" "\n" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "%s에 포스팅 할 새로운 이메일 주소" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4233,21 +4537,21 @@ msgstr "" "포스팅 주소는 %1$s입니다.새 메시지를 등록하려면 %2$ 주소로 이메일을 보내십시" "오.이메일 사용법은 %3$s 페이지를 보십시오.안녕히,%4$s" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "%s 상태" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "SMS 인증" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "%s 사용자가 찔러 봤습니다." -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4263,12 +4567,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "%s로부터 새로운 비밀 메시지가 도착하였습니다." -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4287,12 +4591,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:554 +#: lib/mail.php:559 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s님이 당신의 게시글을 좋아하는 글로 추가했습니다." -#: lib/mail.php:556 +#: lib/mail.php:561 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4313,12 +4617,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4456,7 +4760,12 @@ msgstr "리모트 프로필 추가 오류" msgid "Duplicate notice" msgstr "통지 삭제" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "이 회원은 구독으로부터 당신을 차단해왔다." + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "예약 구독을 추가 할 수 없습니다." @@ -4472,10 +4781,6 @@ msgstr "답신" msgid "Favorites" msgstr "좋아하는 글들" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "이용자" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "받은 쪽지함" @@ -4526,6 +4831,15 @@ msgstr "가입한 때" msgid "All groups" msgstr "모든 그룹" +#: lib/profileformaction.php:123 +#, fuzzy +msgid "No return-to arguments" +msgstr "id 인자가 없습니다." + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "공개" @@ -4546,6 +4860,16 @@ msgstr "피쳐링됨" msgid "Popular" msgstr "인기있는" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "받은 쪽지함" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "이 사용자를 차단해제합니다." + #: lib/searchaction.php:120 #, fuzzy msgid "Search site" @@ -4584,6 +4908,16 @@ msgstr "제목없는 섹션" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "사이트 공지" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "이 사용자 차단하기" + #: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" @@ -4613,28 +4947,28 @@ msgstr "" msgid "(none)" msgstr "(없습니다)" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "" -#: lib/subs.php:52 +#: lib/subs.php:56 msgid "User has blocked you." msgstr "회원이 당신을 차단해왔습니다." -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "구독 하실 수 없습니다." -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "다른 사람을 구독 하실 수 없습니다." -#: lib/subs.php:124 +#: lib/subs.php:128 #, fuzzy msgid "Not subscribed!" msgstr "구독하고 있지 않습니다!" -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "예약 구독을 삭제 할 수 없습니다." @@ -4646,6 +4980,29 @@ msgstr "없음" msgid "Top posters" msgstr "상위 게시글 등록자" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "이 사용자를 차단해제합니다." + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "이 사용자를 차단해제합니다." + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "이 사용자를 차단해제합니다." + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "이 사용자로부터 구독취소합니다." @@ -4749,3 +5106,7 @@ msgstr "죄송합니다. 귀하의 이메일이 아닙니다." #: scripts/maildaemon.php:61 msgid "Sorry, no incoming email allowed." msgstr "죄송합니다. 이메일이 허용되지 않습니다." + +#, fuzzy +#~ msgid "These people are subscribed to you: " +#~ msgstr "%s에 의해 구독되는 사람들" diff --git a/locale/mk/LC_MESSAGES/statusnet.mo b/locale/mk/LC_MESSAGES/statusnet.mo index 6b2713593a1d165aad51d1283f271b107c868ea6..a3e2cb11a9b3abcbbced532ed3afc06596db964b 100644 GIT binary patch delta 11271 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 P=`eTU(n;>tLr4A(mffp8 delta 9780 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 B4j2Fc diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index d011d7379c..15b72bd196 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -6,12 +6,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-16 19:42+0000\n" -"PO-Revision-Date: 2009-11-16 19:43:48+0000\n" +"POT-Creation-Date: 2009-11-18 19:31+0000\n" +"PO-Revision-Date: 2009-11-18 19:32:13+0000\n" "Language-Team: Macedonian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\n" +"X-Generator: MediaWiki 1.16alpha(r59207); Translate extension (2009-11-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: out-statusnet\n" @@ -43,7 +43,7 @@ msgstr "Нема такво известување." #: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 #: lib/command.php:364 lib/command.php:411 lib/command.php:466 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 +#: lib/subs.php:34 lib/subs.php:116 msgid "No such user." msgstr "Нема таков корисник." @@ -146,7 +146,8 @@ msgstr "Корисникот не може да се освежи/" #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 #: actions/apistatusesupdate.php:127 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: actions/designadminpanel.php:125 actions/newnotice.php:94 +#: lib/designsettings.php:283 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -231,12 +232,12 @@ msgstr "" #: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 #: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigrouplistall.php:120 actions/apigrouplist.php:132 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apigroupmembership.php:106 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/apitimelinegroup.php:147 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!" @@ -375,6 +376,13 @@ msgstr "Тој прекар е во употреба. Одберете друг. msgid "Alias can't be the same as nickname." msgstr "" +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#, fuzzy +msgid "Group not found!" +msgstr "Не е пронаједено барање." + #: actions/apigroupjoin.php:110 #, fuzzy msgid "You are already a member of that group." @@ -466,13 +474,13 @@ msgstr "" msgid "%s updates favorited by %s / %s." msgstr "" -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -562,7 +570,8 @@ msgstr "" msgid "Preview" msgstr "" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#: actions/avatarsettings.php:148 lib/deleteuserform.php:66 +#: lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -574,7 +583,7 @@ msgstr "Товари" msgid "Crop" msgstr "" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/avatarsettings.php:265 actions/disfavor.php:74 #: actions/emailsettings.php:237 actions/favor.php:75 #: actions/groupblock.php:66 actions/grouplogo.php:309 #: actions/groupunblock.php:66 actions/imsettings.php:206 @@ -584,7 +593,7 @@ msgstr "" #: actions/profilesettings.php:187 actions/recoverpassword.php:337 #: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 +#: actions/tagother.php:166 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 lib/designsettings.php:294 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -651,75 +660,53 @@ msgstr "" msgid "Unblock user from group" msgstr "Нема таков корисник." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Нема таков корисник." -#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61 -#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87 -#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31 -#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "Не сте пријавени." +#: actions/block.php:69 +#, fuzzy +msgid "You already blocked that user." +msgstr "Веќе сте пријавени!" -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 -msgid "No profile specified." -msgstr "" - -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 -msgid "No profile with that ID." -msgstr "" - -#: actions/block.php:111 actions/block.php:134 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 #, fuzzy msgid "Block user" msgstr "Нема таков корисник." -#: actions/block.php:136 +#: actions/block.php:130 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/block.php:149 actions/deletenotice.php:145 -#: actions/groupblock.php:178 +#: actions/block.php:143 actions/deletenotice.php:145 +#: actions/deleteuser.php:147 actions/groupblock.php:178 msgid "No" msgstr "" -#: actions/block.php:149 +#: actions/block.php:143 actions/deleteuser.php:147 #, fuzzy msgid "Do not block this user" msgstr "Нема таков корисник." -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:179 +#: actions/block.php:144 actions/deletenotice.php:146 +#: actions/deleteuser.php:148 actions/groupblock.php:179 msgid "Yes" msgstr "" -#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 -#: lib/blockform.php:153 +#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Нема таков корисник." -#: actions/block.php:165 -#, fuzzy -msgid "You have already blocked this user." -msgstr "Веќе сте пријавени!" - -#: actions/block.php:170 +#: actions/block.php:162 msgid "Failed to save block information." msgstr "" @@ -784,6 +771,15 @@ msgstr "Известувања" msgid "No such notice." msgstr "Нема такво известување." +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 +#: actions/unsubscribe.php:52 lib/adminpanelaction.php:72 +#: lib/profileformaction.php:63 lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Не сте пријавени." + #: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "" @@ -815,6 +811,143 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "" +#: actions/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "Корисникот не може да се освежи/" + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "Може да ја користите локалната претплата." + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +msgid "Delete user" +msgstr "" + +#: actions/deleteuser.php:135 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "Нема таков корисник." + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/adminpanelaction.php:275 lib/groupnav.php:119 +msgid "Design" +msgstr "" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "" + +#: actions/designadminpanel.php:220 +msgid "Unable to delete design setting." +msgstr "" + +#: actions/designadminpanel.php:301 +#, fuzzy, php-format +msgid "Theme not available: %s" +msgstr "Оваа страница не е достапна во форматот кој Вие го прифаќате." + +#: actions/designadminpanel.php:406 +#, fuzzy +msgid "Change theme" +msgstr "Промени" + +#: actions/designadminpanel.php:410 +msgid "Theme" +msgstr "" + +#: actions/designadminpanel.php:411 +msgid "Theme for the site." +msgstr "" + +#: actions/designadminpanel.php:420 lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: actions/designadminpanel.php:424 actions/designadminpanel.php:498 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: actions/designadminpanel.php:429 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "Ова е предолго. Максималната должина е 140 знаци." + +#: actions/designadminpanel.php:459 lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: actions/designadminpanel.php:475 lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: actions/designadminpanel.php:476 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: actions/designadminpanel.php:481 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: actions/designadminpanel.php:490 lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Промени ја лозинката" + +#: actions/designadminpanel.php:511 lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Поврзи се" + +#: actions/designadminpanel.php:524 lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Барај" + +#: actions/designadminpanel.php:537 lib/designsettings.php:217 +msgid "Text" +msgstr "" + +#: actions/designadminpanel.php:550 lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Пријави се" + +#: actions/designadminpanel.php:611 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: actions/designadminpanel.php:612 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: actions/designadminpanel.php:618 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: actions/designadminpanel.php:620 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/siteadminpanel.php:371 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 actions/useradminpanel.php:226 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Сними" + +#: actions/designadminpanel.php:621 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "" @@ -957,14 +1090,6 @@ msgstr "" msgid "Publish a MicroID for my email address." msgstr "" -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Сними" - #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." @@ -978,7 +1103,7 @@ msgstr "" msgid "Cannot normalize that email address" msgstr "" -#: actions/emailsettings.php:330 +#: actions/emailsettings.php:330 actions/siteadminpanel.php:156 msgid "Not a valid email address" msgstr "" @@ -1178,6 +1303,18 @@ msgstr "Нема такво известување." msgid "Cannot read file." msgstr "Нема такво известување." +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +msgid "No profile specified." +msgstr "" + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: lib/profileformaction.php:77 +msgid "No profile with that ID." +msgstr "" + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 msgid "No group specified." @@ -1297,11 +1434,11 @@ msgstr "" msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:439 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:346 lib/blockform.php:153 +#: actions/groupmembers.php:346 lib/blockform.php:69 msgid "Block" msgstr "" @@ -1390,7 +1527,7 @@ msgstr "" msgid "User is not blocked from group." msgstr "Корисникот нема профил." -#: actions/groupunblock.php:128 actions/unblock.php:108 +#: actions/groupunblock.php:128 actions/unblock.php:77 #, fuzzy msgid "Error removing the block." msgstr "Грешка во снимањето на корисникот." @@ -1670,7 +1807,7 @@ msgstr "Неточно корисничко име или лозинка" msgid "Error setting user." msgstr "Грешка во поставувањето на корисникот." -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: actions/login.php:204 actions/login.php:257 lib/action.php:457 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Пријави се" @@ -2096,7 +2233,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:144 +#: actions/profilesettings.php:144 actions/siteadminpanel.php:275 msgid "Language" msgstr "" @@ -2122,7 +2259,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Биографијата е предолга (максимумот е 140 знаци)." -#: actions/profilesettings.php:228 +#: actions/profilesettings.php:228 actions/siteadminpanel.php:163 msgid "Timezone not selected." msgstr "" @@ -2148,7 +2285,7 @@ msgstr "Профилот не може да се сними." msgid "Couldn't save tags." msgstr "Профилот не може да се сними." -#: actions/profilesettings.php:344 +#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 msgid "Settings saved." msgstr "Поставките се снимени." @@ -2386,7 +2523,7 @@ msgstr "Грешка со кодот за потврдување." msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: actions/register.php:114 actions/register.php:502 lib/action.php:454 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Регистрирај се" @@ -2430,7 +2567,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:253 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Е-пошта" @@ -2522,7 +2659,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL на Вашиот профил на друго компатибилно место за микроблогирање." #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 +#: lib/userprofile.php:356 msgid "Subscribe" msgstr "Претплати се" @@ -2597,6 +2734,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Одговори испратени до %s" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "Не ни го испративте тој профил." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "Корисникот нема профил." + #: actions/showfavorites.php:79 #, fuzzy, php-format msgid "%s's favorite notices, page %d" @@ -2840,6 +2987,142 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" +#: actions/silence.php:65 actions/unsilence.php:65 +msgid "You cannot silence users on this site." +msgstr "" + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "Корисникот нема профил." + +#: actions/siteadminpanel.php:58 lib/adminpanelaction.php:272 +msgid "Site" +msgstr "" + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site." +msgstr "" + +#: actions/siteadminpanel.php:145 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:153 +#, fuzzy +msgid "You must have a valid contact email address" +msgstr "Неправилна адреса за е-пошта." + +#: actions/siteadminpanel.php:171 +#, php-format +msgid "Unknown language \"%s\"" +msgstr "" + +#: actions/siteadminpanel.php:178 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/siteadminpanel.php:184 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/siteadminpanel.php:190 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/siteadminpanel.php:241 +#, fuzzy +msgid "Site name" +msgstr "Ново известување" + +#: actions/siteadminpanel.php:242 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:246 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:249 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:250 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:254 +#, fuzzy +msgid "contact email address for your site" +msgstr "Нема регистрирана адреса за е-пошта за тој корисник." + +#: actions/siteadminpanel.php:268 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:269 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:276 +msgid "Default site language" +msgstr "" + +#: actions/siteadminpanel.php:282 +#, fuzzy +msgid "Private" +msgstr "Приватност" + +#: actions/siteadminpanel.php:284 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/siteadminpanel.php:290 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/siteadminpanel.php:291 +msgid "In a scheduled job" +msgstr "" + +#: actions/siteadminpanel.php:292 +#, fuzzy +msgid "Never" +msgstr "Пронајди" + +#: actions/siteadminpanel.php:294 +msgid "Data snapshots" +msgstr "" + +#: actions/siteadminpanel.php:295 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/siteadminpanel.php:301 +msgid "Frequency" +msgstr "" + +#: actions/siteadminpanel.php:302 +msgid "Snapshots will be sent once every N Web hits" +msgstr "" + +#: actions/siteadminpanel.php:309 +msgid "Report URL" +msgstr "" + +#: actions/siteadminpanel.php:310 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/siteadminpanel.php:371 actions/useradminpanel.php:226 +#, fuzzy +msgid "Save site settings" +msgstr "Поставки" + #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "" @@ -3111,6 +3394,21 @@ msgstr "Нема такво известување." msgid "API method under construction." msgstr "" +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "Веќе сте пријавени!" + +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "Корисникот нема профил." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "Корисникот нема профил." + #: actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." @@ -3131,6 +3429,31 @@ msgstr "Откажи ја претплатата" msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" +#: actions/useradminpanel.php:58 lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + +#: actions/useradminpanel.php:69 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:171 +#, fuzzy +msgid "Closed" +msgstr "Нема таков корисник." + +#: actions/useradminpanel.php:173 +msgid "Is registration on this site prohibited?" +msgstr "" + +#: actions/useradminpanel.php:178 +msgid "Invite-only" +msgstr "" + +#: actions/useradminpanel.php:180 +msgid "Is registration on this site only open to invited users?" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Одобрете ја претплатата" @@ -3291,11 +3614,15 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: classes/Message.php:55 +#: classes/Message.php:45 +msgid "You are banned from sending direct messages." +msgstr "" + +#: classes/Message.php:61 msgid "Could not insert message." msgstr "" -#: classes/Message.php:65 +#: classes/Message.php:71 msgid "Could not update message with new URI." msgstr "" @@ -3325,15 +3652,15 @@ msgid "" "few minutes." msgstr "" -#: classes/Notice.php:202 +#: classes/Notice.php:200 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:268 classes/Notice.php:293 +#: classes/Notice.php:265 classes/Notice.php:290 msgid "Problem saving notice." msgstr "Проблем во снимањето на известувањето." -#: classes/Notice.php:1120 +#: classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Одговор од внесот во базата: %s" @@ -3364,10 +3691,6 @@ msgstr "" msgid "Change email handling" msgstr "" -#: lib/accountsettingsaction.php:124 lib/groupnav.php:119 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:124 #, fuzzy msgid "Design your profile" @@ -3420,101 +3743,106 @@ msgstr "Поврзи се" msgid "Connect to services" msgstr "Не може да се пренасочи кон серверот: %s" -#: lib/action.php:439 lib/subgroupnav.php:105 +#: lib/action.php:439 +#, fuzzy +msgid "Change site configuration" +msgstr "Претплати" + +#: lib/action.php:443 lib/subgroupnav.php:105 msgid "Invite" msgstr "" -#: lib/action.php:440 lib/subgroupnav.php:106 +#: lib/action.php:444 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout" msgstr "Одјави се" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout from the site" msgstr "" -#: lib/action.php:450 +#: lib/action.php:454 #, fuzzy msgid "Create an account" msgstr "Креирај нова сметка" -#: lib/action.php:453 +#: lib/action.php:457 msgid "Login to the site" msgstr "" -#: lib/action.php:456 lib/action.php:719 +#: lib/action.php:460 lib/action.php:723 msgid "Help" msgstr "Помош" -#: lib/action.php:456 +#: lib/action.php:460 #, fuzzy msgid "Help me!" msgstr "Помош" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search" msgstr "Барај" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search for people or text" msgstr "" -#: lib/action.php:480 +#: lib/action.php:484 #, fuzzy msgid "Site notice" msgstr "Ново известување" -#: lib/action.php:546 +#: lib/action.php:550 msgid "Local views" msgstr "" -#: lib/action.php:612 +#: lib/action.php:616 #, fuzzy msgid "Page notice" msgstr "Ново известување" -#: lib/action.php:714 +#: lib/action.php:718 #, fuzzy msgid "Secondary site navigation" msgstr "Претплати" -#: lib/action.php:721 +#: lib/action.php:725 msgid "About" msgstr "За" -#: lib/action.php:723 +#: lib/action.php:727 msgid "FAQ" msgstr "ЧПП" -#: lib/action.php:727 +#: lib/action.php:731 msgid "TOS" msgstr "" -#: lib/action.php:730 +#: lib/action.php:734 msgid "Privacy" msgstr "Приватност" -#: lib/action.php:732 +#: lib/action.php:736 msgid "Source" msgstr "Изворен код" -#: lib/action.php:734 +#: lib/action.php:738 msgid "Contact" msgstr "Контакт" -#: lib/action.php:736 +#: lib/action.php:740 msgid "Badge" msgstr "" -#: lib/action.php:764 +#: lib/action.php:768 msgid "StatusNet software license" msgstr "" -#: lib/action.php:767 +#: lib/action.php:771 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3523,12 +3851,12 @@ msgstr "" "**%%site.name%%** е сервис за микроблогирање што ви го овозможува [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:769 +#: lib/action.php:773 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** е сервис за микроблогирање." -#: lib/action.php:771 +#: lib/action.php:775 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3539,37 +3867,59 @@ msgstr "" "верзија %s, достапен пд [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:785 +#: lib/action.php:789 #, fuzzy msgid "Site content license" msgstr "Ново известување" -#: lib/action.php:794 +#: lib/action.php:798 msgid "All " msgstr "" -#: lib/action.php:799 +#: lib/action.php:803 msgid "license." msgstr "" -#: lib/action.php:1052 +#: lib/action.php:1067 msgid "Pagination" msgstr "" -#: lib/action.php:1061 +#: lib/action.php:1076 #, fuzzy msgid "After" msgstr "« Следни" -#: lib/action.php:1069 +#: lib/action.php:1084 #, fuzzy msgid "Before" msgstr "Предходни »" -#: lib/action.php:1117 +#: lib/action.php:1132 msgid "There was a problem with your session token." msgstr "" +#: lib/adminpanelaction.php:96 +msgid "You cannot make changes to this site." +msgstr "" + +#: lib/adminpanelaction.php:195 +msgid "showForm() not implemented." +msgstr "" + +#: lib/adminpanelaction.php:224 +msgid "saveSettings() not implemented." +msgstr "" + +#: lib/adminpanelaction.php:273 +#, fuzzy +msgid "Basic site configuration" +msgstr "Потврдување на адресата" + +#: lib/adminpanelaction.php:276 +#, fuzzy +msgid "Design configuration" +msgstr "Потврдување на адресата" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -3745,30 +4095,36 @@ msgstr "Не ни го испративте тој профил." #: lib/command.php:620 #, fuzzy -msgid "You are subscribed to these people: " -msgstr "Не ни го испративте тој профил." +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "Не ни го испративте тој профил." +msgstr[1] "Не ни го испративте тој профил." -#: lib/command.php:637 +#: lib/command.php:640 #, fuzzy msgid "No one is subscribed to you." msgstr "Оддалечена претплата" -#: lib/command.php:639 +#: lib/command.php:642 #, fuzzy -msgid "These people are subscribed to you: " -msgstr "Оддалечена претплата" +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "Оддалечена претплата" +msgstr[1] "Оддалечена претплата" -#: lib/command.php:656 +#: lib/command.php:662 #, fuzzy msgid "You are not a member of any groups." msgstr "Не ни го испративте тој профил." -#: lib/command.php:658 +#: lib/command.php:664 #, fuzzy -msgid "You are a member of these groups: " -msgstr "Не ни го испративте тој профил." +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "Не ни го испративте тој профил." +msgstr[1] "Не ни го испративте тој профил." -#: lib/command.php:670 +#: lib/command.php:678 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -3807,20 +4163,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:192 +#: lib/common.php:203 #, fuzzy msgid "No configuration file found. " msgstr "Нема код за потврда." -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:195 +#: lib/common.php:206 msgid "Go to the installer." msgstr "" @@ -3840,10 +4196,6 @@ msgstr "" msgid "Database error" msgstr "" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" @@ -3854,66 +4206,6 @@ 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:217 -msgid "Text" -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:372 msgid "Bad default color settings: " msgstr "" @@ -4151,12 +4443,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:235 +#: lib/mail.php:236 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s сега ги следи вашите забелешки за %2$s." -#: lib/mail.php:240 +#: lib/mail.php:241 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4177,29 +4469,29 @@ msgstr "" "Искрено ваш,\n" "%4$s.\n" -#: lib/mail.php:253 +#: lib/mail.php:254 #, php-format msgid "Location: %s\n" msgstr "" -#: lib/mail.php:255 +#: lib/mail.php:256 #, php-format msgid "Homepage: %s\n" msgstr "" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4212,21 +4504,21 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4242,12 +4534,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4266,12 +4558,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:554 +#: lib/mail.php:559 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%1$s сега ги следи вашите забелешки за %2$s." -#: lib/mail.php:556 +#: lib/mail.php:561 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4292,12 +4584,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4438,7 +4730,11 @@ msgstr "Грешка во внесувањето на оддалечениот msgid "Duplicate notice" msgstr "Дуплирано известување" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +msgid "You have been banned from subscribing." +msgstr "" + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Не може да се внесе нова претплата." @@ -4454,10 +4750,6 @@ msgstr "Одговори" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" @@ -4508,6 +4800,15 @@ msgstr "Член од" msgid "All groups" msgstr "" +#: lib/profileformaction.php:123 +#, fuzzy +msgid "No return-to arguments" +msgstr "Нема таков документ." + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "Јавен" @@ -4529,6 +4830,15 @@ msgstr "" msgid "Popular" msgstr "Пребарување на луѓе" +#: lib/sandboxform.php:67 +msgid "Sandbox" +msgstr "" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Нема таков корисник." + #: lib/searchaction.php:120 #, fuzzy msgid "Search site" @@ -4568,6 +4878,16 @@ msgstr "" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Ново известување" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Нема таков корисник." + #: lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" @@ -4597,29 +4917,29 @@ msgstr "" msgid "(none)" msgstr "" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "" -#: lib/subs.php:52 +#: lib/subs.php:56 #, fuzzy msgid "User has blocked you." msgstr "Корисникот нема профил." -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "" -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "" -#: lib/subs.php:124 +#: lib/subs.php:128 #, fuzzy msgid "Not subscribed!" msgstr "Не сте претплатени!" -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "Претплата не може да се избрише." @@ -4631,6 +4951,29 @@ msgstr "" msgid "Top posters" msgstr "" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "Нема таков корисник." + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Нема таков корисник." + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Нема таков корисник." + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "" @@ -4734,3 +5077,7 @@ msgstr "" #: scripts/maildaemon.php:61 msgid "Sorry, no incoming email allowed." msgstr "" + +#, fuzzy +#~ msgid "These people are subscribed to you: " +#~ msgstr "Оддалечена претплата" diff --git a/locale/nb/LC_MESSAGES/statusnet.mo b/locale/nb/LC_MESSAGES/statusnet.mo index ee9dea03a32f7c9ff83c7846f83aae6106e5eb24..00a1f197f1459d49583bf3aa37f00cc9e878cb41 100644 GIT binary patch delta 7480 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 POTA5%y`z6yoEG;_R$#}i delta 6564 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 RPL@ - abonneren op gebruiker\n" +"groups - geef uw groepslidmaatschappen weer\n" +"subscriptions - geeft uw gebruikersabonnenmenten weer\n" +"subscribers - geeft de gebruikers die een abonnement op u hebben weer\n" "leave - abonnement op gebruiker opzeggen\n" "d - direct bericht aan gebruiker\n" "get - laatste mededeling van gebruiker opvragen\n" @@ -3979,20 +4344,20 @@ msgstr "" "tracks - nog niet beschikbaar\n" "tracking - nog niet beschikbaar\n" -#: lib/common.php:192 +#: lib/common.php:203 msgid "No configuration file found. " msgstr "Er is geen instellingenbestand aangetroffen. " -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "Er is gezocht naar instellingenbestanden op de volgende plaatsen: " -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" "U kunt proberen de installer uit te voeren om dit probleem op te lossen." -#: lib/common.php:195 +#: lib/common.php:206 msgid "Go to the installer." msgstr "Naar het installatieprogramma gaan." @@ -4012,10 +4377,6 @@ msgstr "Updates via SMS" msgid "Database error" msgstr "Databasefout" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "Achtergrondafbeelding wijzigen" - #: lib/designsettings.php:105 msgid "Upload file" msgstr "Bestand uploaden" @@ -4027,62 +4388,6 @@ msgstr "" "U kunt een persoonlijke achtergrondafbeelding uploaden. De maximale " "bestandsgroote is 2 megabyte." -#: lib/designsettings.php:139 -msgid "On" -msgstr "Aan" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "Uit" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "Achtergrondafbeelding inschakelen of uitschakelen." - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "Achtergrondafbeelding naast elkaar" - -#: lib/designsettings.php:170 -msgid "Change colours" -msgstr "Kleuren wijzigen" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "Achtergrond" - -#: lib/designsettings.php:191 -msgid "Content" -msgstr "Inhoud" - -#: lib/designsettings.php:204 -msgid "Sidebar" -msgstr "Menubalk" - -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Tekst" - -#: lib/designsettings.php:230 -msgid "Links" -msgstr "Verwijzingen" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "Standaardinstellingen gebruiken" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "Standaardontwerp toepassen" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "Standaardinstellingen toepassen" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "Ontwerp opslaan" - #: lib/designsettings.php:372 msgid "Bad default color settings: " msgstr "Foutieve standaard kleurinstellingen: " @@ -4325,12 +4630,12 @@ msgstr "" "Dank u wel voor uw tijd.\n" "%s\n" -#: lib/mail.php:235 +#: lib/mail.php:236 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s volgt nu uw berichten %2$s." -#: lib/mail.php:240 +#: lib/mail.php:241 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4355,17 +4660,17 @@ msgstr "" "----\n" "Wijzig uw e-mailadres of instellingen op %8$s\n" -#: lib/mail.php:253 +#: lib/mail.php:254 #, php-format msgid "Location: %s\n" msgstr "Locatie: %s\n" -#: lib/mail.php:255 +#: lib/mail.php:256 #, php-format msgid "Homepage: %s\n" msgstr "Thuispagina: %s\n" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" @@ -4374,12 +4679,12 @@ msgstr "" "Beschrijving: %s\n" "\n" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "Nieuw e-mailadres om e-mail te versturen aan %s" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4400,21 +4705,21 @@ msgstr "" "Met vriendelijke groet,\n" "%4$s" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "%s status" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "SMS-bevestiging" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "%s heeft u gepord" -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4442,12 +4747,12 @@ msgstr "" "Met vriendelijke groet,\n" "%4$s\n" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "U hebt een nieuw privébericht van %s." -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4481,12 +4786,12 @@ msgstr "" "Met vriendelijke groet,\n" "%5$s\n" -#: lib/mail.php:554 +#: lib/mail.php:559 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s (@%s) heeft uw mededeling als favoriet toegevoegd" -#: lib/mail.php:556 +#: lib/mail.php:561 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4524,12 +4829,12 @@ msgstr "" "Met vriendelijke groet,\n" "%6$s\n" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "%s (@%s) heeft u een mededeling gestuurd" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4682,7 +4987,13 @@ msgstr "" msgid "Duplicate notice" msgstr "Kennisgeving van duplicaat" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "" +"Die gebruiker heeft de mogelijkheid om te abonneren voor u geblokkeerd." + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Kon nieuw abonnement niet toevoegen." @@ -4698,10 +5009,6 @@ msgstr "Antwoorden" msgid "Favorites" msgstr "Favorieten" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Gebruiker" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Postvak IN" @@ -4751,6 +5058,15 @@ msgstr "Lid sinds" msgid "All groups" msgstr "Alle groepen" +#: lib/profileformaction.php:123 +#, fuzzy +msgid "No return-to arguments" +msgstr "Geen ID-argument." + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "Openbaar" @@ -4771,6 +5087,16 @@ msgstr "Uitgelicht" msgid "Popular" msgstr "Populair" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "Postvak IN" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Deblokkeer deze gebruiker." + #: lib/searchaction.php:120 msgid "Search site" msgstr "Site doorzoeken" @@ -4807,6 +5133,16 @@ msgstr "Naamloze sectie" msgid "More..." msgstr "Meer..." +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Kennisgeving van site" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Deze gebruiker blokkeren" + #: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" @@ -4836,27 +5172,27 @@ msgstr "" msgid "(none)" msgstr "(geen)" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "U bent al gebonneerd!" -#: lib/subs.php:52 +#: lib/subs.php:56 msgid "User has blocked you." msgstr "Deze gebruiker negeert u." -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "Kan niet abonneren " -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "Het was niet mogelijk om een ander op u te laten abonneren" -#: lib/subs.php:124 +#: lib/subs.php:128 msgid "Not subscribed!" msgstr "Niet geabonneerd!" -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "Kon abonnement niet verwijderen." @@ -4868,6 +5204,29 @@ msgstr "Geen" msgid "Top posters" msgstr "Meest actieve gebruikers" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "Deblokkeer deze gebruiker." + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Deblokkeer deze gebruiker." + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Deblokkeer deze gebruiker." + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Uitschrijven van deze gebruiker" @@ -4969,3 +5328,6 @@ msgstr "Dit is niet uw inkomende e-mailadres." #: scripts/maildaemon.php:61 msgid "Sorry, no incoming email allowed." msgstr "Inkomende e-mail is niet toegestaan." + +#~ msgid "These people are subscribed to you: " +#~ msgstr "De volgende gebruikers hebben een abonnement op u: " diff --git a/locale/nn/LC_MESSAGES/statusnet.mo b/locale/nn/LC_MESSAGES/statusnet.mo index abb9b61911a22db9199bbde3100f94f72f9ab68a..306a5b62412d6d3fe6c940087ee4c0bfcd48a4c0 100644 GIT binary patch delta 19893 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 NyY9PE7vy%0{U4z#D>ncD diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index 7dcdcb0dfd..dc1a70e1ee 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -5,12 +5,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-16 19:42+0000\n" -"PO-Revision-Date: 2009-11-16 19:43:54+0000\n" +"POT-Creation-Date: 2009-11-18 19:31+0000\n" +"PO-Revision-Date: 2009-11-18 19:32:19+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(r59142); Translate extension (2009-11-13)\n" +"X-Generator: MediaWiki 1.16alpha(r59207); Translate extension (2009-11-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" "X-Message-Group: out-statusnet\n" @@ -42,7 +42,7 @@ msgstr "Dette emneord finst ikkje." #: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 #: lib/command.php:364 lib/command.php:411 lib/command.php:466 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 +#: lib/subs.php:34 lib/subs.php:116 msgid "No such user." msgstr "Brukaren finst ikkje." @@ -145,7 +145,8 @@ msgstr "Kan ikkje oppdatera brukar." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 #: actions/apistatusesupdate.php:127 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: actions/designadminpanel.php:125 actions/newnotice.php:94 +#: lib/designsettings.php:283 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -231,12 +232,12 @@ msgstr "Alle direkte meldingar sendt til %s" #: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 #: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigrouplistall.php:120 actions/apigrouplist.php:132 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apigroupmembership.php:106 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/apitimelinegroup.php:147 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!" @@ -375,6 +376,13 @@ msgstr "Kallenamnet er allereie i bruk. Prøv eit anna." msgid "Alias can't be the same as nickname." msgstr "" +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#, fuzzy +msgid "Group not found!" +msgstr "Fann ikkje API-metode." + #: actions/apigroupjoin.php:110 #, fuzzy msgid "You are already a member of that group." @@ -466,13 +474,13 @@ msgstr "%s / Favorittar frå %s" msgid "%s updates favorited by %s / %s." msgstr "%s oppdateringar favorisert av %s / %s." -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s tidsline" -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -560,7 +568,8 @@ msgstr "Original" msgid "Preview" msgstr "Forhandsvis" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#: actions/avatarsettings.php:148 lib/deleteuserform.php:66 +#: lib/noticelist.php:522 msgid "Delete" msgstr "Slett" @@ -572,7 +581,7 @@ msgstr "Last opp" msgid "Crop" msgstr "Skaler" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/avatarsettings.php:265 actions/disfavor.php:74 #: actions/emailsettings.php:237 actions/favor.php:75 #: actions/groupblock.php:66 actions/grouplogo.php:309 #: actions/groupunblock.php:66 actions/imsettings.php:206 @@ -582,7 +591,7 @@ msgstr "Skaler" #: actions/profilesettings.php:187 actions/recoverpassword.php:337 #: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 +#: actions/tagother.php:166 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 lib/designsettings.php:294 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." @@ -649,71 +658,50 @@ msgstr "Ei liste over brukarane i denne gruppa." msgid "Unblock user from group" msgstr "De-blokkering av brukar feila." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" msgstr "Lås opp" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Lås opp brukaren" -#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61 -#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87 -#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31 -#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "Ikkje logga inn" +#: actions/block.php:69 +#, fuzzy +msgid "You already blocked that user." +msgstr "Du har allereie blokkert denne brukaren." -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 -msgid "No profile specified." -msgstr "Ingen vald profil." - -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 -msgid "No profile with that ID." -msgstr "Fann ingen profil med den IDen." - -#: actions/block.php:111 actions/block.php:134 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 msgid "Block user" msgstr "Blokker brukaren" -#: actions/block.php:136 +#: actions/block.php:130 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/block.php:149 actions/deletenotice.php:145 -#: actions/groupblock.php:178 +#: actions/block.php:143 actions/deletenotice.php:145 +#: actions/deleteuser.php:147 actions/groupblock.php:178 msgid "No" msgstr "Nei" -#: actions/block.php:149 +#: actions/block.php:143 actions/deleteuser.php:147 #, fuzzy msgid "Do not block this user" msgstr "Lås opp brukaren" -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:179 +#: actions/block.php:144 actions/deletenotice.php:146 +#: actions/deleteuser.php:148 actions/groupblock.php:179 msgid "Yes" msgstr "Jau" -#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 -#: lib/blockform.php:153 +#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 msgid "Block this user" msgstr "Blokkér denne brukaren" -#: actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Du har allereie blokkert denne brukaren." - -#: actions/block.php:170 +#: actions/block.php:162 msgid "Failed to save block information." msgstr "Lagring av informasjon feila." @@ -779,6 +767,15 @@ msgstr "Notisar" msgid "No such notice." msgstr "Denne notisen finst ikkje." +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 +#: actions/unsubscribe.php:52 lib/adminpanelaction.php:72 +#: lib/profileformaction.php:63 lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Ikkje logga inn" + #: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Kan ikkje sletta notisen." @@ -814,6 +811,146 @@ msgstr "Slett denne notisen" 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/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "Kan ikkje oppdatera brukar." + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "Du kan ikkje sletta statusen til ein annan brukar." + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +#, fuzzy +msgid "Delete user" +msgstr "Slett" + +#: actions/deleteuser.php:135 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "Slett denne notisen" + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/adminpanelaction.php:275 lib/groupnav.php:119 +msgid "Design" +msgstr "" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "" + +#: actions/designadminpanel.php:220 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "Klarte ikkje å lagra Twitter-innstillingane dine!" + +#: actions/designadminpanel.php:301 +#, fuzzy, php-format +msgid "Theme not available: %s" +msgstr "Denne sida er ikkje tilgjengleg i eit" + +#: actions/designadminpanel.php:406 +#, fuzzy +msgid "Change theme" +msgstr "Endra" + +#: actions/designadminpanel.php:410 +msgid "Theme" +msgstr "" + +#: actions/designadminpanel.php:411 +#, fuzzy +msgid "Theme for the site." +msgstr "Logg ut or sida" + +#: actions/designadminpanel.php:420 lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: actions/designadminpanel.php:424 actions/designadminpanel.php:498 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: actions/designadminpanel.php:429 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "Du kan lasta opp ein logo for gruppa." + +#: actions/designadminpanel.php:459 lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: actions/designadminpanel.php:475 lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: actions/designadminpanel.php:476 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: actions/designadminpanel.php:481 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: actions/designadminpanel.php:490 lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Endra passordet ditt" + +#: actions/designadminpanel.php:511 lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Kopla til" + +#: actions/designadminpanel.php:524 lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Søk" + +#: actions/designadminpanel.php:537 lib/designsettings.php:217 +msgid "Text" +msgstr "Tekst" + +#: actions/designadminpanel.php:550 lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Logg inn" + +#: actions/designadminpanel.php:611 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: actions/designadminpanel.php:612 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: actions/designadminpanel.php:618 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: actions/designadminpanel.php:620 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/siteadminpanel.php:371 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 actions/useradminpanel.php:226 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Lagra" + +#: actions/designadminpanel.php:621 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "Denne notisen er ikkje ein favoritt!" @@ -958,14 +1095,6 @@ msgstr "Eg vil senda notisar med epost." msgid "Publish a MicroID for my email address." msgstr "Publiser ein MicroID for epost addressa mi." -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Lagra" - #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." @@ -979,7 +1108,7 @@ msgstr "Ingen epostadresse." msgid "Cannot normalize that email address" msgstr "Klarar ikkje normalisera epostadressa" -#: actions/emailsettings.php:330 +#: actions/emailsettings.php:330 actions/siteadminpanel.php:156 msgid "Not a valid email address" msgstr "Ikkje ei gyldig epostadresse" @@ -1179,6 +1308,18 @@ msgstr "Denne notisen finst ikkje." msgid "Cannot read file." msgstr "Mista fila vår." +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +msgid "No profile specified." +msgstr "Ingen vald profil." + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: lib/profileformaction.php:77 +msgid "No profile with that ID." +msgstr "Fann ingen profil med den IDen." + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 #, fuzzy @@ -1301,11 +1442,11 @@ msgstr "%s medlemmar i gruppa, side %d" msgid "A list of the users in this group." msgstr "Ei liste over brukarane i denne gruppa." -#: actions/groupmembers.php:175 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:439 lib/groupnav.php:107 msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:346 lib/blockform.php:153 +#: actions/groupmembers.php:346 lib/blockform.php:69 msgid "Block" msgstr "Blokkér" @@ -1394,7 +1535,7 @@ msgstr "" msgid "User is not blocked from group." msgstr "Brukar har blokkert deg." -#: actions/groupunblock.php:128 actions/unblock.php:108 +#: actions/groupunblock.php:128 actions/unblock.php:77 msgid "Error removing the block." msgstr "Feil ved fjerning av blokka." @@ -1696,7 +1837,7 @@ msgstr "Feil brukarnamn eller passord" msgid "Error setting user." msgstr "Feil ved å setja brukar." -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: actions/login.php:204 actions/login.php:257 lib/action.php:457 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Logg inn" @@ -2124,7 +2265,7 @@ msgstr "" "merkelappar for deg sjølv ( bokstavar, nummer, -, ., og _ ), komma eller " "mellomroms separert." -#: actions/profilesettings.php:144 +#: actions/profilesettings.php:144 actions/siteadminpanel.php:275 msgid "Language" msgstr "Språk" @@ -2151,7 +2292,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "«Om meg» er for lang (maks 140 " -#: actions/profilesettings.php:228 +#: actions/profilesettings.php:228 actions/siteadminpanel.php:163 msgid "Timezone not selected." msgstr "Tidssone er ikkje valt." @@ -2176,7 +2317,7 @@ msgstr "Kan ikkje lagra profil." msgid "Couldn't save tags." msgstr "Kan ikkje lagra merkelapp." -#: actions/profilesettings.php:344 +#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 msgid "Settings saved." msgstr "Lagra innstillingar." @@ -2413,7 +2554,7 @@ msgstr "Feil med stadfestingskode." msgid "Registration successful" msgstr "Registreringa gikk bra" -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: actions/register.php:114 actions/register.php:502 lib/action.php:454 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrér" @@ -2459,7 +2600,7 @@ msgid "Same as password above. Required." msgstr "Samme som passord over. Påkrevd." #: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:253 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Epost" @@ -2567,7 +2708,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL til profilsida di på ei anna kompatibel mikrobloggingteneste." #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 +#: lib/userprofile.php:356 msgid "Subscribe" msgstr "Ting" @@ -2643,6 +2784,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Melding til %1$s på %2$s" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "Du kan ikkje sende melding til denne brukaren." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "Brukar har blokkert deg." + #: actions/showfavorites.php:79 #, fuzzy, php-format msgid "%s's favorite notices, page %d" @@ -2888,6 +3039,145 @@ msgstr "" "**%s** har ein konto på %%%%site.name%%%%, ei [mikroblogging](http://en." "wikipedia.org/wiki/Micro-blogging)-teneste" +#: actions/silence.php:65 actions/unsilence.php:65 +#, fuzzy +msgid "You cannot silence users on this site." +msgstr "Du kan ikkje sende melding til denne brukaren." + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "Brukar har blokkert deg." + +#: actions/siteadminpanel.php:58 lib/adminpanelaction.php:272 +#, fuzzy +msgid "Site" +msgstr "Invitér" + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site." +msgstr "" + +#: actions/siteadminpanel.php:145 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:153 +#, fuzzy +msgid "You must have a valid contact email address" +msgstr "Ikkje ei gyldig epostadresse" + +#: actions/siteadminpanel.php:171 +#, php-format +msgid "Unknown language \"%s\"" +msgstr "" + +#: actions/siteadminpanel.php:178 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/siteadminpanel.php:184 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/siteadminpanel.php:190 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/siteadminpanel.php:241 +#, fuzzy +msgid "Site name" +msgstr "Statusmelding" + +#: actions/siteadminpanel.php:242 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:246 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:249 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:250 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:254 +#, fuzzy +msgid "contact email address for your site" +msgstr "Ny epostadresse for å oppdatera %s" + +#: actions/siteadminpanel.php:268 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:269 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:276 +#, fuzzy +msgid "Default site language" +msgstr "Foretrukke språk" + +#: actions/siteadminpanel.php:282 +#, fuzzy +msgid "Private" +msgstr "Personvern" + +#: actions/siteadminpanel.php:284 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/siteadminpanel.php:290 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/siteadminpanel.php:291 +msgid "In a scheduled job" +msgstr "" + +#: actions/siteadminpanel.php:292 +#, fuzzy +msgid "Never" +msgstr "Gjenopprett" + +#: actions/siteadminpanel.php:294 +msgid "Data snapshots" +msgstr "" + +#: actions/siteadminpanel.php:295 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/siteadminpanel.php:301 +msgid "Frequency" +msgstr "" + +#: actions/siteadminpanel.php:302 +msgid "Snapshots will be sent once every N Web hits" +msgstr "" + +#: actions/siteadminpanel.php:309 +msgid "Report URL" +msgstr "" + +#: actions/siteadminpanel.php:310 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/siteadminpanel.php:371 actions/useradminpanel.php:226 +#, fuzzy +msgid "Save site settings" +msgstr "Avatar-innstillingar" + #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "SMS innstillingar" @@ -3161,6 +3451,21 @@ msgstr "Dette emneord finst ikkje." msgid "API method under construction." msgstr "API-metoden er ikkje ferdig enno." +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "Du har allereie blokkert denne brukaren." + +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "Brukar har blokkert deg." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "Brukaren har inga profil." + #: actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Ingen profil-ID i førespurnaden." @@ -3178,6 +3483,32 @@ msgstr "Fjerna tinging" msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" +#: actions/useradminpanel.php:58 lib/personalgroupnav.php:115 +msgid "User" +msgstr "Brukar" + +#: actions/useradminpanel.php:69 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:171 +#, fuzzy +msgid "Closed" +msgstr "Blokkér" + +#: actions/useradminpanel.php:173 +msgid "Is registration on this site prohibited?" +msgstr "" + +#: actions/useradminpanel.php:178 +#, fuzzy +msgid "Invite-only" +msgstr "Invitér" + +#: actions/useradminpanel.php:180 +msgid "Is registration on this site only open to invited users?" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autoriser tinging" @@ -3339,11 +3670,16 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: classes/Message.php:55 +#: classes/Message.php:45 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "Ein feil oppstod ved sending av direkte melding." + +#: classes/Message.php:61 msgid "Could not insert message." msgstr "Kunne ikkje lagre melding." -#: classes/Message.php:65 +#: classes/Message.php:71 msgid "Could not update message with new URI." msgstr "Kunne ikkje oppdatere melding med ny URI." @@ -3375,15 +3711,15 @@ msgid "" msgstr "" "For mange notisar for raskt; tek ei pause, og prøv igjen om eit par minutt." -#: classes/Notice.php:202 +#: classes/Notice.php:200 msgid "You are banned from posting notices on this site." msgstr "Du kan ikkje lengre legge inn notisar på denne sida." -#: classes/Notice.php:268 classes/Notice.php:293 +#: classes/Notice.php:265 classes/Notice.php:290 msgid "Problem saving notice." msgstr "Eit problem oppstod ved lagring av notis." -#: classes/Notice.php:1120 +#: classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Databasefeil, kan ikkje lagra svar: %s" @@ -3413,10 +3749,6 @@ msgstr "Endra passordet ditt" msgid "Change email handling" msgstr "Endra eposthandtering" -#: lib/accountsettingsaction.php:124 lib/groupnav.php:119 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:124 #, fuzzy msgid "Design your profile" @@ -3468,97 +3800,102 @@ msgstr "Kopla til" msgid "Connect to services" msgstr "Klarte ikkje å omdirigera til tenaren: %s" -#: lib/action.php:439 lib/subgroupnav.php:105 +#: lib/action.php:439 +#, fuzzy +msgid "Change site configuration" +msgstr "Navigasjon for hovudsida" + +#: lib/action.php:443 lib/subgroupnav.php:105 msgid "Invite" msgstr "Invitér" -#: lib/action.php:440 lib/subgroupnav.php:106 +#: lib/action.php:444 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Inviter vennar og kollega til å bli med deg på %s" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout" msgstr "Logg ut" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout from the site" msgstr "Logg ut or sida" -#: lib/action.php:450 +#: lib/action.php:454 msgid "Create an account" msgstr "Opprett ny konto" -#: lib/action.php:453 +#: lib/action.php:457 msgid "Login to the site" msgstr "Logg inn or sida" -#: lib/action.php:456 lib/action.php:719 +#: lib/action.php:460 lib/action.php:723 msgid "Help" msgstr "Hjelp" -#: lib/action.php:456 +#: lib/action.php:460 msgid "Help me!" msgstr "Hjelp meg!" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search" msgstr "Søk" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search for people or text" msgstr "Søk etter folk eller innhald" -#: lib/action.php:480 +#: lib/action.php:484 msgid "Site notice" msgstr "Statusmelding" -#: lib/action.php:546 +#: lib/action.php:550 msgid "Local views" msgstr "Lokale syningar" -#: lib/action.php:612 +#: lib/action.php:616 msgid "Page notice" msgstr "Sidenotis" -#: lib/action.php:714 +#: lib/action.php:718 msgid "Secondary site navigation" msgstr "Andrenivås side navigasjon" -#: lib/action.php:721 +#: lib/action.php:725 msgid "About" msgstr "Om" -#: lib/action.php:723 +#: lib/action.php:727 msgid "FAQ" msgstr "OSS" -#: lib/action.php:727 +#: lib/action.php:731 msgid "TOS" msgstr "" -#: lib/action.php:730 +#: lib/action.php:734 msgid "Privacy" msgstr "Personvern" -#: lib/action.php:732 +#: lib/action.php:736 msgid "Source" msgstr "Kjeldekode" -#: lib/action.php:734 +#: lib/action.php:738 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:736 +#: lib/action.php:740 #, fuzzy msgid "Badge" msgstr "Dult" -#: lib/action.php:764 +#: lib/action.php:768 msgid "StatusNet software license" msgstr "StatusNets programvarelisens" -#: lib/action.php:767 +#: lib/action.php:771 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3567,12 +3904,12 @@ msgstr "" "**%%site.name%%** er ei mikrobloggingteneste av [%%site.broughtby%%](%%site." "broughtbyurl%%). " -#: lib/action.php:769 +#: lib/action.php:773 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** er ei mikrobloggingteneste. " -#: lib/action.php:771 +#: lib/action.php:775 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3583,35 +3920,60 @@ msgstr "" "%s, tilgjengeleg under [GNU Affero General Public License](http://www.fsf." "org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:785 +#: lib/action.php:789 #, fuzzy msgid "Site content license" msgstr "StatusNets programvarelisens" -#: lib/action.php:794 +#: lib/action.php:798 msgid "All " msgstr "Alle" -#: lib/action.php:799 +#: lib/action.php:803 msgid "license." msgstr "lisens." -#: lib/action.php:1052 +#: lib/action.php:1067 msgid "Pagination" msgstr "Paginering" -#: lib/action.php:1061 +#: lib/action.php:1076 msgid "After" msgstr "« Etter" -#: lib/action.php:1069 +#: lib/action.php:1084 msgid "Before" msgstr "Før »" -#: lib/action.php:1117 +#: lib/action.php:1132 msgid "There was a problem with your session token." msgstr "Det var eit problem med sesjons billetten din." +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "Du kan ikkje sende melding til denne brukaren." + +#: lib/adminpanelaction.php:195 +#, fuzzy +msgid "showForm() not implemented." +msgstr "Kommando ikkje implementert." + +#: lib/adminpanelaction.php:224 +#, fuzzy +msgid "saveSettings() not implemented." +msgstr "Kommando ikkje implementert." + +#: lib/adminpanelaction.php:273 +#, fuzzy +msgid "Basic site configuration" +msgstr "Stadfesting av epostadresse" + +#: lib/adminpanelaction.php:276 +#, fuzzy +msgid "Design configuration" +msgstr "SMS bekreftelse" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -3787,30 +4149,36 @@ msgstr "Du tingar ikkje oppdateringar til den profilen." #: lib/command.php:620 #, fuzzy -msgid "You are subscribed to these people: " -msgstr "Du tingar ikkje oppdateringar til den profilen." +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "Du tingar ikkje oppdateringar til den profilen." +msgstr[1] "Du tingar ikkje oppdateringar til den profilen." -#: lib/command.php:637 +#: lib/command.php:640 #, fuzzy msgid "No one is subscribed to you." msgstr "Kan ikkje tinga andre til deg." -#: lib/command.php:639 +#: lib/command.php:642 #, fuzzy -msgid "These people are subscribed to you: " -msgstr "Mennesker som tingar %s" +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "Kan ikkje tinga andre til deg." +msgstr[1] "Kan ikkje tinga andre til deg." -#: lib/command.php:656 +#: lib/command.php:662 #, fuzzy msgid "You are not a member of any groups." msgstr "Du er ikkje medlem av den gruppa." -#: lib/command.php:658 +#: lib/command.php:664 #, fuzzy -msgid "You are a member of these groups: " -msgstr "Du er ikkje medlem av den gruppa." +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "Du er ikkje medlem av den gruppa." +msgstr[1] "Du er ikkje medlem av den gruppa." -#: lib/command.php:670 +#: lib/command.php:678 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -3849,20 +4217,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:192 +#: lib/common.php:203 #, fuzzy msgid "No configuration file found. " msgstr "Ingen stadfestingskode." -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:195 +#: lib/common.php:206 #, fuzzy msgid "Go to the installer." msgstr "Logg inn or sida" @@ -3883,10 +4251,6 @@ msgstr "Oppdateringar over SMS" msgid "Database error" msgstr "" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" @@ -3897,66 +4261,6 @@ 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:217 -msgid "Text" -msgstr "Tekst" - -#: 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:372 msgid "Bad default color settings: " msgstr "" @@ -4186,12 +4490,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:235 +#: lib/mail.php:236 #, 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." -#: lib/mail.php:240 +#: lib/mail.php:241 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4212,17 +4516,17 @@ msgstr "" "Beste helsing,\n" "%4$s.\n" -#: lib/mail.php:253 +#: lib/mail.php:254 #, php-format msgid "Location: %s\n" msgstr "Stad: %s\n" -#: lib/mail.php:255 +#: lib/mail.php:256 #, php-format msgid "Homepage: %s\n" msgstr "Heimeside: %s\n" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" @@ -4231,12 +4535,12 @@ msgstr "" "Bio: %s\n" "\n" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "Ny epostadresse for å oppdatera %s" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4256,21 +4560,21 @@ msgstr "" "\n" "Helsing frå %4$s" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "%s status" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "SMS bekreftelse" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "Du har blitt dulta av %s" -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4286,12 +4590,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "Ny privat melding fra %s" -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4310,12 +4614,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:554 +#: lib/mail.php:559 #, 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 +#: lib/mail.php:561 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4336,12 +4640,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4479,7 +4783,12 @@ msgstr "Feil med å henta inn ekstern profil" msgid "Duplicate notice" msgstr "Slett notis" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Brukaren tillet deg ikkje å tinga meldingane sine." + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Kan ikkje leggja til ny tinging." @@ -4495,10 +4804,6 @@ msgstr "Svar" msgid "Favorites" msgstr "Favorittar" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Brukar" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Innboks" @@ -4549,6 +4854,15 @@ msgstr "Medlem sidan" msgid "All groups" msgstr "Alle gruppar" +#: lib/profileformaction.php:123 +#, fuzzy +msgid "No return-to arguments" +msgstr "Manglar argumentet ID." + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "Offentleg" @@ -4569,6 +4883,16 @@ msgstr "Framheva" msgid "Popular" msgstr "Populære" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "Innboks" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Lås opp brukaren" + #: lib/searchaction.php:120 #, fuzzy msgid "Search site" @@ -4607,6 +4931,16 @@ msgstr "Seksjon utan tittel" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Statusmelding" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Blokkér denne brukaren" + #: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" @@ -4636,28 +4970,28 @@ msgstr "" msgid "(none)" msgstr "(ingen)" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "" -#: lib/subs.php:52 +#: lib/subs.php:56 msgid "User has blocked you." msgstr "Brukar har blokkert deg." -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "Kan ikkje tinga." -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "Kan ikkje tinga andre til deg." -#: lib/subs.php:124 +#: lib/subs.php:128 #, fuzzy msgid "Not subscribed!" msgstr "Ikkje tinga." -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "Kan ikkje sletta tinging." @@ -4669,6 +5003,29 @@ msgstr "Ingen" msgid "Top posters" msgstr "Med flest meldingar" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "Lås opp brukaren" + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Lås opp brukaren" + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Lås opp brukaren" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Fjern tinging fra denne brukaren" @@ -4772,3 +5129,7 @@ msgstr "Beklager, det er ikkje di inngåande epost addresse." #: scripts/maildaemon.php:61 msgid "Sorry, no incoming email allowed." msgstr "Beklager, inngåande epost er ikkje tillatt." + +#, fuzzy +#~ msgid "These people are subscribed to you: " +#~ msgstr "Mennesker som tingar %s" diff --git a/locale/pl/LC_MESSAGES/statusnet.mo b/locale/pl/LC_MESSAGES/statusnet.mo index d3ab4e9743bd6005d38ba2b53578574c853d4d2c..b9d95d0d37426bd6812d4a4d2b8ce441f13c6613 100644 GIT binary patch delta 22408 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 L*eK`!SN?wh3Pbrr delta 20309 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 JPfc+f{trtn&&mJ* diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 94fb477f1c..e9bb0fd74d 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -5,12 +5,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-16 19:42+0000\n" -"PO-Revision-Date: 2009-11-16 19:44:02+0000\n" +"POT-Creation-Date: 2009-11-18 19:31+0000\n" +"PO-Revision-Date: 2009-11-18 19:32:25+0000\n" "Language-Team: Polish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\n" +"X-Generator: MediaWiki 1.16alpha(r59207); Translate extension (2009-11-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: out-statusnet\n" @@ -42,7 +42,7 @@ msgstr "Nie ma takiego znacznika." #: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 #: lib/command.php:364 lib/command.php:411 lib/command.php:466 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 +#: lib/subs.php:34 lib/subs.php:116 msgid "No such user." msgstr "Brak takiego użytkownika." @@ -153,7 +153,8 @@ msgstr "Nie można zaktualizować użytkownika." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 #: actions/apistatusesupdate.php:127 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: actions/designadminpanel.php:125 actions/newnotice.php:94 +#: lib/designsettings.php:283 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -243,12 +244,12 @@ msgstr "Wszystkie bezpośrednie wiadomości wysłane do użytkownika %s" #: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 #: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigrouplistall.php:120 actions/apigrouplist.php:132 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apigroupmembership.php:106 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/apitimelinegroup.php:147 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!" @@ -382,6 +383,13 @@ msgstr "Alias \"%s\" jest już używany. Spróbuj innego." msgid "Alias can't be the same as nickname." msgstr "Alias nie może być taki sam jak pseudonim." +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#, fuzzy +msgid "Group not found!" +msgstr "Nie znaleziono metody API!" + #: actions/apigroupjoin.php:110 #, fuzzy msgid "You are already a member of that group." @@ -473,13 +481,13 @@ msgstr "%s/ulubione wpisy od %s" msgid "%s updates favorited by %s / %s." msgstr "Użytkownik %s aktualizuje ulubione według %s/%s." -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Oś czasu użytkownika %s" -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -566,7 +574,8 @@ msgstr "Oryginał" msgid "Preview" msgstr "Podgląd" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#: actions/avatarsettings.php:148 lib/deleteuserform.php:66 +#: lib/noticelist.php:522 msgid "Delete" msgstr "Usuń" @@ -578,7 +587,7 @@ msgstr "Wyślij" msgid "Crop" msgstr "Przytnij" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/avatarsettings.php:265 actions/disfavor.php:74 #: actions/emailsettings.php:237 actions/favor.php:75 #: actions/groupblock.php:66 actions/grouplogo.php:309 #: actions/groupunblock.php:66 actions/imsettings.php:206 @@ -588,7 +597,7 @@ msgstr "Przytnij" #: actions/profilesettings.php:187 actions/recoverpassword.php:337 #: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 +#: actions/tagother.php:166 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 lib/designsettings.php:294 msgid "There was a problem with your session token. Try again, please." msgstr "Wystąpił problem z tokenem sesji. Spróbuj ponownie." @@ -652,40 +661,24 @@ msgstr "Lista użytkowników zablokowanych w tej grupie." msgid "Unblock user from group" msgstr "Odblokuj użytkownika w tej grupie" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" msgstr "Odblokuj" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Odblokuj tego użytkownika" -#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61 -#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87 -#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31 -#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "Niezalogowany." +#: actions/block.php:69 +#, fuzzy +msgid "You already blocked that user." +msgstr "Ten użytkownik został już zablokowany." -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 -msgid "No profile specified." -msgstr "Nie podano profilu." - -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 -msgid "No profile with that ID." -msgstr "Brak profilu o tym identyfikatorze." - -#: actions/block.php:111 actions/block.php:134 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 msgid "Block user" msgstr "Zablokuj użytkownika" -#: actions/block.php:136 +#: actions/block.php:130 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 " @@ -695,31 +688,26 @@ 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/block.php:149 actions/deletenotice.php:145 -#: actions/groupblock.php:178 +#: actions/block.php:143 actions/deletenotice.php:145 +#: actions/deleteuser.php:147 actions/groupblock.php:178 msgid "No" msgstr "Nie" -#: actions/block.php:149 +#: actions/block.php:143 actions/deleteuser.php:147 #, fuzzy msgid "Do not block this user" msgstr "Odblokuj tego użytkownika" -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:179 +#: actions/block.php:144 actions/deletenotice.php:146 +#: actions/deleteuser.php:148 actions/groupblock.php:179 msgid "Yes" msgstr "Tak" -#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 -#: lib/blockform.php:153 +#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 msgid "Block this user" msgstr "Zablokuj tego użytkownika" -#: actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Ten użytkownik został już zablokowany." - -#: actions/block.php:170 +#: actions/block.php:162 msgid "Failed to save block information." msgstr "Zapisanie informacji o blokadzie nie powiodło się." @@ -784,6 +772,15 @@ msgstr "Wpisy" msgid "No such notice." msgstr "Nie ma takiego wpisu." +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 +#: actions/unsubscribe.php:52 lib/adminpanelaction.php:72 +#: lib/profileformaction.php:63 lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Niezalogowany." + #: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Nie można usunąć tego wpisu." @@ -816,6 +813,142 @@ msgstr "Usuń ten wpis" msgid "There was a problem with your session token. Try again, please." msgstr "Wystąpił problem z tokenem sesji. Spróbuj ponownie." +#: actions/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "Nie można zaktualizować użytkownika." + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "Nie można usuwać statusów innych użytkowników." + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +#, fuzzy +msgid "Delete user" +msgstr "Usuń" + +#: actions/deleteuser.php:135 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "Usuń ten wpis" + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/adminpanelaction.php:275 lib/groupnav.php:119 +msgid "Design" +msgstr "Wygląd" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "" + +#: actions/designadminpanel.php:220 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "Nie można zapisać ustawień wyglądu!" + +#: actions/designadminpanel.php:301 +#, fuzzy, php-format +msgid "Theme not available: %s" +msgstr "Ta strona nie jest dostępna w " + +#: actions/designadminpanel.php:406 +#, fuzzy +msgid "Change theme" +msgstr "Zmień" + +#: actions/designadminpanel.php:410 +msgid "Theme" +msgstr "" + +#: actions/designadminpanel.php:411 +#, fuzzy +msgid "Theme for the site." +msgstr "Wyloguj się ze strony" + +#: actions/designadminpanel.php:420 lib/designsettings.php:101 +msgid "Change background image" +msgstr "Zmień obraz tłas" + +#: actions/designadminpanel.php:424 actions/designadminpanel.php:498 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "Tło" + +#: actions/designadminpanel.php:429 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "Można wysłać obraz logo grupy. Maksymalny rozmiar pliku to %s." + +#: actions/designadminpanel.php:459 lib/designsettings.php:139 +msgid "On" +msgstr "Włączone" + +#: actions/designadminpanel.php:475 lib/designsettings.php:155 +msgid "Off" +msgstr "Wyłączone" + +#: actions/designadminpanel.php:476 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "Włącz lub wyłącz obraz tła." + +#: actions/designadminpanel.php:481 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "Kafelkowy obraz tła" + +#: actions/designadminpanel.php:490 lib/designsettings.php:170 +msgid "Change colours" +msgstr "Zmień kolory" + +#: actions/designadminpanel.php:511 lib/designsettings.php:191 +msgid "Content" +msgstr "Zawartość" + +#: actions/designadminpanel.php:524 lib/designsettings.php:204 +msgid "Sidebar" +msgstr "Panel boczny" + +#: actions/designadminpanel.php:537 lib/designsettings.php:217 +msgid "Text" +msgstr "Tekst" + +#: actions/designadminpanel.php:550 lib/designsettings.php:230 +msgid "Links" +msgstr "Odnośniki" + +#: actions/designadminpanel.php:611 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "Użyj domyślnych" + +#: actions/designadminpanel.php:612 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "Przywróć domyślny wygląd" + +#: actions/designadminpanel.php:618 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "Przywróć domyślne ustawienia" + +#: actions/designadminpanel.php:620 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/siteadminpanel.php:371 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 actions/useradminpanel.php:226 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Zapisz" + +#: actions/designadminpanel.php:621 lib/designsettings.php:257 +msgid "Save design" +msgstr "Zapisz wygląd" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "Ten wpis nie jest ulubiony!" @@ -959,14 +1092,6 @@ msgstr "Chcę wysyłać wpisy przez e-mail." msgid "Publish a MicroID for my email address." msgstr "Opublikuj MicroID adresu e-mail." -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Zapisz" - #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." @@ -980,7 +1105,7 @@ msgstr "Brak adresu e-mail." msgid "Cannot normalize that email address" msgstr "Nie można znormalizować tego adresu e-mail" -#: actions/emailsettings.php:330 +#: actions/emailsettings.php:330 actions/siteadminpanel.php:156 msgid "Not a valid email address" msgstr "To nie jest prawidłowy adres e-mail" @@ -1185,6 +1310,18 @@ msgstr "Nie ma takiego wpisu." msgid "Cannot read file." msgstr "Utracono plik." +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +msgid "No profile specified." +msgstr "Nie podano profilu." + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: lib/profileformaction.php:77 +msgid "No profile with that ID." +msgstr "Brak profilu o tym identyfikatorze." + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 msgid "No group specified." @@ -1298,11 +1435,11 @@ msgstr "Członkowie grupy %s, strona %d" msgid "A list of the users in this group." msgstr "Lista użytkowników znajdujących się w tej grupie." -#: actions/groupmembers.php:175 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:439 lib/groupnav.php:107 msgid "Admin" msgstr "Administrator" -#: actions/groupmembers.php:346 lib/blockform.php:153 +#: actions/groupmembers.php:346 lib/blockform.php:69 msgid "Block" msgstr "Zablokuj" @@ -1396,7 +1533,7 @@ msgstr "Tylko administrator może odblokowywać członków grupy." msgid "User is not blocked from group." msgstr "Użytkownik nie został zablokowany w grupie." -#: actions/groupunblock.php:128 actions/unblock.php:108 +#: actions/groupunblock.php:128 actions/unblock.php:77 msgid "Error removing the block." msgstr "Błąd podczas usuwania blokady." @@ -1709,7 +1846,7 @@ msgstr "Niepoprawna nazwa użytkownika lub hasło." msgid "Error setting user." msgstr "Błąd podczas ustawiania użytkownika." -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: actions/login.php:204 actions/login.php:257 lib/action.php:457 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Zaloguj się" @@ -2139,7 +2276,7 @@ msgstr "" "Znaczniki dla siebie (litery, liczby, -, . i _), oddzielone przecinkami lub " "spacjami" -#: actions/profilesettings.php:144 +#: actions/profilesettings.php:144 actions/siteadminpanel.php:275 msgid "Language" msgstr "Język" @@ -2167,7 +2304,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Wpis \"O mnie\" jest za długi (maksymalnie 140 znaków)." -#: actions/profilesettings.php:228 +#: actions/profilesettings.php:228 actions/siteadminpanel.php:163 msgid "Timezone not selected." msgstr "Nie wybrano strefy czasowej." @@ -2192,7 +2329,7 @@ msgstr "Nie można zapisać profilu." msgid "Couldn't save tags." msgstr "Nie można zapisać znaczników." -#: actions/profilesettings.php:344 +#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 msgid "Settings saved." msgstr "Zapisano ustawienia." @@ -2436,7 +2573,7 @@ msgstr "Przepraszamy, nieprawidłowy kod zaproszenia." msgid "Registration successful" msgstr "Rejestracja powiodła się" -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: actions/register.php:114 actions/register.php:502 lib/action.php:454 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Zarejestruj się" @@ -2487,7 +2624,7 @@ msgid "Same as password above. Required." msgstr "Takie samo jak powyższe hasło. Wymagane." #: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:253 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mail" @@ -2593,7 +2730,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "Adres URL profilu na innej, zgodnej usłudze mikroblogowania" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 +#: lib/userprofile.php:356 msgid "Subscribe" msgstr "Zasubskrybuj" @@ -2675,6 +2812,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Wiadomość do użytkownika %1$s na %2$s" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "Nie można wysłać wiadomości do tego użytkownika." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "Użytkownik został już zablokował w grupie." + #: actions/showfavorites.php:79 #, php-format msgid "%s's favorite notices, page %d" @@ -2945,6 +3092,145 @@ msgstr "" "pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet]" "(http://status.net/). " +#: actions/silence.php:65 actions/unsilence.php:65 +#, fuzzy +msgid "You cannot silence users on this site." +msgstr "Nie można wysłać wiadomości do tego użytkownika." + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "Użytkownik został już zablokował w grupie." + +#: actions/siteadminpanel.php:58 lib/adminpanelaction.php:272 +#, fuzzy +msgid "Site" +msgstr "Zaproś" + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site." +msgstr "" + +#: actions/siteadminpanel.php:145 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:153 +#, fuzzy +msgid "You must have a valid contact email address" +msgstr "To nie jest prawidłowy adres e-mail" + +#: actions/siteadminpanel.php:171 +#, php-format +msgid "Unknown language \"%s\"" +msgstr "" + +#: actions/siteadminpanel.php:178 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/siteadminpanel.php:184 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/siteadminpanel.php:190 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/siteadminpanel.php:241 +#, fuzzy +msgid "Site name" +msgstr "Wpis strony" + +#: actions/siteadminpanel.php:242 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:246 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:249 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:250 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:254 +#, fuzzy +msgid "contact email address for your site" +msgstr "Nowy adres e-mail do wysyłania do %s" + +#: actions/siteadminpanel.php:268 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:269 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:276 +#, fuzzy +msgid "Default site language" +msgstr "Preferowany język" + +#: actions/siteadminpanel.php:282 +#, fuzzy +msgid "Private" +msgstr "Prywatność" + +#: actions/siteadminpanel.php:284 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/siteadminpanel.php:290 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/siteadminpanel.php:291 +msgid "In a scheduled job" +msgstr "" + +#: actions/siteadminpanel.php:292 +#, fuzzy +msgid "Never" +msgstr "Przywróć" + +#: actions/siteadminpanel.php:294 +msgid "Data snapshots" +msgstr "" + +#: actions/siteadminpanel.php:295 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/siteadminpanel.php:301 +msgid "Frequency" +msgstr "" + +#: actions/siteadminpanel.php:302 +msgid "Snapshots will be sent once every N Web hits" +msgstr "" + +#: actions/siteadminpanel.php:309 +msgid "Report URL" +msgstr "" + +#: actions/siteadminpanel.php:310 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/siteadminpanel.php:371 actions/useradminpanel.php:226 +#, fuzzy +msgid "Save site settings" +msgstr "Ustawienia awatara" + #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "Ustawienia SMS" @@ -3227,6 +3513,21 @@ msgstr "Nie ma takiego znacznika." msgid "API method under construction." msgstr "Metoda API jest w trakcie tworzenia." +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "Ten użytkownik został już zablokowany." + +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "Użytkownik nie został zablokowany w grupie." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "Użytkownik nie posiada profilu." + #: actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Brak identyfikatora profilu w żądaniu." @@ -3244,6 +3545,32 @@ msgstr "Zrezygnowano z subskrypcji" msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" +#: actions/useradminpanel.php:58 lib/personalgroupnav.php:115 +msgid "User" +msgstr "Użytkownik" + +#: actions/useradminpanel.php:69 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:171 +#, fuzzy +msgid "Closed" +msgstr "Zablokowano" + +#: actions/useradminpanel.php:173 +msgid "Is registration on this site prohibited?" +msgstr "" + +#: actions/useradminpanel.php:178 +#, fuzzy +msgid "Invite-only" +msgstr "Zaproś" + +#: actions/useradminpanel.php:180 +msgid "Is registration on this site only open to invited users?" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Upoważnij subskrypcję" @@ -3407,11 +3734,16 @@ msgstr "" "Plik tej wielkości przekroczyłby miesięczny przydział użytkownika wynoszący %" "d bajty." -#: classes/Message.php:55 +#: classes/Message.php:45 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "Błąd podczas wysyłania bezpośredniej wiadomości." + +#: classes/Message.php:61 msgid "Could not insert message." msgstr "Nie można wprowadzić wiadomości." -#: classes/Message.php:65 +#: classes/Message.php:71 msgid "Could not update message with new URI." msgstr "Nie można zaktualizować wiadomości za pomocą nowego adresu URL." @@ -3443,15 +3775,15 @@ msgstr "" "Za dużo takich samych wiadomości w za krótkim czasie, weź głęboki oddech i " "wyślij ponownie za kilka minut." -#: classes/Notice.php:202 +#: classes/Notice.php:200 msgid "You are banned from posting notices on this site." msgstr "Zabroniono Ci wysyłania wpisów na tej stronie." -#: classes/Notice.php:268 classes/Notice.php:293 +#: classes/Notice.php:265 classes/Notice.php:290 msgid "Problem saving notice." msgstr "Problem podczas zapisywania wpisu." -#: classes/Notice.php:1120 +#: classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Błąd bazy danych podczas wprowadzania odpowiedzi: %s" @@ -3481,10 +3813,6 @@ msgstr "Zmień hasło" msgid "Change email handling" msgstr "Zmień obsługę adresu e-mail" -#: lib/accountsettingsaction.php:124 lib/groupnav.php:119 -msgid "Design" -msgstr "Wygląd" - #: lib/accountsettingsaction.php:124 msgid "Design your profile" msgstr "Wygląd profilu" @@ -3535,96 +3863,101 @@ msgstr "Połącz" msgid "Connect to services" msgstr "Nie można przekierować do serwera: %s" -#: lib/action.php:439 lib/subgroupnav.php:105 +#: lib/action.php:439 +#, fuzzy +msgid "Change site configuration" +msgstr "Główna nawigacja strony" + +#: lib/action.php:443 lib/subgroupnav.php:105 msgid "Invite" msgstr "Zaproś" -#: lib/action.php:440 lib/subgroupnav.php:106 +#: lib/action.php:444 lib/subgroupnav.php:106 #, 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" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout" msgstr "Wyloguj się" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout from the site" msgstr "Wyloguj się ze strony" -#: lib/action.php:450 +#: lib/action.php:454 msgid "Create an account" msgstr "Utwórz konto" -#: lib/action.php:453 +#: lib/action.php:457 msgid "Login to the site" msgstr "Zaloguj się na stronę" -#: lib/action.php:456 lib/action.php:719 +#: lib/action.php:460 lib/action.php:723 msgid "Help" msgstr "Pomoc" -#: lib/action.php:456 +#: lib/action.php:460 msgid "Help me!" msgstr "Pomóż mi!" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search" msgstr "Znajdź" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search for people or text" msgstr "Znajdź osoby lub tekst" -#: lib/action.php:480 +#: lib/action.php:484 msgid "Site notice" msgstr "Wpis strony" -#: lib/action.php:546 +#: lib/action.php:550 msgid "Local views" msgstr "Lokalne widoki" -#: lib/action.php:612 +#: lib/action.php:616 msgid "Page notice" msgstr "Wpis strony" -#: lib/action.php:714 +#: lib/action.php:718 msgid "Secondary site navigation" msgstr "Druga nawigacja strony" -#: lib/action.php:721 +#: lib/action.php:725 msgid "About" msgstr "O usłudze" -#: lib/action.php:723 +#: lib/action.php:727 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:727 +#: lib/action.php:731 msgid "TOS" msgstr "TOS" -#: lib/action.php:730 +#: lib/action.php:734 msgid "Privacy" msgstr "Prywatność" -#: lib/action.php:732 +#: lib/action.php:736 msgid "Source" msgstr "Kod źródłowy" -#: lib/action.php:734 +#: lib/action.php:738 msgid "Contact" msgstr "Kontakt" -#: lib/action.php:736 +#: lib/action.php:740 msgid "Badge" msgstr "Odznaka" -#: lib/action.php:764 +#: lib/action.php:768 msgid "StatusNet software license" msgstr "Licencja oprogramowania StatusNet" -#: lib/action.php:767 +#: lib/action.php:771 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3633,12 +3966,12 @@ msgstr "" "**%%site.name%%** jest usługą mikroblogowania prowadzoną przez [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:769 +#: lib/action.php:773 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** jest usługą mikroblogowania. " -#: lib/action.php:771 +#: lib/action.php:775 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3649,35 +3982,60 @@ msgstr "" "status.net/) w wersji %s, dostępnego na [Powszechnej Licencji Publicznej GNU " "Affero](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:785 +#: lib/action.php:789 #, fuzzy msgid "Site content license" msgstr "Licencja oprogramowania StatusNet" -#: lib/action.php:794 +#: lib/action.php:798 msgid "All " msgstr "Wszystko " -#: lib/action.php:799 +#: lib/action.php:803 msgid "license." msgstr "licencja." -#: lib/action.php:1052 +#: lib/action.php:1067 msgid "Pagination" msgstr "Paginacja" -#: lib/action.php:1061 +#: lib/action.php:1076 msgid "After" msgstr "Następne" -#: lib/action.php:1069 +#: lib/action.php:1084 msgid "Before" msgstr "Wcześniej" -#: lib/action.php:1117 +#: lib/action.php:1132 msgid "There was a problem with your session token." msgstr "Wystąpił problem z tokenem sesji." +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "Nie można wysłać wiadomości do tego użytkownika." + +#: lib/adminpanelaction.php:195 +#, fuzzy +msgid "showForm() not implemented." +msgstr "Nie zaimplementowano polecenia." + +#: lib/adminpanelaction.php:224 +#, fuzzy +msgid "saveSettings() not implemented." +msgstr "Nie zaimplementowano polecenia." + +#: lib/adminpanelaction.php:273 +#, fuzzy +msgid "Basic site configuration" +msgstr "Potwierdzenie adresu e-mail" + +#: lib/adminpanelaction.php:276 +#, fuzzy +msgid "Design configuration" +msgstr "Potwierdzenie SMS" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "Załączniki" @@ -3855,30 +4213,36 @@ msgstr "Nie jesteś zasubskrybowany do tego profilu." #: lib/command.php:620 #, fuzzy -msgid "You are subscribed to these people: " -msgstr "Nie jesteś zasubskrybowany do tego profilu." +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "Nie jesteś zasubskrybowany do tego profilu." +msgstr[1] "Nie jesteś zasubskrybowany do tego profilu." -#: lib/command.php:637 +#: lib/command.php:640 #, fuzzy msgid "No one is subscribed to you." msgstr "Nie można zasubskrybować innych do Ciebie." -#: lib/command.php:639 +#: lib/command.php:642 #, fuzzy -msgid "These people are subscribed to you: " -msgstr "Osoby zasubskrybowane do %s" +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "Nie można zasubskrybować innych do Ciebie." +msgstr[1] "Nie można zasubskrybować innych do Ciebie." -#: lib/command.php:656 +#: lib/command.php:662 #, fuzzy msgid "You are not a member of any groups." msgstr "Nie jesteś członkiem tej grupy." -#: lib/command.php:658 +#: lib/command.php:664 #, fuzzy -msgid "You are a member of these groups: " -msgstr "Nie jesteś członkiem tej grupy." +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "Nie jesteś członkiem tej grupy." +msgstr[1] "Nie jesteś członkiem tej grupy." -#: lib/command.php:670 +#: lib/command.php:678 #, fuzzy msgid "" "Commands:\n" @@ -3944,20 +4308,20 @@ msgstr "" "tracks - jeszcze nie zaimplementowano.\n" "tracking - jeszcze nie zaimplementowano.\n" -#: lib/common.php:192 +#: lib/common.php:203 #, fuzzy msgid "No configuration file found. " msgstr "Brak kodu potwierdzającego." -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:195 +#: lib/common.php:206 #, fuzzy msgid "Go to the installer." msgstr "Zaloguj się na stronę" @@ -3978,10 +4342,6 @@ msgstr "Aktualizacje przez wiadomości SMS" msgid "Database error" msgstr "Błąd bazy danych" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "Zmień obraz tłas" - #: lib/designsettings.php:105 msgid "Upload file" msgstr "Wyślij plik" @@ -3991,62 +4351,6 @@ 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 -msgid "On" -msgstr "Włączone" - -#: lib/designsettings.php:155 -msgid "Off" -msgstr "Wyłączone" - -#: lib/designsettings.php:156 -msgid "Turn background image on or off." -msgstr "Włącz lub wyłącz obraz tła." - -#: lib/designsettings.php:161 -msgid "Tile background image" -msgstr "Kafelkowy obraz tła" - -#: lib/designsettings.php:170 -msgid "Change colours" -msgstr "Zmień kolory" - -#: lib/designsettings.php:178 -msgid "Background" -msgstr "Tło" - -#: lib/designsettings.php:191 -msgid "Content" -msgstr "Zawartość" - -#: lib/designsettings.php:204 -msgid "Sidebar" -msgstr "Panel boczny" - -#: lib/designsettings.php:217 -msgid "Text" -msgstr "Tekst" - -#: lib/designsettings.php:230 -msgid "Links" -msgstr "Odnośniki" - -#: lib/designsettings.php:247 -msgid "Use defaults" -msgstr "Użyj domyślnych" - -#: lib/designsettings.php:248 -msgid "Restore default designs" -msgstr "Przywróć domyślny wygląd" - -#: lib/designsettings.php:254 -msgid "Reset back to default" -msgstr "Przywróć domyślne ustawienia" - -#: lib/designsettings.php:257 -msgid "Save design" -msgstr "Zapisz wygląd" - #: lib/designsettings.php:372 msgid "Bad default color settings: " msgstr "Błędne domyślne ustawienia koloru: " @@ -4295,12 +4599,12 @@ msgstr "" "Dziękujemy za Twój czas, \n" "%s\n" -#: lib/mail.php:235 +#: lib/mail.php:236 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "Użytkownik %1$s obserwuje teraz Twoje wpisy na %2$s." -#: lib/mail.php:240 +#: lib/mail.php:241 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4325,17 +4629,17 @@ msgstr "" "----\n" "Zmień adres e-mail lub opcje powiadamiania na %8$s\n" -#: lib/mail.php:253 +#: lib/mail.php:254 #, php-format msgid "Location: %s\n" msgstr "Położenie: %s\n" -#: lib/mail.php:255 +#: lib/mail.php:256 #, php-format msgid "Homepage: %s\n" msgstr "Strona domowa: %s\n" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" @@ -4344,12 +4648,12 @@ msgstr "" "O mnie: %s\n" "\n" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "Nowy adres e-mail do wysyłania do %s" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4370,21 +4674,21 @@ msgstr "" "Z poważaniem,\n" "%4$s" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "Status użytkownika %s" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "Potwierdzenie SMS" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "Zostałeś szturchnięty przez %s" -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4411,12 +4715,12 @@ msgstr "" "Z poważaniem,\n" "%4$s\n" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "Nowa prywatna wiadomość od użytkownika %s" -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4449,12 +4753,12 @@ msgstr "" "Z poważaniem,\n" "%5$s\n" -#: lib/mail.php:554 +#: lib/mail.php:559 #, 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 +#: lib/mail.php:561 #, fuzzy, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4491,12 +4795,12 @@ msgstr "" "Z poważaniem,\n" "%6$s\n" -#: lib/mail.php:611 +#: lib/mail.php:620 #, 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 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4635,7 +4939,12 @@ msgstr "Błąd podczas wprowadzania zdalnego profilu" msgid "Duplicate notice" msgstr "Usuń wpis" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Ten użytkownik zablokował Cię z subskrypcji." + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Nie można wprowadzić nowej subskrypcji." @@ -4651,10 +4960,6 @@ msgstr "Odpowiedzi" msgid "Favorites" msgstr "Ulubione" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Użytkownik" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Odebrane" @@ -4704,6 +5009,15 @@ msgstr "Członek od" msgid "All groups" msgstr "Wszystkie grupy" +#: lib/profileformaction.php:123 +#, fuzzy +msgid "No return-to arguments" +msgstr "Brak parametru identyfikatora." + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "Publiczny" @@ -4724,6 +5038,16 @@ msgstr "Znane" msgid "Popular" msgstr "Popularne" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "Odebrane" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Odblokuj tego użytkownika" + #: lib/searchaction.php:120 msgid "Search site" msgstr "Znajdź stronę" @@ -4760,6 +5084,16 @@ msgstr "Sekcja bez nazwy" msgid "More..." msgstr "Więcej..." +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Wpis strony" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Zablokuj tego użytkownika" + #: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" @@ -4789,28 +5123,28 @@ msgstr "Chmura znaczników osób ze znacznikami" msgid "(none)" msgstr "(brak)" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "" -#: lib/subs.php:52 +#: lib/subs.php:56 msgid "User has blocked you." msgstr "Użytkownik zablokował Cię." -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "Nie można zasubskrybować." -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "Nie można zasubskrybować innych do Ciebie." -#: lib/subs.php:124 +#: lib/subs.php:128 #, fuzzy msgid "Not subscribed!" msgstr "Nie zasubskrybowane!" -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "Nie można usunąć subskrypcji." @@ -4822,6 +5156,29 @@ msgstr "Brak" msgid "Top posters" msgstr "Najczęściej wysyłający wpisy" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "Odblokuj tego użytkownika" + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Odblokuj tego użytkownika" + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Odblokuj tego użytkownika" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Zrezygnuj z subskrypcji tego użytkownika" @@ -4925,3 +5282,7 @@ msgstr "Przepraszamy, to nie jest twój przychodzący adres e-mail." #: scripts/maildaemon.php:61 msgid "Sorry, no incoming email allowed." msgstr "Przepraszamy, przychodzący e-mail nie jest dozwolony." + +#, fuzzy +#~ msgid "These people are subscribed to you: " +#~ msgstr "Osoby zasubskrybowane do %s" diff --git a/locale/pt/LC_MESSAGES/statusnet.mo b/locale/pt/LC_MESSAGES/statusnet.mo index 9d79df32c53d2d29de3940234720adacd055c5f7..b969c15b78fec67f94cc3e10dd14aa68e3574bac 100644 GIT binary patch delta 7103 zcmZwL4R}=5oyYN$kU$6!ATI=BNNxzP0U?ACLa-o)w?qX50)=jbAv1)5Fawzh0*X`L zWfeiLQeRMc(TdVqF$EPts#si6+_q2`X|ak`sR|Tr(YB)d{mngL^Vq$Q|M{GA?!D*z z+|b^4DB<9-gxGuON%tErC&8Fp%x!PXZAz!B)R^M##$1C#F%NIS0k{>XB^vV<4kn*} zi7}gSGM3_Jn1v3Nw!<>)kE3nA9@C78nJ|fLZrq6cXEyTF1)Gt&&1t>iHtnCY^|S{vmc?25v>=clT%h zm3Wx~b>JWt;}O(Ili2DSQ6AEUxdI(rh}3D;ARFC0izWD$E&mSnUSBqn-m6A+a4Bj= z?nDjn=@<#xGW&5DohTADjh1CKpOLN9JX-ZgKagMUXIpKh0W6%5BtjhMO&QNcLM@!l_b4jRzAES=d12_+NVtY(yXKAzLVi&B$B%EQL zjVa`>MXhx`I(RFx`OOoUirY~gZ^ks-k1_T1Z4#QIGpKwrJ28lTP&2U(bsDyzp4(^h zN6{gF2DL<;OT7{H#B}nba3D^`wzvv4fSXVq*-*;-YmFYIKqGhqwTXU*TKlhT`32N5 zYCGI3AB0QEm!KNnhH79ZYK>pOj(8NcWFOf4M>vA~7pV4%%9wwSsu@i`m?th+2xd*d13|H=s_#4pajNt$#*!Byps-$uqDk`TnRSidB%%3s>74 zi%}g~jhT2eYES$G)xqac4ZV)t@Fb4Mf1pMwQj;bls|z*_@*sCkNiC{-(e{ZzS^s|4)xp}*dCvYk?2WcFKVR6QOD(+eW3kh z?|z1LsC5deLrYK{-H592G1N$(LhbT>)^||PpT(_-+?(PpN$jO-ydJ)Ss^~mwt-eE5 zkjxfla!ej-B#W$%p*G`DtC`L}GRP0Y0eBr=j$2T>|D?6|3@^U`ndz9>PC`@i7Hac+ zWgp1q@T$VusD>W5{sxDU{|41i@l5`yjdSo)yce~E`;il8KEyKYJIkx5*185ubpCgd z$l`%hsF8n*syOL~`X30a9rnUS$VbksMZQhub=2`nobBy_bZa@P{905;L)NX>jr=>P zr8td+v~Rl2@y>SzYBSA5Rd54p_uh?q!9{g&FQ((GsE+?0_2v5vHS*LSd4J^wV+Q#J zI2c!B_z&~&?fBkAKnxVMCE5;Uu;4(un9F2FJS?`hdLdm*6UD`H5*lL z5o$maum?6+Z?|r)W&U+zk1aTAJ%ef>IJx^Sr5Za5>p2=-@%?C#dIAe4hPL z?@vN4Q4?zF??f%t^Qa{_j5=-K#z<(Y+RgV03Q;2)ggVaw9ED-jUf6-D_#6(!eYX58 zK1KdKYRxy-d4IHiiT%jGh#K(+w)_mLgRw73RFY`x_ol8IbsVSRI9!c74XtogOF9cx&ob1p+=P1X5RSx;kbe)vO#T9IlN4KLqDFcHYHDvmjc6OH z$In|2p_c3fX5wj7!-@6Y?#@L$KMYkq!8#B7kY5!y##E8e5*$RW(MjxwU)yqLp|>=b zVFBgit@WsmtwD|K5$g+BL;eVMzyU$e;iz`TT5Bcko0YcUe(O%u$PeQHJdNEkdy!|c zwaPl*dcE~N>(4PhFjPlQqBh?dEW-T7%)c6{CNU5fp5O47#V@T(%k?*#_{7>Cqr@oU z30u~MhWe7$Aja9Usi@916722xwV&VBL|2~Qguf%Ylb)dO{~Kg7$vlq^q3csZQ~qB> zHunZ%3Zd%}kN7ViK=T_y(|VlPNqk5=L-1`f>`C(q(faxanGo>;(J4mdU0U7Mce&-d zm&Dz~+r(UA5J7*EE(Q@UH*hhRx%(jKEF)p&x)rII1|jxBHDG>J~cuZU{m zdZP7}$a|?oJFRCnao*n5FTJVs;@-FT)w(V29DeZGeD ztHd3|hT!rbxL2o}(0WbSnp2E+GjyC@jY-208Mdp8OVuZCr%Z=~(CixWJ z%^()Gy0?*ZB%Wvf@3J?>V;&EFjQO}8zp?k`V}IguVl0u){rH7FY*K6?N{C5BZ{j7Q z^>tsX%)6u?)%xqY;BoQyCQ`?UHpDDj>d;s((wE>8oI%`d?_Gy0iQg0Rh#a2LRZIMm zxSx2Ec$sLqt|U>rhM!xBX~dnxR^oQzJEDw8rlLRNkBNT7QsPI%NkUf|@d2?y8LmpA zBk!EW+nRfJ`?5o}FA}VCBEe|DsSAe|1nZj`ebHbz)ST99NJ4USVPHwX9bR}{azi*0 z@HanQcu%{Wh5!#o7X~9vQzX!6#s%U9O1pCg_95ys0+C>S=zA6JADETYWnyEvX{i$m zN1X-XrjWm&`N)tli5;p!%jv+S;ZVcM=B_1oCl&fa{`uh*ts0r`TOROw83{zA!BBm~ zeYmV3vmp?wYu%UWRO7x_wyGnYTN-GLghNg+;*K4W;TDhR?beJKTh{ZOhqXHvSmc}AxDXiXRQ)QnOhs@L2{>T;V`)a*@itHwFa zrE|_Drc{R6D}LVVUHfn{_wzCq1Vh0CPafD6h&cYRGhW?yU!Fg}tsIkk@o9I!?A~r_ z-D3BPNty0?UwikCd7a(p)Lcw+Z>yW`?ybwU@r+yUFNp_@yNmoQ(y9+^aUxCgBXy0z qXt=;#HZ{v#H@S!U=B}ur-;=tyf0~q$Fl9q!ru*rf?(Ru{$^Qa5gW7fg delta 5938 zcmZA5d0drM0><&fCW0ZjA>zVC1r-5B2n7UG%#~2fB~h_lO0?9(HL0tXmAN$e+M?mw zo-O7rGc~7TGN;BYOUo=9ty~(dtf?%UvEOsgVg8u+({sP)ocnHPyZC9}ry*Ve9#HrO7U%WBHFd5rm6?VeaculA=doYuFYzwZzBFw>K*bL(m zjfuom?1-7JJ_;Ke<2U0eH0O)ys28{!_3Xzm0bfQv_y9J>a~Oq}QRhXqG=^uHL~MXL zuHFlET{+&23!JA=FMKTzE8zKN359+%?8T-S(b||aOvEI-3a8>^T!|lGHCAwU_3)VU z0_uU0Toi$+SP#=tBan?@Sm5f#nBk|PKZVXX2V-$FHo})sJ+8%cJc5k23G*4#6BBVD zjzYcoX4C_Bpzia!^8l`){sqp&S;_W!U!h+Y#J06>7LPo`B%*qdk9zZ7s39JJnvw~q z>lUKUUxMv$3+l!9A@??)qR#srnQIfmNx?ONdco9ojK6x8OM`ka(VZ|KTTx$ydV#H| z3j(OMQj2=fG1PhIQHwFUy*+i_ ztbFW@G?`Ll-IyxuhWESnw@}xeMO_!e64wi6qefsbs$;hx|CuFxWaC!URDS8Fz#G}H(U!blv8x^5C`t*t;G z`gc;$sy&Lj;YEzWW}KzP*A5v~lZzU%G1vfCplc!qbt&vYq+wuZ7z)iZbFH_K)hViSQA&W)LVX~{|p@wuY>H*W7t57$534M6b`2*_uMqTV~ z>4eu)?}JhJ7-~&DkKsJue5?W<#rk+0H5I4PhvAHSD5hXEc0|2!Ha5g!)C-oOMrOLJ zFU3mgPoPF1Hp@;?JJflF=+~SLr{Kfs7=!ntdbS?526iLUY2L?r_&dg72wOo@)fn~S zg{ZaC4>i}*T>Gu4-Eo_1--I)%KiQ4(*8`igCv@W!)HX}UD{ugY;RshBjoqo=hmU?eghlZiC8h--6+(9#yW3y-&doL_I0Q=u^TnwAEACp&--1WUanpJNvJo?cV35jk-69u z?{V!luD%O3_Xklg@I7i5UB-A!WVkdXS*Q+-MExF2z((kwN})N0YSe{mkR4`T#Af(8 z>WAq^)Pv%C*azj}2PMzNjEUs^~j)@i-r8AV`dTahl^1!REz4tQPg=ST)la*?O~F$v$H$4L!BVM7D%+t9 zXJ6C{jlr%s6aDJ(W(uXa6Gvb~KX)Q(Th7ELIM2BpAELey7h`UJI|4gV+wvT0+y0E| z`ERbh?Ew3IXH20zX8_}`H!XKxEJc1j%__{n*D<*GQ0K)Dv_0;P+9iWg9jL_SxX86X z;@si<7(4R)j~In52iXp#3}XBfXvm{MUV}Pu8g2 zhKEtB+c(TwidvNOQ4e|!bMXjfU<_MJ_w^T0VEvi#s1vrJZgkWcajpFqPZnzXO+xkj zHq?z5Av@MQi*4}~vc*l*aDK$F1Y_|I)SR!vY<$`3H)kkl4qLJEH1yf1{W=zP!F<#W zHefw`0d?Lhs24eojqz)2hQDGPj2UTrn2!8*nW5MO@5M~4!LHi>?@@@S;SbbQ7^g(LvaiG^~?7J1-)L6EaR{3 zWX9PcibC}y1+`BrumGo^=KgVv#;urzJ6!u2e1`h>s5xF+VgKknj~%FQM|Jcw*M1uH zV&^It{}Kw9X^6y<@phXHMt()jT+}Mxjp6tWCgQiKMHq3t{qvmZEXEeJ55+W`irQ`u zqOPmOJUotZnBc#`E{aahA*i0t!6d9k^{58*#@n2=sHr-FP4N`!!Iw~rx!DAJembhX z*f|=t2&16=BS09#UD?|co_fy1Z~{23E4 zX_B>v)o+GT(2b^|7R6lD&^?8E&>_^SK8YIgGZ>1ECi4$a)I;iyyItWqTt@D7b*&j4 z?MPqp4w*+-|G`hgs0ELcd>$fC5^XIVzmqxSk}4cpkUPi>GMZ>%<&q&p2fwhv<7z(p zkrjjmA3W~ivz+{mXlok3y1;QQ`A@K9|B?-IWo?&7NEqj}#pg*E(uQcX{{Og+hV|s% z?u+esntV!rac%#?)?_g8dwk>&9seY?q&ulQhPuL)*oS;U0xicE??j7i zC#gI5l{eqH$_sdy{8!_@l)_EqMG{Wxaia}*AE`TnzY(sYwNQ8b<_dRVGU1mv_-{rx ztLA(6{SthQ{DbT!50cx+a?Sty6!w#w$$2u4Xbb6>WC?!0&L=+;!R@vVOM|Wa4R`j$ z8_7Xe7h7EUUHpJ_BhQjOBzWjeE6Ge-4Q`<*%D0jq$!FwF@*a7K=vYKHlZS|oS)_!7 zFmlEC3OPdbzw~tETmJXCjnYbzN9sl@_~kJ^vw|i5I^hUc{upl|x0AQXhvacmNT!h9 zM91|co%AAW$ZV2G8k0MSj#x51SmHNF&wtfbM20J;I#1vO#+j`rjuGM{uL`^YphfqX^! zlQ+l(GLWQ^Cy0)t zRFTzn4Kk3C@Kb|8Ui*v?uPS9m;B3l@NN;t^2AwI7tzqhwD|6XrSL4tR*V3SwVvjMGL3Rgzv`m*x!bGmu8g~`#joRi=6O7FYE z6=7L4-(Hj)k{#Gsv@RwvuJn}si*un_t!@u(51yw6|q+4w>!su51+;S-vMc z&~5yM&_McxbrIghn>u=F713VfiWc6KDbpGbs@?3Xnlqtl;;hQqGm^ayl_R_lDpz|a Wr_PTkt-R@mS>CzPXdq382Gzn`xAJoov(p5MHG>;Jd^XWaYTd8>o}wLjSRO=R#)ho?r6 zhS9&1NJKBpL?-WyN6l~nx^cD5{}?rci>Md>g{oKjNnsP~SR1bP zCi3m&`rVf2f6A;tC5$A$E^0;FpjPl%)Y(cv_46WX%V+tB=v1G; zGWZi}00n!Rjw7)m>ADz!y)Xs`qUudT-Ii%s3>TpWwh`6g0W5^)Q7d{Ki(=_sroOKh z5e=XXY5@IFFMbJ&-~?0$vrzSxqdM4wn%N1P{t|Uvuc8K;r?;tJ6!l%GgQ`Eik2zzL zk+jcQWFpQxsFAM2+PED{;SDT}AJv#cV< zqsseWDc%3EM05z}pkBNkwMQ3FhwculgXq2{-3ImIL8uu|#~gRmD&2h~t#rX?1} zCr};qLY<*xEQq7948Dpwj7wf%{k6o$$k3kuhN>9nF$1WBTGBqKvyg_G>1#GU54DsV zQ8WDnHKFfO?QWx1s9=Ay=M_-zX^&50LVuqb;d^9gQSzsW z1wOXvbJlyP0hjTb4_75rx*BRl8e$B#N3Gak)Wm$R5XnnqHmc%6)R%5OhTt~TO!uK0 zp2TRph8k$WBx6m~0K1_Z)2&lc16hx1za6#0r;I-529X!Y$UnezJP_kaXP~|ZvoQ~@ zK&{9s%!@lvTec5X?*!_X&^gqhyK2k-vgHK^nvRR3CQvJoX8*eo(Vh&%VDw=Kj<@MI zZF)ND)XznAxEVEo{piM%sDb{58p!XcndeD10}n$DydtW76)aBwP6HxZ;!dcM^;H3m zv1vc@e@-qxwD;u(nX^&{Rj-3h_eVGBF{pvfM{Vi5sIA$Kx|V0L8s0!(J|d+Dn_s^% zsHN+M1+hPF$23&E>M7=Q*TZq7pGU3O1q{JU7>hrlW?D4WSQ=IC#&%c*<8Wvy_rDO4 z95M>yGE~F&Q6t}sI%J1&2wq2Z_hY!&9mjn*BgYkI(zpGTeQ>(~hMGD>yS3}3@esKb03HL-gb zgh4~ir#-)qi0)-I)RK2Xjj#`D0EyTThoWY*3bmB`u?l{It?>`6gpXyIL+HiAqz9q~ zJPfr$Q!yNuqbBOxKtvyclc)h)!3ex%&7WzOuoS9c4b+l9hWg^Q#v<4c)qV(S;A5}= zzHZZg)a_Y>+S2VvJD+o&h(>r5HIRZ?=AOn_8>5!E2Uf+wsE%f#PX7|riflp6Xpi+g zMv=acnowl6S&>+4T@3vF--3u{&;>Qa7f>@8g6iN!o1TGM(#2RE*P;&NSEvpyU{U-P z)h=Y1nQ=50Bi$4=(e9{~OHsb=|3sTHAD<+>88wrj;pPP~sHJR%IvY=*2GRp{*gU9# z4?zuRENY7;pz2Mw<#SL2SdH3>edtr<0ukMU`>4GsKf>4&b$Syqa4XPFdX@DsYG&84 zIJ!of4ohM~(($O<^E|3N3DwVws1=((lKt1xuO&m*V;5?M2T=LPQG5L@YKAvZTXP@l zW5H48OV$FFPC>26V$_*fhkEZ8o4*saBA=jE=&MnzzcRifqXgbWby#4u8Avfy$8OXM zYoo5&qc-1zy1qkEE9J*BxE0mzG-~FTP#xYw^%FeC^jp?vBUMoajZhtRMXf*|jKe|L z0H1L~ z>P7WlHWgc=I_Q9lqM*RcrwJ2#2w zROcCI8iu2;l^gZq1{i~#PyQ&Z1j!36hIq8^*?eHk-3>2GaW*mos7u$3@)CzP#4akEUU=r#}IT|&Q38=F$ z4Yh*nu`-@S4e;(n*1sB&>aUrldm8m^?}xQrfrL zQHQNMYAai#&dM{$sdomV&cFm85$)OQ7=lw#Gn$Q^aRGM1>!^;Kuz{LsFI2t3s1Ao< zWgLU?xE!^_M^N|QdBdzkJ*-Hw2Wks_!-`C%@$>%R?3HU@I7om|IT?L8exf9 zW{G>FoAe}%#docrVt&%MFaqzP&O&&OS-Du$RyIYQm8UTbGg0-&VG*2xI)uy77e!V-2=16qMvq4!ZM@(a4L#2m9Fjj##nmr=K3J8Gr&peAq_0|P+4 z?>-j8(7CLC2_o*fW`>PW*P|1b#-UgWC!=P(0;6$17RQUI7u`jzMC3fvp&NC3YM|cN z0ku`>sQ$*I&fGj75iQwHY=EC&70k=s&Hphor#YVR^oFPwpG@k4ZD&?0lHW3d_OAvhM-qOM=< z#pc8H61F6L6xCt)5_7BSp$43cC3XL&647B;Webj3Z{r)}ms@HYtitl7KSiz3Pd2~Q zGV|qYfq@s}Ba~0I=>w>VT*qoyY&jnzY>9#2|J#UYFF(WPcnu@5+6r@RnpwM|^82Iq zG8=UpCZV=wfh~Uzb=`KO4)IBw{vIomzKt4C>6IK-ACbq2=#;j@P<#sYf$4`D*g%X% zAC|#|xXnetex!%5GWYp&)am{WwL;Ena|Wv7x;&g0)XL;r!#TpH=zEOF6e8?}a}@LA zC5*=#HeKvJGvjio4(g)LN;A}edf9XaYUYzr6Pky5?<%Z>dr-fmuA;UwYAyS(rL4Qw zT(fqlh91;Pq+uA2L|w<%FdUbn_A(dUcn)<sbFx zGQK6F9`;(#{^BI-b<`>D`aXYb;B?f?zr{Lu2enewbNLmHJ#Zs_jUV6)e#Bw>4aRiT zO3cK(xZOvj0Fk|@r9Wy5PTBmksHM7S4d(3{Kt)u$CfFR?pk6q^`UYyo(@-lh2eo1= zZTU&7?+g(w^*Pj5T*a#RH>yF^P3Hdh!U)pyQ7g3;i{p3r2;RZ&SbMW+{|c5M{T}AS z16UG|qPFUiNwfZ2_^gsq3diCu)C*f~HP>x8#*&_dn$cR+A>51_$UfA-{;=ht+e|vj z8fR^YTKe`jJrqOq`~MXpI+c@Ad$|Fh!mm&(QRhQb-WN5130Mo?!UnhlOXDq6{UY1V zRyM&%(yh>qy)YbyV>z6N`RU(TPDC?YgKBWXdJ%Px|3Ga;g&k%9ol#5K8;jr&)WBcH zV)zc~Z0ta7=^<48udTOH6A0hQ{a??Ap*a!F?B;H>q<2t0H!|e!<7F)P7@M)E+Lh z>4VnL1LlRDP#ulKintzC|CIHfHSVDKORLjC*1rrD#*(3q=V2V4#fIoQWJdfbRwg~s zx(;9uXWhGFVSZsZ(>~vHlp_IiuFF`B^~v# zxkjb13TZd$MNgtS@?m3KinYu$u0F5)m!sbS#Sp zQ4POGEp5Kz<`Y~MtC4PR)7hx<8K@Q6Y|}qtJn14QOveo|f^=UD!ZZxW3`zgaI3hYs z(@_l%S$|Rm(#21jnZ{!Q(k-k{qW1DB)XEG(t;i(nGV2cO7uH{_g+61|HL`dj6|fPO z$7ijha1`m;SQv|*GPj}vs@*e~2UAd6l8!p8!%zbsW1Wm@KM!>_R-?WrpPpj~0l zS0$3?bJL&(YCsK9r}+s~#YC)&qfjff26YXOU^?DL%_!*$^FANy(5BN^fv!NMccPYj zAGXBLupAcuCa^+2r#_L=Wb{FGkcIjljKT)E9qZ$7s6$%iocW8UqqPre0!gS9%ChM< zQSY6Lop2+Tz~J+IC9y2l(*55>M2F>P)QIn3b^IIKWAzKBgJIV37)t(h)Qjh1dAx=? zl%e06??fafk#2@ME6Y*uKZe@s&oG+)ovTE2N<+Uhe<;+o_ONDQU@I_+dMmLEZo^po z95u7MSP+YTZ??vbT7k|OhRLX{7=c=`*U+cPEFwDH%diH1j_M%qMRQ+cFqU*X)F(6r z151k)NN>bP@eJzrL|rliibc(|DXLv}>&vM3ue-$hD{_Pkz3?&?$Dkify0rBXYgg-F z)U|!prq^RBy$5^XCCrbFFPrx~julBihtc>lx^eMk)?bl5WW?ilSP4U~m=V@Rb<`P~ z;7C;Y26W@ss3pCRnt9k&^E)IObr_qX@_S+dOu`Txg4)uNJ|enaZ=m*Yfpw$x6I2J6 zthcTCu9^JesCMzzX4YOWYfJ+ zXCw&=<2WpcQ!xzZVP1R}tKfRnfX||~^oF(APiE_yqRJC7@c;iaoQMv~G}Me|qxNjA zb(i%xs@}IYeHG(K|AlQa=4bN-9cW#O8_53#)o#X3bA9KbR&E`((Ea~}h-Mc4i}{e0 zL*4VH7=~R@4f>&G{-X7D)Q4xL^#g27`XuJVuwTu4i=l2uMbvvAv*~Ua`0xJ*6VZ}q zpq6^HHOHEZWywE=QTU_P`OW-2P!#Ks-w`A6C9HwdP={v zW+shLOVt}S^M0tqn1sD9xy}0P z1^viSgJcZC(KhYFVx*^GQCx{t@k5*b0rg?Ii+Ydychf;t)E2b1=?7Su5dT1}MD06f%Q~Q&bU$o? zW3emxb`#M(jr_~l8})*DSP4JFWW0;rG3l;((H7K;G)?-#KS=~qzoH=tg46Ll8;Mr~F8zm4Tk z1E_~(uqlS((>9%ef&1?xqH8r9tKo7~!{ewW{Svje7cdyF;j{QNcEgU2D{uxDU^&uz zP#>i8sM~M}wE};l&Q4jEEASUqJB;&@F_wrLu0WQ=*=N0igI$iV6pz$;uGKYE z`Cr%pPuWIvyKcHq78tMxCNmdiRq(`92zp-goL08~R3_z_^Hfqb};&ohvY4}zlS+VSiiQG40i?2P!H6K_Cu}MNb54xfR3RC zd<*p@E$J&_W?CK9us!P6X@X5pur5R$$}OlfvIli2e?YC&O;o$E2xDzj2i>hnSe*1I ztb)@p8hzV{R3>uPW&}r?f>?Zn{MI%-3UwRiU=dtw)9+&!(p&IRED&WnXob2Rsn`a0 zq9%~Hs4)z~b^l8cQNv28>*B%En1x!xDX9Cq)#jhJ-n14f<_dhMDxunSu?|ADn}Ax0 z#WuYGwH3#)I{iDp6VcMg7B??whT8i+7>W~7dp;etWJfUwucMayChGeURl=-9G(JN* z9W{Z&)?27gw!5UsZ-n~)j&Kr)=(@~8eR2<5f3cP>WtRMLRCy2UXw=d##k%+_w!`?+ zX35iV66p^x0h^aGGhb@`2z|O%KM~RWjVf#IZ%5Rb7;n>StQW22%DJ2+l=nn+{0C|! zs+BkCPN;i77OUeX>-VU$5D{&@1HGfU|4)*!gp7E+juWt`+l+J$mL$Ckbr{c}mM}cV ze3&Ys{!VCU(`{|KmrZ+7f0Slh$Dw{_OtIMDrsS2i}@~FQL zYNAeY3)J5O?NI}N-Z}wYr1j|V4ayUU2F_P+3f2*Zk#!JXRhjl*Pb7)CWDX&|7MBsm z+Qzl;Heo8^wLoq2<6Y`hCg|}JCQ)9D;3wXSP)etir=6|y9$qEg)uu;d%#}cufB(qK z3px-w6ZQ}m`eT|#`O5LC9aMUipwG@DlvE|}8~ZA?-=-ft?J0|~U2nDJx#YzY^uGjH zO5To#+I?x`Gt`*!)en^wCq0f+>V)#b1PV?O_`|>%K*29+z@xuo^z@?4Wg9ob`h?ol z`+%|)#C1|$Mn8EKc;8v#Z<05GbU)&I@o9YURHM$nNXO-2m-3K!i;}TqG@{~5IQceVIui%^qO>I|iz8=k_) z2`eecAjFa9MSVlBpq^ReZ6N5GN#0#Tj4gW~^*{D{&lCqPQ>uR{3=+({Ti zy}&75Ph>k8eF^$=;x_Ka4mg!CpT;?)`9~c?H4&f3Rg^tP{B7c&qMl0lf^CyT{B`2TZJDXT zk`p;d;QQ~iz^5tSLwpQj3qj9K@?y3B*G$@(h#e{XP8FEdWb8@wSLCmXz@uM7>4Zfz zZi}<=!K3fx9h+W(eIF{@L)mJZ-i(j)z6*rm+W+4v{GH72Y=yj}`ECcEESuMf^kX(p z1^vihK$>49fu}U-e-ZnW;351(es#Mw7f6>S{xf-7srM=J8_VG@oPWMjPB#il5%jDi zq!RQe=vqRW%_r&{p-~aSJn~*6R3{7~J(QqlC+UNPfrLY(|0G}E)qRAI$Scf1KCpFf zs{dp%^&G;wwqP&13De1orNL?99};)ly80EQ=LuVXF;-BSP3t#J6z%HS`l{QIaE{eR{1ZmeaKiJHj&rhDsiK7=v?w3i=(o&%S6Gas8zisY0I0_$KYE z+42nX?h;-n?>KpVFqH5E;VVKH^7<1-5kG@z)MfsBU`U+93WQk{{)YK*10kADbV&D- zr)Q(V`JTLSly4+_P0&OhJkyB0^B{rasapx_*}R$9m(a`h@6@4jSHb`?3sO0Ucp<_% z()wks=K!HHVJV?3Wn)o~{%WX78~r`hnQ)mn|7dUq5}%HGJ|z4}n<|8gHg7z6f4f@n zlP8JLJrLsry-A&9u1A8nob#9g+NnUsyR`8BXzpeE}d#39;5 z;YT*3I1P?a;RNYu@~aTG5e}1Al8{cgPuU-Yb;R}DB192yNIg9R@G|BjoG1K2It6QB zF!hELKSTJEc;P%1`LYvPPvGC7|2+Ep^1(AJuut(1l|CqWmb@9XOvR^gKVb;*!L~wC zY)&|D+jb=W5_P5#vWc(3V_46YlXRBbcpUKx#Ct3A!D0W64E?J@&s(M-5bwv&>!ec% z@x;FmhYf+ID-ib2}Q}zCOm6j<{@5P zar$>YA+(^9o-Tyzff#@Kkr&LM;tBeXOx_?Awq>jF4_@-%X-&jM`eVXj`>rCid!76R zRa*>srL;YBk$utD}DnL zUt{YiD~$5bZF{B5KU6j?5NG|5QQ;DyGGPXpZLyXrV>qFVo&9d&dd6FSBK{)vlL(=K z5-u|F=PB<%dNJWN;a5Uq!cp=I@~%&be_-FCf08*92%E^bj^zk?<`Ak9A_yA@&yatE zIzM2dZA`XPh!?sE?QOevtY1;KnXvDnx)(`5Lb;c)l2Dl7>&%Z@1UVvnl%V8}b(64ZO>DSVSqhwvilQTPSw*-ZRfLIFC`6J!lhJHmUm-hJFc z`K#3Zg>aPkaW&xik@N-1XJd$I?{mJUpe30N2nz`X2~U%!l}V;zdD{_5=LBVy$oqnz zrw-v2@-C5{f){ZPPA2Gi+tyn{{M$edHw6!o|5>0+7u`Nb$#|TGg9)jG-$_4%od{3Z zIu&z!w%8e7!jqYt;Lc3W^12h!(~^=0WM_D?lGD?2BfCcCiT=O&POE{Qv;kgs)DOu)aDb&jL4DkAU^sVL}+&8pHb|(MR#@5~xFFh&l zAKmwC;s5Ni^K-A{3r$PUawnx{rzOVZ9!^LO3QZfv*lMJwrHst2Ghlk&pkdyO++8V4 zgQ7CLS=kwBHL}v(o{Rz6sou1#%-nuM&KJm=Jj|2j&22jBv!GgOiT%?@I6XW88FO-G zpl@=9c>_PpU^Bg0S;=VwGIJweS`}P2#haEuX>!1a8!-_7=5b~7cv5qZjGLXma;le+ zW@sq_uc_%grA2XT2A*M_>-W) z<8mtGF3*W~`Dedfs6?hWEs^bTCnjfj6SCZ?-pou+Ql@|R+m}OWV%D&+f9mYm7^hEq zwmZR-=GFmm+f|}7PfDPh%$m6yW)E^jd))m!34_&FTB18SmAC!J&iS8vwQNwG*i3)e z+>d;`P4lqt(oxN<`JfvWqrG?qX=yB8Qbu~}KgWjkG5rnXD5q7*azDJpxnt(laaBsq&dhSF*zIu- z^Q0sv>V{`|SW#~(r_=38Ow3?ubKjZ2(N*!k76lfGLzrO(^xVRvCYijihrKS9s{{^0 zaw_Ll_fID$b71=Lw&@wE|E0{oXJPmJjoft}ZCtO8zs#bTP!q4KWZOlvg6h_8=s&k8 z#?>I#wRl>Df6&3W-0AOsk;gy!O8NXPQ?k4no(zBTh9x17r=$kK`-R-J6ijStD8Fi)wlOwa=E!efsMz zg>vU!nHij)LT~@%ME|k<cFx|X?Io&CE{l`oW@ndQlF5AkGp+;KUJi@HV^=)&nt a90 zutW~W2?=tXs%4aQoHjKbrv3bruE_FTp;z z+Q!-Hn>a6OW+vhm+<{NIztg_~7ss9r9fxzArI-cpVjRB4{215Bae84RoPt|$B-UF&&0AF;5(Y8enb=!5H-L+MPHmda_cesjh>Xkv6D~$ygExqAs`)b)n@p zUWXZoH)C=97Iob_7=#Zn6F$Ny3~1^&1u;ug=0Ao?WfG;aJ?dRf#uB&?wI+_CPPl

9MH@R^jb6KUr!X#+*}|UHS%1jDbI)L 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 B&6EHD diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index 73b63476b0..b8780318ec 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -7,12 +7,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-16 19:42+0000\n" -"PO-Revision-Date: 2009-11-16 19:44:09+0000\n" +"POT-Creation-Date: 2009-11-18 19:31+0000\n" +"PO-Revision-Date: 2009-11-18 19:32:31+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(r59142); Translate extension (2009-11-13)\n" +"X-Generator: MediaWiki 1.16alpha(r59207); Translate extension (2009-11-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: out-statusnet\n" @@ -44,7 +44,7 @@ msgstr "Essa etiqueta não existe." #: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 #: lib/command.php:364 lib/command.php:411 lib/command.php:466 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 +#: lib/subs.php:34 lib/subs.php:116 msgid "No such user." msgstr "Usuário não encontrado." @@ -147,7 +147,8 @@ msgstr "Não foi possível atualizar o usuário." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 #: actions/apistatusesupdate.php:127 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: actions/designadminpanel.php:125 actions/newnotice.php:94 +#: lib/designsettings.php:283 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -235,12 +236,12 @@ msgstr "Todas as mensagens diretas enviadas para %s" #: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 #: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigrouplistall.php:120 actions/apigrouplist.php:132 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apigroupmembership.php:106 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/apitimelinegroup.php:147 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!" @@ -383,6 +384,13 @@ msgstr "Este apelido já está em uso. Tente outro." msgid "Alias can't be the same as nickname." msgstr "" +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#, fuzzy +msgid "Group not found!" +msgstr "O método da API não foi encontrado!" + #: actions/apigroupjoin.php:110 #, fuzzy msgid "You are already a member of that group." @@ -473,13 +481,13 @@ msgstr "%s / Favoritas de %s" msgid "%s updates favorited by %s / %s." msgstr "%s atualizações de favoritas por %s / %s." -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "Mensagens de %s" -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -567,7 +575,8 @@ msgstr "Original" msgid "Preview" msgstr "Visualização" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#: actions/avatarsettings.php:148 lib/deleteuserform.php:66 +#: lib/noticelist.php:522 msgid "Delete" msgstr "Excluir" @@ -579,7 +588,7 @@ msgstr "Enviar" msgid "Crop" msgstr "Cortar" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/avatarsettings.php:265 actions/disfavor.php:74 #: actions/emailsettings.php:237 actions/favor.php:75 #: actions/groupblock.php:66 actions/grouplogo.php:309 #: actions/groupunblock.php:66 actions/imsettings.php:206 @@ -589,7 +598,7 @@ msgstr "Cortar" #: actions/profilesettings.php:187 actions/recoverpassword.php:337 #: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 +#: actions/tagother.php:166 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 lib/designsettings.php:294 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -656,72 +665,51 @@ msgstr "" msgid "Unblock user from group" msgstr "Não foi possível desbloquear o usuário." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" msgstr "Desbloquear" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Desbloquear este usuário" -#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61 -#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87 -#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31 -#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "Você não está logado." +#: actions/block.php:69 +#, fuzzy +msgid "You already blocked that user." +msgstr "Você já bloqueou esse usuário." -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 -msgid "No profile specified." -msgstr "Não foi especificado nenhum perfil." - -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 -msgid "No profile with that ID." -msgstr "Não foi encontrado nenhum perfil com esse ID." - -#: actions/block.php:111 actions/block.php:134 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 msgid "Block user" msgstr "Bloquear usuário" -#: actions/block.php:136 +#: actions/block.php:130 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/block.php:149 actions/deletenotice.php:145 -#: actions/groupblock.php:178 +#: actions/block.php:143 actions/deletenotice.php:145 +#: actions/deleteuser.php:147 actions/groupblock.php:178 msgid "No" msgstr "Não" -#: actions/block.php:149 +#: actions/block.php:143 actions/deleteuser.php:147 #, fuzzy msgid "Do not block this user" msgstr "Desbloquear este usuário" -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:179 +#: actions/block.php:144 actions/deletenotice.php:146 +#: actions/deleteuser.php:148 actions/groupblock.php:179 msgid "Yes" msgstr "Sim" -#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 -#: lib/blockform.php:153 +#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Bloquear usuário" -#: actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Você já bloqueou esse usuário." - -#: actions/block.php:170 +#: actions/block.php:162 msgid "Failed to save block information." msgstr "Não foi possível salvar a informação de bloqueio." @@ -786,6 +774,15 @@ msgstr "Mensagens" msgid "No such notice." msgstr "Essa mensagem não existe." +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 +#: actions/unsubscribe.php:52 lib/adminpanelaction.php:72 +#: lib/profileformaction.php:63 lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Você não está logado." + #: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Não é possível excluir esta mensagem." @@ -822,6 +819,146 @@ 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/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "Não foi possível atualizar o usuário." + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "Você não pode apagar o status de outro usuário." + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +#, fuzzy +msgid "Delete user" +msgstr "Excluir" + +#: actions/deleteuser.php:135 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "Excluir esta mensagem" + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/adminpanelaction.php:275 lib/groupnav.php:119 +msgid "Design" +msgstr "" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "" + +#: actions/designadminpanel.php:220 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "Não foi possível salvar suas configurações do Twitter!" + +#: actions/designadminpanel.php:301 +#, fuzzy, php-format +msgid "Theme not available: %s" +msgstr "Esta página não está disponível em um " + +#: actions/designadminpanel.php:406 +#, fuzzy +msgid "Change theme" +msgstr "Alterar" + +#: actions/designadminpanel.php:410 +msgid "Theme" +msgstr "" + +#: actions/designadminpanel.php:411 +#, fuzzy +msgid "Theme for the site." +msgstr "Sair deste site" + +#: actions/designadminpanel.php:420 lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: actions/designadminpanel.php:424 actions/designadminpanel.php:498 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: actions/designadminpanel.php:429 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "Você pode enviar seu avatar pessoal." + +#: actions/designadminpanel.php:459 lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: actions/designadminpanel.php:475 lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: actions/designadminpanel.php:476 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: actions/designadminpanel.php:481 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: actions/designadminpanel.php:490 lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Altere a sua senha" + +#: actions/designadminpanel.php:511 lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Conectar" + +#: actions/designadminpanel.php:524 lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Procurar" + +#: actions/designadminpanel.php:537 lib/designsettings.php:217 +msgid "Text" +msgstr "Texto" + +#: actions/designadminpanel.php:550 lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Lista" + +#: actions/designadminpanel.php:611 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: actions/designadminpanel.php:612 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: actions/designadminpanel.php:618 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: actions/designadminpanel.php:620 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/siteadminpanel.php:371 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 actions/useradminpanel.php:226 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Salvar" + +#: actions/designadminpanel.php:621 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "Essa mensagem não é uma favorita!" @@ -967,14 +1104,6 @@ msgstr "Eu quero publicar mensagens por e-mail." msgid "Publish a MicroID for my email address." msgstr "Publique um MicroID para meu endereço de e-mail." -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Salvar" - #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." @@ -988,7 +1117,7 @@ msgstr "Nenhum endereço de e-mail." msgid "Cannot normalize that email address" msgstr "Não foi possível normalizar este endereço de e-mail" -#: actions/emailsettings.php:330 +#: actions/emailsettings.php:330 actions/siteadminpanel.php:156 msgid "Not a valid email address" msgstr "Não é um endereço de e-mail válido" @@ -1192,6 +1321,18 @@ msgstr "Essa mensagem não existe." msgid "Cannot read file." msgstr "Nosso arquivo foi perdido." +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +msgid "No profile specified." +msgstr "Não foi especificado nenhum perfil." + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: lib/profileformaction.php:77 +msgid "No profile with that ID." +msgstr "Não foi encontrado nenhum perfil com esse ID." + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 #, fuzzy @@ -1316,11 +1457,11 @@ msgstr "" msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:439 lib/groupnav.php:107 msgid "Admin" msgstr "Admin" -#: actions/groupmembers.php:346 lib/blockform.php:153 +#: actions/groupmembers.php:346 lib/blockform.php:69 msgid "Block" msgstr "Bloquear" @@ -1412,7 +1553,7 @@ msgstr "" msgid "User is not blocked from group." msgstr "O usuário bloqueou você." -#: actions/groupunblock.php:128 actions/unblock.php:108 +#: actions/groupunblock.php:128 actions/unblock.php:77 msgid "Error removing the block." msgstr "Erro na remoção do bloqueio." @@ -1731,7 +1872,7 @@ msgstr "Nome de usuário e/ou senha incorreto(s)." msgid "Error setting user." msgstr "Erro na configuração do usuário." -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: actions/login.php:204 actions/login.php:257 lib/action.php:457 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Logar" @@ -2166,7 +2307,7 @@ msgstr "" "Suas etiquetas (letras, números, -, ., e _), separadas por vírgulas ou " "espaços" -#: actions/profilesettings.php:144 +#: actions/profilesettings.php:144 actions/siteadminpanel.php:275 msgid "Language" msgstr "Idioma" @@ -2192,7 +2333,7 @@ msgstr "Assinar automaticamente à quem me assinar" msgid "Bio is too long (max %d chars)." msgstr "Descrição muito extensa (máximo 140 caracteres)." -#: actions/profilesettings.php:228 +#: actions/profilesettings.php:228 actions/siteadminpanel.php:163 msgid "Timezone not selected." msgstr "O fuso horário não foi selecionado." @@ -2217,7 +2358,7 @@ msgstr "Não foi possível salvar o perfil." msgid "Couldn't save tags." msgstr "Não foi possível salvar as etiquetas." -#: actions/profilesettings.php:344 +#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 msgid "Settings saved." msgstr "As configurações foram salvas." @@ -2459,7 +2600,7 @@ msgstr "Erro com o código de confirmação." msgid "Registration successful" msgstr "Registro realizado com sucesso" -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: actions/register.php:114 actions/register.php:502 lib/action.php:454 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrar" @@ -2504,7 +2645,7 @@ msgid "Same as password above. Required." msgstr "Igual à senha acima. Obrigatório." #: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:253 lib/accountsettingsaction.php:120 msgid "Email" msgstr "E-mail" @@ -2612,7 +2753,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL do seu perfil em outro serviço de microblogagem compatível" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 +#: lib/userprofile.php:356 msgid "Subscribe" msgstr "Assinar" @@ -2688,6 +2829,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Mensagem para %1$s no %2$s" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "Você não pode enviar uma mensagem para esse usuário." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "O usuário bloqueou você." + #: actions/showfavorites.php:79 #, fuzzy, php-format msgid "%s's favorite notices, page %d" @@ -2938,6 +3089,145 @@ msgstr "" "Este é %%site.name%%, um serviço de [micro-blogging](http://pt.wikipedia.org/" "wiki/Microblogging)" +#: actions/silence.php:65 actions/unsilence.php:65 +#, fuzzy +msgid "You cannot silence users on this site." +msgstr "Você não pode enviar uma mensagem para esse usuário." + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "O usuário bloqueou você." + +#: actions/siteadminpanel.php:58 lib/adminpanelaction.php:272 +#, fuzzy +msgid "Site" +msgstr "Convidar" + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site." +msgstr "" + +#: actions/siteadminpanel.php:145 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:153 +#, fuzzy +msgid "You must have a valid contact email address" +msgstr "Não é um endereço de e-mail válido" + +#: actions/siteadminpanel.php:171 +#, php-format +msgid "Unknown language \"%s\"" +msgstr "" + +#: actions/siteadminpanel.php:178 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/siteadminpanel.php:184 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/siteadminpanel.php:190 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/siteadminpanel.php:241 +#, fuzzy +msgid "Site name" +msgstr "Nova mensagem" + +#: actions/siteadminpanel.php:242 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:246 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:249 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:250 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:254 +#, fuzzy +msgid "contact email address for your site" +msgstr "Novo endereço de e-mail para postar para %s" + +#: actions/siteadminpanel.php:268 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:269 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:276 +#, fuzzy +msgid "Default site language" +msgstr "Idioma preferencial" + +#: actions/siteadminpanel.php:282 +#, fuzzy +msgid "Private" +msgstr "Privacidade" + +#: actions/siteadminpanel.php:284 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/siteadminpanel.php:290 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/siteadminpanel.php:291 +msgid "In a scheduled job" +msgstr "" + +#: actions/siteadminpanel.php:292 +#, fuzzy +msgid "Never" +msgstr "Recuperar" + +#: actions/siteadminpanel.php:294 +msgid "Data snapshots" +msgstr "" + +#: actions/siteadminpanel.php:295 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/siteadminpanel.php:301 +msgid "Frequency" +msgstr "" + +#: actions/siteadminpanel.php:302 +msgid "Snapshots will be sent once every N Web hits" +msgstr "" + +#: actions/siteadminpanel.php:309 +msgid "Report URL" +msgstr "" + +#: actions/siteadminpanel.php:310 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/siteadminpanel.php:371 actions/useradminpanel.php:226 +#, fuzzy +msgid "Save site settings" +msgstr "Configurações do avatar" + #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "Configuração de SMS" @@ -3214,6 +3504,21 @@ msgstr "Essa etiqueta não existe." msgid "API method under construction." msgstr "O método da API está em construção." +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "Você já bloqueou esse usuário." + +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "O usuário bloqueou você." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "O usuário não tem perfil." + #: actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "Nenhuma ID de perfil na requisição." @@ -3231,6 +3536,32 @@ msgstr "Cancelado" msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" +#: actions/useradminpanel.php:58 lib/personalgroupnav.php:115 +msgid "User" +msgstr "Usuário" + +#: actions/useradminpanel.php:69 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:171 +#, fuzzy +msgid "Closed" +msgstr "Bloquear" + +#: actions/useradminpanel.php:173 +msgid "Is registration on this site prohibited?" +msgstr "" + +#: actions/useradminpanel.php:178 +#, fuzzy +msgid "Invite-only" +msgstr "Convidar" + +#: actions/useradminpanel.php:180 +msgid "Is registration on this site only open to invited users?" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Autorizar a assinatura" @@ -3393,11 +3724,16 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: classes/Message.php:55 +#: classes/Message.php:45 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "Ocorreu um erro durante o envio da mensagem direta." + +#: classes/Message.php:61 msgid "Could not insert message." msgstr "Não foi possível inserir a mensagem." -#: classes/Message.php:65 +#: classes/Message.php:71 msgid "Could not update message with new URI." msgstr "Não foi possível atualizar a mensagem com a nova URI." @@ -3431,15 +3767,15 @@ msgstr "" "Muitas mensagens em um período curto de tempo; dê uma respirada e publique " "novamente daqui a alguns minutos." -#: classes/Notice.php:202 +#: classes/Notice.php:200 msgid "You are banned from posting notices on this site." msgstr "Você foi banido de publicar mensagens nesse site." -#: classes/Notice.php:268 classes/Notice.php:293 +#: classes/Notice.php:265 classes/Notice.php:290 msgid "Problem saving notice." msgstr "Problema ao salvar a mensagem." -#: classes/Notice.php:1120 +#: classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Erro no banco de dados na inserção da reposta: %s" @@ -3469,10 +3805,6 @@ msgstr "Altere a sua senha" msgid "Change email handling" msgstr "Configurações de uso do e-mail" -#: lib/accountsettingsaction.php:124 lib/groupnav.php:119 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:124 #, fuzzy msgid "Design your profile" @@ -3524,100 +3856,105 @@ msgstr "Conectar" msgid "Connect to services" msgstr "Não foi possível redirecionar para o servidor: %s" -#: lib/action.php:439 lib/subgroupnav.php:105 +#: lib/action.php:439 +#, fuzzy +msgid "Change site configuration" +msgstr "Navegação primária no site" + +#: lib/action.php:443 lib/subgroupnav.php:105 msgid "Invite" msgstr "Convidar" -#: lib/action.php:440 lib/subgroupnav.php:106 +#: lib/action.php:444 lib/subgroupnav.php:106 #, 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/action.php:445 +#: lib/action.php:449 msgid "Logout" msgstr "Sair" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout from the site" msgstr "Sair deste site" -#: lib/action.php:450 +#: lib/action.php:454 msgid "Create an account" msgstr "Criar uma nova conta" -#: lib/action.php:453 +#: lib/action.php:457 msgid "Login to the site" msgstr "Entrar" -#: lib/action.php:456 lib/action.php:719 +#: lib/action.php:460 lib/action.php:723 msgid "Help" msgstr "Ajuda" -#: lib/action.php:456 +#: lib/action.php:460 msgid "Help me!" msgstr "Ajuda" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search" msgstr "Procurar" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search for people or text" msgstr "Pesquisar por pessoa ou texto" -#: lib/action.php:480 +#: lib/action.php:484 #, fuzzy msgid "Site notice" msgstr "Nova mensagem" -#: lib/action.php:546 +#: lib/action.php:550 msgid "Local views" msgstr "" -#: lib/action.php:612 +#: lib/action.php:616 #, fuzzy msgid "Page notice" msgstr "Nova mensagem" -#: lib/action.php:714 +#: lib/action.php:718 #, fuzzy msgid "Secondary site navigation" msgstr "Navegação pelas assinaturas" -#: lib/action.php:721 +#: lib/action.php:725 msgid "About" msgstr "Sobre" -#: lib/action.php:723 +#: lib/action.php:727 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:727 +#: lib/action.php:731 msgid "TOS" msgstr "" -#: lib/action.php:730 +#: lib/action.php:734 msgid "Privacy" msgstr "Privacidade" -#: lib/action.php:732 +#: lib/action.php:736 msgid "Source" msgstr "Fonte" -#: lib/action.php:734 +#: lib/action.php:738 msgid "Contact" msgstr "Contato" -#: lib/action.php:736 +#: lib/action.php:740 #, fuzzy msgid "Badge" msgstr "Chamar a atenção" -#: lib/action.php:764 +#: lib/action.php:768 msgid "StatusNet software license" msgstr "" -#: lib/action.php:767 +#: lib/action.php:771 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3626,12 +3963,12 @@ msgstr "" "**%%site.name%%** é um serviço de microblogagem disponibilizado por [%%site." "broughtby%%](%%site.broughtbyurl%%). " -#: lib/action.php:769 +#: lib/action.php:773 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** é um serviço de microblogagem. " -#: lib/action.php:771 +#: lib/action.php:775 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3642,37 +3979,62 @@ msgstr "" "net/), versão %s, disponível sob a [GNU Affero General Public License] " "(http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:785 +#: lib/action.php:789 #, fuzzy msgid "Site content license" msgstr "Procure no conteúdo das mensagens" -#: lib/action.php:794 +#: lib/action.php:798 #, fuzzy msgid "All " msgstr "Todas" -#: lib/action.php:799 +#: lib/action.php:803 msgid "license." msgstr "licença" -#: lib/action.php:1052 +#: lib/action.php:1067 msgid "Pagination" msgstr "Paginação" -#: lib/action.php:1061 +#: lib/action.php:1076 msgid "After" msgstr "Próximo" -#: lib/action.php:1069 +#: lib/action.php:1084 msgid "Before" msgstr "Anterior" -#: lib/action.php:1117 +#: lib/action.php:1132 msgid "There was a problem with your session token." msgstr "" "Ocorreu um problema com o seu token de sessão. Tente novamente, por favor." +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "Você não pode enviar uma mensagem para esse usuário." + +#: lib/adminpanelaction.php:195 +#, fuzzy +msgid "showForm() not implemented." +msgstr "O comando não foi implementado ainda." + +#: lib/adminpanelaction.php:224 +#, fuzzy +msgid "saveSettings() not implemented." +msgstr "O comando não foi implementado ainda." + +#: lib/adminpanelaction.php:273 +#, fuzzy +msgid "Basic site configuration" +msgstr "Confirmação do endereço de e-mail" + +#: lib/adminpanelaction.php:276 +#, fuzzy +msgid "Design configuration" +msgstr "Confirmação de SMS" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -3851,30 +4213,36 @@ msgstr "Você não está assinando esse perfil." #: lib/command.php:620 #, fuzzy -msgid "You are subscribed to these people: " -msgstr "Você não está assinando esse perfil." +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "Você não está assinando esse perfil." +msgstr[1] "Você não está assinando esse perfil." -#: lib/command.php:637 +#: lib/command.php:640 #, fuzzy msgid "No one is subscribed to you." msgstr "Não foi possível fazer com que o outros o sigam." -#: lib/command.php:639 +#: lib/command.php:642 #, fuzzy -msgid "These people are subscribed to you: " -msgstr "Assinantes de %s" +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "Não foi possível fazer com que o outros o sigam." +msgstr[1] "Não foi possível fazer com que o outros o sigam." -#: lib/command.php:656 +#: lib/command.php:662 #, fuzzy msgid "You are not a member of any groups." msgstr "Você não está assinando esse perfil." -#: lib/command.php:658 +#: lib/command.php:664 #, fuzzy -msgid "You are a member of these groups: " -msgstr "Você não está assinando esse perfil." +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "Você não está assinando esse perfil." +msgstr[1] "Você não está assinando esse perfil." -#: lib/command.php:670 +#: lib/command.php:678 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -3913,20 +4281,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:192 +#: lib/common.php:203 #, fuzzy msgid "No configuration file found. " msgstr "Nenhum código de confirmação." -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:195 +#: lib/common.php:206 #, fuzzy msgid "Go to the installer." msgstr "Entrar" @@ -3947,10 +4315,6 @@ msgstr "Atualizações via SMS" msgid "Database error" msgstr "" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" @@ -3961,66 +4325,6 @@ 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:217 -msgid "Text" -msgstr "Texto" - -#: 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:372 msgid "Bad default color settings: " msgstr "" @@ -4250,12 +4554,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:235 +#: lib/mail.php:236 #, 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." -#: lib/mail.php:240 +#: lib/mail.php:241 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4276,17 +4580,17 @@ msgstr "" "Cordialmente,\n" "%4$s.\n" -#: lib/mail.php:253 +#: lib/mail.php:254 #, php-format msgid "Location: %s\n" msgstr "Localização: %s\n" -#: lib/mail.php:255 +#: lib/mail.php:256 #, php-format msgid "Homepage: %s\n" msgstr "Site: %s\n" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" @@ -4295,12 +4599,12 @@ msgstr "" "Descrição: %s\n" "\n" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "Novo endereço de e-mail para postar para %s" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4321,21 +4625,21 @@ msgstr "" "Atenciosamente,\n" "%4$s" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "Status de %s" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "Confirmação de SMS" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "Você teve a atenção chamada por %s" -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4351,12 +4655,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "Nova mensagem particular de %s" -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4375,12 +4679,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:554 +#: lib/mail.php:559 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s marcaram sua mensagem como favorita" -#: lib/mail.php:556 +#: lib/mail.php:561 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4401,12 +4705,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4545,7 +4849,12 @@ msgstr "Erro na inserção do perfil remoto" msgid "Duplicate notice" msgstr "Excluir a mensagem" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Esse usuário bloqueou o seu pedido de assinatura." + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Não foi possível inserir a nova assinatura." @@ -4561,10 +4870,6 @@ msgstr "Respostas" msgid "Favorites" msgstr "Favoritas" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Usuário" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Recebidas" @@ -4616,6 +4921,15 @@ msgstr "Membro desde" msgid "All groups" msgstr "" +#: lib/profileformaction.php:123 +#, fuzzy +msgid "No return-to arguments" +msgstr "Nenhum argumento de ID." + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "Público" @@ -4636,6 +4950,16 @@ msgstr "Destacada" msgid "Popular" msgstr "Popular" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "Recebidas" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Desbloquear este usuário" + #: lib/searchaction.php:120 #, fuzzy msgid "Search site" @@ -4674,6 +4998,16 @@ msgstr "Seção sem título" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Nova mensagem" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Bloquear usuário" + #: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" @@ -4703,28 +5037,28 @@ msgstr "" msgid "(none)" msgstr "(nenhum)" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "" -#: lib/subs.php:52 +#: lib/subs.php:56 msgid "User has blocked you." msgstr "O usuário bloqueou você." -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "Não foi possível assinar." -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "Não foi possível fazer com que o outros o sigam." -#: lib/subs.php:124 +#: lib/subs.php:128 #, fuzzy msgid "Not subscribed!" msgstr "Não é seguido!" -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "Não foi possível excluir a assinatura." @@ -4736,6 +5070,29 @@ msgstr "Nenhuma" msgid "Top posters" msgstr "Quem mais publica" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "Desbloquear este usuário" + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Desbloquear este usuário" + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Desbloquear este usuário" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Cancelar a assinatura deste usuário" @@ -4842,3 +5199,7 @@ msgstr "Desculpe-me, mas este não é seu endereço de e-mail para recebimento." #: scripts/maildaemon.php:61 msgid "Sorry, no incoming email allowed." msgstr "Desculpe-me, mas não é permitido o recebimento de emails." + +#, fuzzy +#~ msgid "These people are subscribed to you: " +#~ msgstr "Assinantes de %s" diff --git a/locale/ru/LC_MESSAGES/statusnet.mo b/locale/ru/LC_MESSAGES/statusnet.mo index 13d14c0f9ef9e8125ada0d217f6cd9eca75bb88c..978cb29f4137c222855df4972de9017cb92fe299 100644 GIT binary patch delta 22412 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\n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" #: actions/all.php:63 actions/public.php:97 actions/replies.php:92 #: actions/showfavorites.php:137 actions/tag.php:51 @@ -42,7 +43,7 @@ msgstr "" #: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 #: lib/command.php:364 lib/command.php:411 lib/command.php:466 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 +#: lib/subs.php:34 lib/subs.php:116 msgid "No such user." msgstr "" @@ -142,7 +143,8 @@ msgstr "" #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 #: actions/apistatusesupdate.php:127 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: actions/designadminpanel.php:125 actions/newnotice.php:94 +#: lib/designsettings.php:283 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -225,12 +227,12 @@ msgstr "" #: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 #: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigrouplistall.php:120 actions/apigrouplist.php:132 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apigroupmembership.php:106 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/apitimelinegroup.php:147 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!" @@ -363,6 +365,12 @@ msgstr "" msgid "Alias can't be the same as nickname." msgstr "" +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +msgid "Group not found!" +msgstr "" + #: actions/apigroupjoin.php:110 msgid "You are already a member of that group." msgstr "" @@ -450,13 +458,13 @@ msgstr "" msgid "%s updates favorited by %s / %s." msgstr "" -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -543,7 +551,8 @@ msgstr "" msgid "Preview" msgstr "" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#: actions/avatarsettings.php:148 lib/deleteuserform.php:66 +#: lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -555,7 +564,7 @@ msgstr "" msgid "Crop" msgstr "" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/avatarsettings.php:265 actions/disfavor.php:74 #: actions/emailsettings.php:237 actions/favor.php:75 #: actions/groupblock.php:66 actions/grouplogo.php:309 #: actions/groupunblock.php:66 actions/imsettings.php:206 @@ -565,7 +574,7 @@ msgstr "" #: actions/profilesettings.php:187 actions/recoverpassword.php:337 #: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 +#: actions/tagother.php:166 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 lib/designsettings.php:294 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -629,70 +638,48 @@ msgstr "" msgid "Unblock user from group" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "" -#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61 -#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87 -#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31 -#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." +#: actions/block.php:69 +msgid "You already blocked that user." msgstr "" -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 -msgid "No profile specified." -msgstr "" - -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 -msgid "No profile with that ID." -msgstr "" - -#: actions/block.php:111 actions/block.php:134 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 msgid "Block user" msgstr "" -#: actions/block.php:136 +#: actions/block.php:130 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/block.php:149 actions/deletenotice.php:145 -#: actions/groupblock.php:178 +#: actions/block.php:143 actions/deletenotice.php:145 +#: actions/deleteuser.php:147 actions/groupblock.php:178 msgid "No" msgstr "" -#: actions/block.php:149 +#: actions/block.php:143 actions/deleteuser.php:147 msgid "Do not block this user" msgstr "" -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:179 +#: actions/block.php:144 actions/deletenotice.php:146 +#: actions/deleteuser.php:148 actions/groupblock.php:179 msgid "Yes" msgstr "" -#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 -#: lib/blockform.php:153 +#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 msgid "Block this user" msgstr "" -#: actions/block.php:165 -msgid "You have already blocked this user." -msgstr "" - -#: actions/block.php:170 +#: actions/block.php:162 msgid "Failed to save block information." msgstr "" @@ -756,6 +743,15 @@ msgstr "" msgid "No such notice." msgstr "" +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 +#: actions/unsubscribe.php:52 lib/adminpanelaction.php:72 +#: lib/profileformaction.php:63 lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "" + #: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "" @@ -786,6 +782,135 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "" +#: actions/deleteuser.php:67 +msgid "You cannot delete users." +msgstr "" + +#: actions/deleteuser.php:74 +msgid "You can only delete local users." +msgstr "" + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +msgid "Delete user" +msgstr "" + +#: actions/deleteuser.php:135 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +msgid "Delete this user" +msgstr "" + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/adminpanelaction.php:275 lib/groupnav.php:119 +msgid "Design" +msgstr "" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "" + +#: actions/designadminpanel.php:220 +msgid "Unable to delete design setting." +msgstr "" + +#: actions/designadminpanel.php:301 +#, php-format +msgid "Theme not available: %s" +msgstr "" + +#: actions/designadminpanel.php:406 +msgid "Change theme" +msgstr "" + +#: actions/designadminpanel.php:410 +msgid "Theme" +msgstr "" + +#: actions/designadminpanel.php:411 +msgid "Theme for the site." +msgstr "" + +#: actions/designadminpanel.php:420 lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: actions/designadminpanel.php:424 actions/designadminpanel.php:498 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: actions/designadminpanel.php:429 +#, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "" + +#: actions/designadminpanel.php:459 lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: actions/designadminpanel.php:475 lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: actions/designadminpanel.php:476 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: actions/designadminpanel.php:481 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: actions/designadminpanel.php:490 lib/designsettings.php:170 +msgid "Change colours" +msgstr "" + +#: actions/designadminpanel.php:511 lib/designsettings.php:191 +msgid "Content" +msgstr "" + +#: actions/designadminpanel.php:524 lib/designsettings.php:204 +msgid "Sidebar" +msgstr "" + +#: actions/designadminpanel.php:537 lib/designsettings.php:217 +msgid "Text" +msgstr "" + +#: actions/designadminpanel.php:550 lib/designsettings.php:230 +msgid "Links" +msgstr "" + +#: actions/designadminpanel.php:611 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: actions/designadminpanel.php:612 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: actions/designadminpanel.php:618 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: actions/designadminpanel.php:620 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/siteadminpanel.php:371 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 actions/useradminpanel.php:226 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "" + +#: actions/designadminpanel.php:621 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "" @@ -926,14 +1051,6 @@ msgstr "" msgid "Publish a MicroID for my email address." msgstr "" -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "" - #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." @@ -947,7 +1064,7 @@ msgstr "" msgid "Cannot normalize that email address" msgstr "" -#: actions/emailsettings.php:330 +#: actions/emailsettings.php:330 actions/siteadminpanel.php:156 msgid "Not a valid email address" msgstr "" @@ -1137,6 +1254,18 @@ msgstr "" msgid "Cannot read file." msgstr "" +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +msgid "No profile specified." +msgstr "" + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: lib/profileformaction.php:77 +msgid "No profile with that ID." +msgstr "" + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 msgid "No group specified." @@ -1247,11 +1376,11 @@ msgstr "" msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:439 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:346 lib/blockform.php:153 +#: actions/groupmembers.php:346 lib/blockform.php:69 msgid "Block" msgstr "" @@ -1334,7 +1463,7 @@ msgstr "" msgid "User is not blocked from group." msgstr "" -#: actions/groupunblock.php:128 actions/unblock.php:108 +#: actions/groupunblock.php:128 actions/unblock.php:77 msgid "Error removing the block." msgstr "" @@ -1600,7 +1729,7 @@ msgstr "" msgid "Error setting user." msgstr "" -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: actions/login.php:204 actions/login.php:257 lib/action.php:457 #: lib/logingroupnav.php:79 msgid "Login" msgstr "" @@ -2006,7 +2135,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:144 +#: actions/profilesettings.php:144 actions/siteadminpanel.php:275 msgid "Language" msgstr "" @@ -2032,7 +2161,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "" -#: actions/profilesettings.php:228 +#: actions/profilesettings.php:228 actions/siteadminpanel.php:163 msgid "Timezone not selected." msgstr "" @@ -2057,7 +2186,7 @@ msgstr "" msgid "Couldn't save tags." msgstr "" -#: actions/profilesettings.php:344 +#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 msgid "Settings saved." msgstr "" @@ -2286,7 +2415,7 @@ msgstr "" msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: actions/register.php:114 actions/register.php:502 lib/action.php:454 #: lib/logingroupnav.php:85 msgid "Register" msgstr "" @@ -2330,7 +2459,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:253 lib/accountsettingsaction.php:120 msgid "Email" msgstr "" @@ -2414,7 +2543,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 +#: lib/userprofile.php:356 msgid "Subscribe" msgstr "" @@ -2487,6 +2616,14 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +msgid "You cannot sandbox users on this site." +msgstr "" + +#: actions/sandbox.php:72 +msgid "User is already sandboxed." +msgstr "" + #: actions/showfavorites.php:79 #, php-format msgid "%s's favorite notices, page %d" @@ -2725,6 +2862,135 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" +#: actions/silence.php:65 actions/unsilence.php:65 +msgid "You cannot silence users on this site." +msgstr "" + +#: actions/silence.php:72 +msgid "User is already silenced." +msgstr "" + +#: actions/siteadminpanel.php:58 lib/adminpanelaction.php:272 +msgid "Site" +msgstr "" + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site." +msgstr "" + +#: actions/siteadminpanel.php:145 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:153 +msgid "You must have a valid contact email address" +msgstr "" + +#: actions/siteadminpanel.php:171 +#, php-format +msgid "Unknown language \"%s\"" +msgstr "" + +#: actions/siteadminpanel.php:178 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/siteadminpanel.php:184 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/siteadminpanel.php:190 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/siteadminpanel.php:241 +msgid "Site name" +msgstr "" + +#: actions/siteadminpanel.php:242 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:246 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:249 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:250 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:254 +msgid "contact email address for your site" +msgstr "" + +#: actions/siteadminpanel.php:268 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:269 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:276 +msgid "Default site language" +msgstr "" + +#: actions/siteadminpanel.php:282 +msgid "Private" +msgstr "" + +#: actions/siteadminpanel.php:284 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/siteadminpanel.php:290 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/siteadminpanel.php:291 +msgid "In a scheduled job" +msgstr "" + +#: actions/siteadminpanel.php:292 +msgid "Never" +msgstr "" + +#: actions/siteadminpanel.php:294 +msgid "Data snapshots" +msgstr "" + +#: actions/siteadminpanel.php:295 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/siteadminpanel.php:301 +msgid "Frequency" +msgstr "" + +#: actions/siteadminpanel.php:302 +msgid "Snapshots will be sent once every N Web hits" +msgstr "" + +#: actions/siteadminpanel.php:309 +msgid "Report URL" +msgstr "" + +#: actions/siteadminpanel.php:310 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/siteadminpanel.php:371 actions/useradminpanel.php:226 +msgid "Save site settings" +msgstr "" + #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "" @@ -2984,6 +3250,18 @@ msgstr "" msgid "API method under construction." msgstr "" +#: actions/unblock.php:59 +msgid "You haven't blocked that user." +msgstr "" + +#: actions/unsandbox.php:72 +msgid "User is not sandboxed." +msgstr "" + +#: actions/unsilence.php:72 +msgid "User is not silenced." +msgstr "" + #: actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "" @@ -3001,6 +3279,30 @@ msgstr "" msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" +#: actions/useradminpanel.php:58 lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + +#: actions/useradminpanel.php:69 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:171 +msgid "Closed" +msgstr "" + +#: actions/useradminpanel.php:173 +msgid "Is registration on this site prohibited?" +msgstr "" + +#: actions/useradminpanel.php:178 +msgid "Invite-only" +msgstr "" + +#: actions/useradminpanel.php:180 +msgid "Is registration on this site only open to invited users?" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "" @@ -3148,11 +3450,15 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: classes/Message.php:55 +#: classes/Message.php:45 +msgid "You are banned from sending direct messages." +msgstr "" + +#: classes/Message.php:61 msgid "Could not insert message." msgstr "" -#: classes/Message.php:65 +#: classes/Message.php:71 msgid "Could not update message with new URI." msgstr "" @@ -3180,15 +3486,15 @@ msgid "" "few minutes." msgstr "" -#: classes/Notice.php:202 +#: classes/Notice.php:200 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:268 classes/Notice.php:293 +#: classes/Notice.php:265 classes/Notice.php:290 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:1120 +#: classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "" @@ -3218,10 +3524,6 @@ msgstr "" msgid "Change email handling" msgstr "" -#: lib/accountsettingsaction.php:124 lib/groupnav.php:119 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:124 msgid "Design your profile" msgstr "" @@ -3271,108 +3573,112 @@ msgstr "" msgid "Connect to services" msgstr "" -#: lib/action.php:439 lib/subgroupnav.php:105 +#: lib/action.php:439 +msgid "Change site configuration" +msgstr "" + +#: lib/action.php:443 lib/subgroupnav.php:105 msgid "Invite" msgstr "" -#: lib/action.php:440 lib/subgroupnav.php:106 +#: lib/action.php:444 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout" msgstr "" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout from the site" msgstr "" -#: lib/action.php:450 +#: lib/action.php:454 msgid "Create an account" msgstr "" -#: lib/action.php:453 +#: lib/action.php:457 msgid "Login to the site" msgstr "" -#: lib/action.php:456 lib/action.php:719 +#: lib/action.php:460 lib/action.php:723 msgid "Help" msgstr "" -#: lib/action.php:456 +#: lib/action.php:460 msgid "Help me!" msgstr "" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search" msgstr "" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search for people or text" msgstr "" -#: lib/action.php:480 +#: lib/action.php:484 msgid "Site notice" msgstr "" -#: lib/action.php:546 +#: lib/action.php:550 msgid "Local views" msgstr "" -#: lib/action.php:612 +#: lib/action.php:616 msgid "Page notice" msgstr "" -#: lib/action.php:714 +#: lib/action.php:718 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:721 +#: lib/action.php:725 msgid "About" msgstr "" -#: lib/action.php:723 +#: lib/action.php:727 msgid "FAQ" msgstr "" -#: lib/action.php:727 +#: lib/action.php:731 msgid "TOS" msgstr "" -#: lib/action.php:730 +#: lib/action.php:734 msgid "Privacy" msgstr "" -#: lib/action.php:732 +#: lib/action.php:736 msgid "Source" msgstr "" -#: lib/action.php:734 +#: lib/action.php:738 msgid "Contact" msgstr "" -#: lib/action.php:736 +#: lib/action.php:740 msgid "Badge" msgstr "" -#: lib/action.php:764 +#: lib/action.php:768 msgid "StatusNet software license" msgstr "" -#: lib/action.php:767 +#: lib/action.php:771 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." "broughtby%%](%%site.broughtbyurl%%). " msgstr "" -#: lib/action.php:769 +#: lib/action.php:773 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "" -#: lib/action.php:771 +#: lib/action.php:775 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3380,34 +3686,54 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:785 +#: lib/action.php:789 msgid "Site content license" msgstr "" -#: lib/action.php:794 +#: lib/action.php:798 msgid "All " msgstr "" -#: lib/action.php:799 +#: lib/action.php:803 msgid "license." msgstr "" -#: lib/action.php:1052 +#: lib/action.php:1067 msgid "Pagination" msgstr "" -#: lib/action.php:1061 +#: lib/action.php:1076 msgid "After" msgstr "" -#: lib/action.php:1069 +#: lib/action.php:1084 msgid "Before" msgstr "" -#: lib/action.php:1117 +#: lib/action.php:1132 msgid "There was a problem with your session token." msgstr "" +#: lib/adminpanelaction.php:96 +msgid "You cannot make changes to this site." +msgstr "" + +#: lib/adminpanelaction.php:195 +msgid "showForm() not implemented." +msgstr "" + +#: lib/adminpanelaction.php:224 +msgid "saveSettings() not implemented." +msgstr "" + +#: lib/adminpanelaction.php:273 +msgid "Basic site configuration" +msgstr "" + +#: lib/adminpanelaction.php:276 +msgid "Design configuration" +msgstr "" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -3579,26 +3905,32 @@ msgid "You are not subscribed to anyone." msgstr "" #: lib/command.php:620 -msgid "You are subscribed to these people: " -msgstr "" +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "" +msgstr[1] "" -#: lib/command.php:637 +#: lib/command.php:640 msgid "No one is subscribed to you." msgstr "" -#: lib/command.php:639 -msgid "These people are subscribed to you: " -msgstr "" +#: lib/command.php:642 +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "" +msgstr[1] "" -#: lib/command.php:656 +#: lib/command.php:662 msgid "You are not a member of any groups." msgstr "" -#: lib/command.php:658 -msgid "You are a member of these groups: " -msgstr "" +#: lib/command.php:664 +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "" +msgstr[1] "" -#: lib/command.php:670 +#: lib/command.php:678 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -3637,19 +3969,19 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:192 +#: lib/common.php:203 msgid "No configuration file found. " msgstr "" -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:195 +#: lib/common.php:206 msgid "Go to the installer." msgstr "" @@ -3669,10 +4001,6 @@ msgstr "" msgid "Database error" msgstr "" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 msgid "Upload file" msgstr "" @@ -3682,62 +4010,6 @@ 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:217 -msgid "Text" -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:372 msgid "Bad default color settings: " msgstr "" @@ -3963,12 +4235,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:235 +#: lib/mail.php:236 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "" -#: lib/mail.php:240 +#: lib/mail.php:241 #, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -3983,29 +4255,29 @@ msgid "" "Change your email address or notification options at %8$s\n" msgstr "" -#: lib/mail.php:253 +#: lib/mail.php:254 #, php-format msgid "Location: %s\n" msgstr "" -#: lib/mail.php:255 +#: lib/mail.php:256 #, php-format msgid "Homepage: %s\n" msgstr "" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4018,21 +4290,21 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4048,12 +4320,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4072,12 +4344,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:554 +#: lib/mail.php:559 #, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "" -#: lib/mail.php:556 +#: lib/mail.php:561 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4098,12 +4370,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4239,7 +4511,11 @@ msgstr "" msgid "Duplicate notice" msgstr "" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +msgid "You have been banned from subscribing." +msgstr "" + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "" @@ -4255,10 +4531,6 @@ msgstr "" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" @@ -4308,6 +4580,14 @@ msgstr "" msgid "All groups" msgstr "" +#: lib/profileformaction.php:123 +msgid "No return-to arguments" +msgstr "" + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "" @@ -4328,6 +4608,14 @@ msgstr "" msgid "Popular" msgstr "" +#: lib/sandboxform.php:67 +msgid "Sandbox" +msgstr "" + +#: lib/sandboxform.php:78 +msgid "Sandbox this user" +msgstr "" + #: lib/searchaction.php:120 msgid "Search site" msgstr "" @@ -4364,6 +4652,14 @@ msgstr "" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +msgid "Silence" +msgstr "" + +#: lib/silenceform.php:78 +msgid "Silence this user" +msgstr "" + #: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" @@ -4393,27 +4689,27 @@ msgstr "" msgid "(none)" msgstr "" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "" -#: lib/subs.php:52 +#: lib/subs.php:56 msgid "User has blocked you." msgstr "" -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "" -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "" -#: lib/subs.php:124 +#: lib/subs.php:128 msgid "Not subscribed!" msgstr "" -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "" @@ -4425,6 +4721,26 @@ msgstr "" msgid "Top posters" msgstr "" +#: lib/unblockform.php:80 +msgid "Unlock this user" +msgstr "" + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +msgid "Unsandbox this user" +msgstr "" + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +msgid "Unsilence this user" +msgstr "" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.mo b/locale/sv/LC_MESSAGES/statusnet.mo index ed78309b171e54e67907b47d38edd298e6c46f2b..7a03482ed3a3a9e52a7691f651dec1911440e7b8 100644 GIT binary patch delta 16362 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 delta 14614 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 Szs&RZ{_tX}pJ&sr3I7A{y*Ew( diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index 437c4b2449..45732d233d 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -5,12 +5,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-16 19:42+0000\n" -"PO-Revision-Date: 2009-11-16 19:44:15+0000\n" +"POT-Creation-Date: 2009-11-18 19:31+0000\n" +"PO-Revision-Date: 2009-11-18 19:32:39+0000\n" "Language-Team: Swedish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\n" +"X-Generator: MediaWiki 1.16alpha(r59207); Translate extension (2009-11-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: out-statusnet\n" @@ -42,7 +42,7 @@ msgstr "Inget sådant meddelande." #: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 #: lib/command.php:364 lib/command.php:411 lib/command.php:466 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 +#: lib/subs.php:34 lib/subs.php:116 msgid "No such user." msgstr "Ingen sådan användare" @@ -145,7 +145,8 @@ msgstr "Kunde inte uppdatera användare." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 #: actions/apistatusesupdate.php:127 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: actions/designadminpanel.php:125 actions/newnotice.php:94 +#: lib/designsettings.php:283 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -232,12 +233,12 @@ msgstr "Alla direktmeddelanden skickade till %s" #: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 #: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigrouplistall.php:120 actions/apigrouplist.php:132 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apigroupmembership.php:106 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/apitimelinegroup.php:147 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!" @@ -379,6 +380,13 @@ msgstr "Användarnamnet används redan, försök med ett annat." msgid "Alias can't be the same as nickname." msgstr "" +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#, fuzzy +msgid "Group not found!" +msgstr "API-metoden hittades inte!" + #: actions/apigroupjoin.php:110 #, fuzzy msgid "You are already a member of that group." @@ -470,13 +478,13 @@ msgstr "%s / Favoriter från %s" msgid "%s updates favorited by %s / %s." msgstr "%s uppdaterade favoriter av %s / %s." -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s tidslinje" -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -566,7 +574,8 @@ msgstr "" msgid "Preview" msgstr "" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#: actions/avatarsettings.php:148 lib/deleteuserform.php:66 +#: lib/noticelist.php:522 #, fuzzy msgid "Delete" msgstr "Ta bort" @@ -579,7 +588,7 @@ msgstr "Ladda upp" msgid "Crop" msgstr "" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/avatarsettings.php:265 actions/disfavor.php:74 #: actions/emailsettings.php:237 actions/favor.php:75 #: actions/groupblock.php:66 actions/grouplogo.php:309 #: actions/groupunblock.php:66 actions/imsettings.php:206 @@ -589,7 +598,7 @@ msgstr "" #: actions/profilesettings.php:187 actions/recoverpassword.php:337 #: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 +#: actions/tagother.php:166 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 lib/designsettings.php:294 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." @@ -657,77 +666,53 @@ msgstr "" msgid "Unblock user from group" msgstr "Ingen sådan användare" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Ingen sådan användare" -#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61 -#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87 -#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31 -#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "Inte inloggad." - -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +#: actions/block.php:69 #, fuzzy -msgid "No profile specified." -msgstr "Ingen mottagare tillagd." +msgid "You already blocked that user." +msgstr "Du prenumererar redan på dessa användare:" -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 -#, fuzzy -msgid "No profile with that ID." -msgstr "Ingen status hittad med det ID" - -#: actions/block.php:111 actions/block.php:134 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 #, fuzzy msgid "Block user" msgstr "Ingen sådan användare" -#: actions/block.php:136 +#: actions/block.php:130 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/block.php:149 actions/deletenotice.php:145 -#: actions/groupblock.php:178 +#: actions/block.php:143 actions/deletenotice.php:145 +#: actions/deleteuser.php:147 actions/groupblock.php:178 msgid "No" msgstr "Nej" -#: actions/block.php:149 +#: actions/block.php:143 actions/deleteuser.php:147 #, fuzzy msgid "Do not block this user" msgstr "Ingen sådan användare" -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:179 +#: actions/block.php:144 actions/deletenotice.php:146 +#: actions/deleteuser.php:148 actions/groupblock.php:179 msgid "Yes" msgstr "Ja" -#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 -#: lib/blockform.php:153 +#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Ingen sådan användare" -#: actions/block.php:165 -#, fuzzy -msgid "You have already blocked this user." -msgstr "Du prenumererar redan på dessa användare:" - -#: actions/block.php:170 +#: actions/block.php:162 msgid "Failed to save block information." msgstr "" @@ -792,6 +777,15 @@ msgstr "Inlägg" msgid "No such notice." msgstr "Inget sådant inlägg." +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 +#: actions/unsubscribe.php:52 lib/adminpanelaction.php:72 +#: lib/profileformaction.php:63 lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Inte inloggad." + #: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Kan inte ta bort detta inlägg." @@ -828,6 +822,145 @@ msgstr "Ta bort inlägg" 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/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "Kunde inte uppdatera användare." + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "Du kan inte tabort nån annan användares status." + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +#, fuzzy +msgid "Delete user" +msgstr "Ta bort" + +#: actions/deleteuser.php:135 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "Ta bort inlägg" + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/adminpanelaction.php:275 lib/groupnav.php:119 +msgid "Design" +msgstr "" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "" + +#: actions/designadminpanel.php:220 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "Kunde inte spara dina Twitter inställningar!" + +#: actions/designadminpanel.php:301 +#, fuzzy, php-format +msgid "Theme not available: %s" +msgstr "Denna sida är inte tillgänglig i den mediatyp du accepterat" + +#: actions/designadminpanel.php:406 +#, fuzzy +msgid "Change theme" +msgstr "Ändra" + +#: actions/designadminpanel.php:410 +msgid "Theme" +msgstr "" + +#: actions/designadminpanel.php:411 +msgid "Theme for the site." +msgstr "" + +#: actions/designadminpanel.php:420 lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: actions/designadminpanel.php:424 actions/designadminpanel.php:498 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: actions/designadminpanel.php:429 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "Du kan uppdatera din personliga profil här" + +#: actions/designadminpanel.php:459 lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: actions/designadminpanel.php:475 lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: actions/designadminpanel.php:476 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: actions/designadminpanel.php:481 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: actions/designadminpanel.php:490 lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Ändra ditt lösenord" + +#: actions/designadminpanel.php:511 lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Anslut" + +#: actions/designadminpanel.php:524 lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Sök" + +#: actions/designadminpanel.php:537 lib/designsettings.php:217 +msgid "Text" +msgstr "Text" + +#: actions/designadminpanel.php:550 lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Logga in" + +#: actions/designadminpanel.php:611 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: actions/designadminpanel.php:612 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: actions/designadminpanel.php:618 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: actions/designadminpanel.php:620 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/siteadminpanel.php:371 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 actions/useradminpanel.php:226 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Spara" + +#: actions/designadminpanel.php:621 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "Det inlägget är ingen favorit!" @@ -976,14 +1109,6 @@ msgstr "Jag vill posta inlägg via min email." msgid "Publish a MicroID for my email address." msgstr "Publicera ett MicroID för min emailadress." -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Spara" - #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." @@ -997,7 +1122,7 @@ msgstr "Ingen emailadress." msgid "Cannot normalize that email address" msgstr "Kan inte normalisera den emailadressen" -#: actions/emailsettings.php:330 +#: actions/emailsettings.php:330 actions/siteadminpanel.php:156 msgid "Not a valid email address" msgstr "Ingen giltig emailadress" @@ -1202,6 +1327,20 @@ msgstr "Inget sådant inlägg." msgid "Cannot read file." msgstr "Inget sådant inlägg." +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +#, fuzzy +msgid "No profile specified." +msgstr "Ingen mottagare tillagd." + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: lib/profileformaction.php:77 +#, fuzzy +msgid "No profile with that ID." +msgstr "Ingen status hittad med det ID" + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 #, fuzzy @@ -1324,11 +1463,11 @@ msgstr "" msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:439 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:346 lib/blockform.php:153 +#: actions/groupmembers.php:346 lib/blockform.php:69 msgid "Block" msgstr "" @@ -1418,7 +1557,7 @@ msgstr "" msgid "User is not blocked from group." msgstr "Användaren har ingen profil." -#: actions/groupunblock.php:128 actions/unblock.php:108 +#: actions/groupunblock.php:128 actions/unblock.php:77 #, fuzzy msgid "Error removing the block." msgstr "Fel uppstog när användaren skulle sparas." @@ -1731,7 +1870,7 @@ msgstr "Felaktigt användarnamn eller lösenord." msgid "Error setting user." msgstr "Fel uppstog i användarens inställning" -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: actions/login.php:204 actions/login.php:257 lib/action.php:457 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Logga in" @@ -2157,7 +2296,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:144 +#: actions/profilesettings.php:144 actions/siteadminpanel.php:275 msgid "Language" msgstr "Språk" @@ -2185,7 +2324,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Biografin är för lång (max 140 tecken)" -#: actions/profilesettings.php:228 +#: actions/profilesettings.php:228 actions/siteadminpanel.php:163 msgid "Timezone not selected." msgstr "Du har inte valt tidszon" @@ -2211,7 +2350,7 @@ msgstr "Kunde inte spara profil." msgid "Couldn't save tags." msgstr "Kunde inte spara profil." -#: actions/profilesettings.php:344 +#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 msgid "Settings saved." msgstr "Inställningar sparade." @@ -2448,7 +2587,7 @@ msgstr "Fel uppstog med bekräftelsekoden." msgid "Registration successful" msgstr "Registreringen är genomförd" -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: actions/register.php:114 actions/register.php:502 lib/action.php:454 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Registrera" @@ -2494,7 +2633,7 @@ msgid "Same as password above. Required." msgstr "Samma som lösenordet ovan. Måste fyllas i." #: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:253 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Epost" @@ -2603,7 +2742,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL till din profil på en annan kompatibel mikroblogg" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 +#: lib/userprofile.php:356 msgid "Subscribe" msgstr "Prenumerera" @@ -2678,6 +2817,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Meddelande till %1$s på %2$s" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "Du kan inte skicka meddelande till den användaren." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "Användaren har ingen profil." + #: actions/showfavorites.php:79 #, fuzzy, php-format msgid "%s's favorite notices, page %d" @@ -2921,6 +3070,145 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" +#: actions/silence.php:65 actions/unsilence.php:65 +#, fuzzy +msgid "You cannot silence users on this site." +msgstr "Du kan inte skicka meddelande till den användaren." + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "Användaren har ingen profil." + +#: actions/siteadminpanel.php:58 lib/adminpanelaction.php:272 +#, fuzzy +msgid "Site" +msgstr "Bjud in" + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site." +msgstr "" + +#: actions/siteadminpanel.php:145 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:153 +#, fuzzy +msgid "You must have a valid contact email address" +msgstr "Ingen giltig emailadress" + +#: actions/siteadminpanel.php:171 +#, php-format +msgid "Unknown language \"%s\"" +msgstr "" + +#: actions/siteadminpanel.php:178 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/siteadminpanel.php:184 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/siteadminpanel.php:190 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/siteadminpanel.php:241 +#, fuzzy +msgid "Site name" +msgstr "Nytt inlägg" + +#: actions/siteadminpanel.php:242 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:246 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:249 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:250 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:254 +#, fuzzy +msgid "contact email address for your site" +msgstr "Ny emailadress för att skicka till %s" + +#: actions/siteadminpanel.php:268 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:269 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:276 +#, fuzzy +msgid "Default site language" +msgstr "Språkval" + +#: actions/siteadminpanel.php:282 +#, fuzzy +msgid "Private" +msgstr "Sekretesspolicy" + +#: actions/siteadminpanel.php:284 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/siteadminpanel.php:290 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/siteadminpanel.php:291 +msgid "In a scheduled job" +msgstr "" + +#: actions/siteadminpanel.php:292 +#, fuzzy +msgid "Never" +msgstr "Återställ" + +#: actions/siteadminpanel.php:294 +msgid "Data snapshots" +msgstr "" + +#: actions/siteadminpanel.php:295 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/siteadminpanel.php:301 +msgid "Frequency" +msgstr "" + +#: actions/siteadminpanel.php:302 +msgid "Snapshots will be sent once every N Web hits" +msgstr "" + +#: actions/siteadminpanel.php:309 +msgid "Report URL" +msgstr "" + +#: actions/siteadminpanel.php:310 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/siteadminpanel.php:371 actions/useradminpanel.php:226 +#, fuzzy +msgid "Save site settings" +msgstr "Twitter inställningar" + #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "SMS Inställningar" @@ -3202,6 +3490,21 @@ msgstr "Inget sådant meddelande." msgid "API method under construction." msgstr "API-metoden är under uppbyggnad." +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "Du prenumererar redan på dessa användare:" + +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "Användaren har ingen profil." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "Användaren har ingen profil." + #: actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." @@ -3222,6 +3525,32 @@ msgstr "Lämnar pren." msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" +#: actions/useradminpanel.php:58 lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + +#: actions/useradminpanel.php:69 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:171 +#, fuzzy +msgid "Closed" +msgstr "Ingen sådan användare" + +#: actions/useradminpanel.php:173 +msgid "Is registration on this site prohibited?" +msgstr "" + +#: actions/useradminpanel.php:178 +#, fuzzy +msgid "Invite-only" +msgstr "Bjud in" + +#: actions/useradminpanel.php:180 +msgid "Is registration on this site only open to invited users?" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Tillåt prenumeration." @@ -3383,11 +3712,15 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: classes/Message.php:55 +#: classes/Message.php:45 +msgid "You are banned from sending direct messages." +msgstr "" + +#: classes/Message.php:61 msgid "Could not insert message." msgstr "" -#: classes/Message.php:65 +#: classes/Message.php:71 msgid "Could not update message with new URI." msgstr "" @@ -3417,15 +3750,15 @@ msgid "" "few minutes." msgstr "" -#: classes/Notice.php:202 +#: classes/Notice.php:200 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:268 classes/Notice.php:293 +#: classes/Notice.php:265 classes/Notice.php:290 msgid "Problem saving notice." msgstr "Det var ett problem när inlägget sparades." -#: classes/Notice.php:1120 +#: classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Databasfel för svar: %s" @@ -3456,10 +3789,6 @@ msgstr "Ändra ditt lösenord" msgid "Change email handling" msgstr "Ändra email hantering" -#: lib/accountsettingsaction.php:124 lib/groupnav.php:119 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:124 #, fuzzy msgid "Design your profile" @@ -3513,103 +3842,108 @@ msgstr "Anslut" msgid "Connect to services" msgstr "Kunde inte skicka vidare till servern: %s" -#: lib/action.php:439 lib/subgroupnav.php:105 +#: lib/action.php:439 +#, fuzzy +msgid "Change site configuration" +msgstr "Prenumerationer" + +#: lib/action.php:443 lib/subgroupnav.php:105 msgid "Invite" msgstr "Bjud in" -#: lib/action.php:440 lib/subgroupnav.php:106 +#: lib/action.php:444 lib/subgroupnav.php:106 #, 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/action.php:445 +#: lib/action.php:449 msgid "Logout" msgstr "Logga ut" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout from the site" msgstr "" -#: lib/action.php:450 +#: lib/action.php:454 #, fuzzy msgid "Create an account" msgstr "Skapa ett nytt konto" -#: lib/action.php:453 +#: lib/action.php:457 msgid "Login to the site" msgstr "" -#: lib/action.php:456 lib/action.php:719 +#: lib/action.php:460 lib/action.php:723 msgid "Help" msgstr "Hjälp" -#: lib/action.php:456 +#: lib/action.php:460 #, fuzzy msgid "Help me!" msgstr "Hjälp" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search" msgstr "Sök" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search for people or text" msgstr "" -#: lib/action.php:480 +#: lib/action.php:484 #, fuzzy msgid "Site notice" msgstr "Nytt inlägg" -#: lib/action.php:546 +#: lib/action.php:550 msgid "Local views" msgstr "" -#: lib/action.php:612 +#: lib/action.php:616 #, fuzzy msgid "Page notice" msgstr "Nytt inlägg" -#: lib/action.php:714 +#: lib/action.php:718 #, fuzzy msgid "Secondary site navigation" msgstr "Prenumerationer" -#: lib/action.php:721 +#: lib/action.php:725 msgid "About" msgstr "Om" -#: lib/action.php:723 +#: lib/action.php:727 msgid "FAQ" msgstr "Frågor & svar" -#: lib/action.php:727 +#: lib/action.php:731 msgid "TOS" msgstr "" -#: lib/action.php:730 +#: lib/action.php:734 msgid "Privacy" msgstr "Sekretesspolicy" -#: lib/action.php:732 +#: lib/action.php:736 msgid "Source" msgstr "Källa" -#: lib/action.php:734 +#: lib/action.php:738 msgid "Contact" msgstr "Kontakta" -#: lib/action.php:736 +#: lib/action.php:740 msgid "Badge" msgstr "" -#: lib/action.php:764 +#: lib/action.php:768 msgid "StatusNet software license" msgstr "" -#: lib/action.php:767 +#: lib/action.php:771 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3618,12 +3952,12 @@ msgstr "" "**%%site.name%%** är en mikroblogg service för dig ifrån [%%site.broughtby%%]" "(%%site.broughtbyurl%%)" -#: lib/action.php:769 +#: lib/action.php:773 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** är en mikroblogg service." -#: lib/action.php:771 +#: lib/action.php:775 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3634,38 +3968,61 @@ msgstr "" "version %s, tillgängligt under [GNU Affero General Public License](http://" "www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:785 +#: lib/action.php:789 #, fuzzy msgid "Site content license" msgstr "Sök innehåll i inlägg" -#: lib/action.php:794 +#: lib/action.php:798 msgid "All " msgstr "" -#: lib/action.php:799 +#: lib/action.php:803 msgid "license." msgstr "" -#: lib/action.php:1052 +#: lib/action.php:1067 msgid "Pagination" msgstr "" -#: lib/action.php:1061 +#: lib/action.php:1076 #, fuzzy msgid "After" msgstr "« Nyare" -#: lib/action.php:1069 +#: lib/action.php:1084 #, fuzzy msgid "Before" msgstr "Tidigare »" -#: lib/action.php:1117 +#: lib/action.php:1132 #, fuzzy msgid "There was a problem with your session token." msgstr "Det var något problem med din session. Försök igen, tack." +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "Du kan inte skicka meddelande till den användaren." + +#: lib/adminpanelaction.php:195 +msgid "showForm() not implemented." +msgstr "" + +#: lib/adminpanelaction.php:224 +msgid "saveSettings() not implemented." +msgstr "" + +#: lib/adminpanelaction.php:273 +#, fuzzy +msgid "Basic site configuration" +msgstr "Bekräfta epostadress" + +#: lib/adminpanelaction.php:276 +#, fuzzy +msgid "Design configuration" +msgstr "SMS Bekräftelse" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -3841,30 +4198,36 @@ msgstr "Du skickade inte oss den profilen" #: lib/command.php:620 #, fuzzy -msgid "You are subscribed to these people: " -msgstr "Du skickade inte oss den profilen" +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "Du skickade inte oss den profilen" +msgstr[1] "Du skickade inte oss den profilen" -#: lib/command.php:637 +#: lib/command.php:640 #, fuzzy msgid "No one is subscribed to you." msgstr "Kunde inte prenumerera på annat åt dig." -#: lib/command.php:639 +#: lib/command.php:642 #, fuzzy -msgid "These people are subscribed to you: " -msgstr "Fjärrprenumerera" +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "Kunde inte prenumerera på annat åt dig." +msgstr[1] "Kunde inte prenumerera på annat åt dig." -#: lib/command.php:656 +#: lib/command.php:662 #, fuzzy msgid "You are not a member of any groups." msgstr "Du skickade inte oss den profilen" -#: lib/command.php:658 +#: lib/command.php:664 #, fuzzy -msgid "You are a member of these groups: " -msgstr "Du skickade inte oss den profilen" +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "Du skickade inte oss den profilen" +msgstr[1] "Du skickade inte oss den profilen" -#: lib/command.php:670 +#: lib/command.php:678 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -3903,20 +4266,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:192 +#: lib/common.php:203 #, fuzzy msgid "No configuration file found. " msgstr "Ingen bekräftelsekod." -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:195 +#: lib/common.php:206 msgid "Go to the installer." msgstr "" @@ -3936,10 +4299,6 @@ msgstr "Uppdateringar via SMS" msgid "Database error" msgstr "" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" @@ -3950,66 +4309,6 @@ 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:217 -msgid "Text" -msgstr "Text" - -#: 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:372 msgid "Bad default color settings: " msgstr "" @@ -4253,12 +4552,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:235 +#: lib/mail.php:236 #, 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." -#: lib/mail.php:240 +#: lib/mail.php:241 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4277,29 +4576,29 @@ msgstr "" "\tHälsningar,\n" "%4$s.\n" -#: lib/mail.php:253 +#: lib/mail.php:254 #, fuzzy, php-format msgid "Location: %s\n" msgstr "Plats: %s\n" -#: lib/mail.php:255 +#: lib/mail.php:256 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Hemsida: %s\n" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "Ny emailadress för att skicka till %s" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4320,21 +4619,21 @@ msgstr "" "Mvh,\n" "%4$s" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "%s status" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "SMS Bekräftelse" -#: lib/mail.php:462 +#: lib/mail.php:463 #, fuzzy, php-format msgid "You've been nudged by %s" msgstr "Du är identifierad. Skriv in" -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4350,12 +4649,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4374,12 +4673,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:554 +#: lib/mail.php:559 #, 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 +#: lib/mail.php:561 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4400,12 +4699,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4549,7 +4848,11 @@ msgstr "Fel uppstog när fjärrprofilen skulle läggas till" msgid "Duplicate notice" msgstr "Tabort inlägg" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +msgid "You have been banned from subscribing." +msgstr "" + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Kunde inte lägga till ny prenumeration." @@ -4565,10 +4868,6 @@ msgstr "Svar" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" @@ -4619,6 +4918,15 @@ msgstr "Medlem sedan" msgid "All groups" msgstr "" +#: lib/profileformaction.php:123 +#, fuzzy +msgid "No return-to arguments" +msgstr "Inget sådant dokument." + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "Publik" @@ -4641,6 +4949,15 @@ msgstr "" msgid "Popular" msgstr "Personer" +#: lib/sandboxform.php:67 +msgid "Sandbox" +msgstr "" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Ingen sådan användare" + #: lib/searchaction.php:120 #, fuzzy msgid "Search site" @@ -4681,6 +4998,16 @@ msgstr "" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Nytt inlägg" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Ingen sådan användare" + #: lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" @@ -4710,29 +5037,29 @@ msgstr "" msgid "(none)" msgstr "" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "" -#: lib/subs.php:52 +#: lib/subs.php:56 #, fuzzy msgid "User has blocked you." msgstr "Användaren har ingen profil." -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "Kunde inte prenumerera." -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "Kunde inte prenumerera på annat åt dig." -#: lib/subs.php:124 +#: lib/subs.php:128 #, fuzzy msgid "Not subscribed!" msgstr "Ingen prenumerant!" -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "Kunde inte radera prenumerationen. " @@ -4745,6 +5072,29 @@ msgstr "Nej" msgid "Top posters" msgstr "" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "Ingen sådan användare" + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Ingen sådan användare" + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Ingen sådan användare" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "" @@ -4851,3 +5201,7 @@ msgstr "Ledsen, men det är inte din inkommande emailadress." #: scripts/maildaemon.php:61 msgid "Sorry, no incoming email allowed." msgstr "Ledsen, men inga inkommande email är tillåtna." + +#, fuzzy +#~ msgid "These people are subscribed to you: " +#~ msgstr "Fjärrprenumerera" diff --git a/locale/te/LC_MESSAGES/statusnet.mo b/locale/te/LC_MESSAGES/statusnet.mo index 059365e86b296e80455768fc657f7c740b470e7d..9a225e09b942b1e4df36525cbdbea9f048d30ad6 100644 GIT binary patch delta 13488 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 delta 11741 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 delta 9619 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 diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index 78261edbb1..82688a58fa 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -5,12 +5,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-16 19:42+0000\n" -"PO-Revision-Date: 2009-11-16 19:44:20+0000\n" +"POT-Creation-Date: 2009-11-18 19:31+0000\n" +"PO-Revision-Date: 2009-11-18 19:32:45+0000\n" "Language-Team: Turkish\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\n" +"X-Generator: MediaWiki 1.16alpha(r59207); Translate extension (2009-11-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: out-statusnet\n" @@ -42,7 +42,7 @@ msgstr "Böyle bir durum mesajı yok." #: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 #: lib/command.php:364 lib/command.php:411 lib/command.php:466 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 +#: lib/subs.php:34 lib/subs.php:116 msgid "No such user." msgstr "Böyle bir kullanıcı yok." @@ -145,7 +145,8 @@ msgstr "Kullanıcı güncellenemedi." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 #: actions/apistatusesupdate.php:127 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: actions/designadminpanel.php:125 actions/newnotice.php:94 +#: lib/designsettings.php:283 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -231,12 +232,12 @@ msgstr "" #: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 #: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigrouplistall.php:120 actions/apigrouplist.php:132 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apigroupmembership.php:106 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/apitimelinegroup.php:147 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!" @@ -377,6 +378,13 @@ msgstr "Takma ad kullanımda. Başka bir tane deneyin." msgid "Alias can't be the same as nickname." msgstr "" +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#, fuzzy +msgid "Group not found!" +msgstr "İstek bulunamadı!" + #: actions/apigroupjoin.php:110 #, fuzzy msgid "You are already a member of that group." @@ -469,13 +477,13 @@ msgstr "" msgid "%s updates favorited by %s / %s." msgstr "" -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -565,7 +573,8 @@ msgstr "" msgid "Preview" msgstr "" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#: actions/avatarsettings.php:148 lib/deleteuserform.php:66 +#: lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -577,7 +586,7 @@ msgstr "Yükle" msgid "Crop" msgstr "" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/avatarsettings.php:265 actions/disfavor.php:74 #: actions/emailsettings.php:237 actions/favor.php:75 #: actions/groupblock.php:66 actions/grouplogo.php:309 #: actions/groupunblock.php:66 actions/imsettings.php:206 @@ -587,7 +596,7 @@ msgstr "" #: actions/profilesettings.php:187 actions/recoverpassword.php:337 #: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 +#: actions/tagother.php:166 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 lib/designsettings.php:294 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -655,75 +664,53 @@ msgstr "" msgid "Unblock user from group" msgstr "Böyle bir kullanıcı yok." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "Böyle bir kullanıcı yok." -#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61 -#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87 -#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31 -#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "Giriş yapılmadı." +#: actions/block.php:69 +#, fuzzy +msgid "You already blocked that user." +msgstr "Zaten giriş yapmış durumdasıznız!" -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 -msgid "No profile specified." -msgstr "" - -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 -msgid "No profile with that ID." -msgstr "" - -#: actions/block.php:111 actions/block.php:134 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 #, fuzzy msgid "Block user" msgstr "Böyle bir kullanıcı yok." -#: actions/block.php:136 +#: actions/block.php:130 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/block.php:149 actions/deletenotice.php:145 -#: actions/groupblock.php:178 +#: actions/block.php:143 actions/deletenotice.php:145 +#: actions/deleteuser.php:147 actions/groupblock.php:178 msgid "No" msgstr "" -#: actions/block.php:149 +#: actions/block.php:143 actions/deleteuser.php:147 #, fuzzy msgid "Do not block this user" msgstr "Böyle bir kullanıcı yok." -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:179 +#: actions/block.php:144 actions/deletenotice.php:146 +#: actions/deleteuser.php:148 actions/groupblock.php:179 msgid "Yes" msgstr "" -#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 -#: lib/blockform.php:153 +#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Böyle bir kullanıcı yok." -#: actions/block.php:165 -#, fuzzy -msgid "You have already blocked this user." -msgstr "Zaten giriş yapmış durumdasıznız!" - -#: actions/block.php:170 +#: actions/block.php:162 msgid "Failed to save block information." msgstr "" @@ -788,6 +775,15 @@ msgstr "Durum mesajları" msgid "No such notice." msgstr "Böyle bir durum mesajı yok." +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 +#: actions/unsubscribe.php:52 lib/adminpanelaction.php:72 +#: lib/profileformaction.php:63 lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Giriş yapılmadı." + #: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "" @@ -819,6 +815,144 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "" +#: actions/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "Kullanıcı güncellenemedi." + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "Yerel aboneliği kullanabilirsiniz!" + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +msgid "Delete user" +msgstr "" + +#: actions/deleteuser.php:135 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "Böyle bir kullanıcı yok." + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/adminpanelaction.php:275 lib/groupnav.php:119 +msgid "Design" +msgstr "" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "" + +#: actions/designadminpanel.php:220 +msgid "Unable to delete design setting." +msgstr "" + +#: actions/designadminpanel.php:301 +#, fuzzy, php-format +msgid "Theme not available: %s" +msgstr "Bu sayfa kabul ettiğiniz ortam türünde kullanılabilir değil" + +#: actions/designadminpanel.php:406 +#, fuzzy +msgid "Change theme" +msgstr "Değiştir" + +#: actions/designadminpanel.php:410 +msgid "Theme" +msgstr "" + +#: actions/designadminpanel.php:411 +msgid "Theme for the site." +msgstr "" + +#: actions/designadminpanel.php:420 lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: actions/designadminpanel.php:424 actions/designadminpanel.php:498 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: actions/designadminpanel.php:429 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "" +"Ah, durumunuz biraz uzun kaçtı. Azami 180 karaktere sığdırmaya ne dersiniz?" + +#: actions/designadminpanel.php:459 lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: actions/designadminpanel.php:475 lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: actions/designadminpanel.php:476 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: actions/designadminpanel.php:481 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: actions/designadminpanel.php:490 lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Parolayı değiştir" + +#: actions/designadminpanel.php:511 lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Bağlan" + +#: actions/designadminpanel.php:524 lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Ara" + +#: actions/designadminpanel.php:537 lib/designsettings.php:217 +msgid "Text" +msgstr "" + +#: actions/designadminpanel.php:550 lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Giriş" + +#: actions/designadminpanel.php:611 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: actions/designadminpanel.php:612 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: actions/designadminpanel.php:618 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: actions/designadminpanel.php:620 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/siteadminpanel.php:371 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 actions/useradminpanel.php:226 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Kaydet" + +#: actions/designadminpanel.php:621 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "" @@ -961,14 +1095,6 @@ msgstr "" msgid "Publish a MicroID for my email address." msgstr "" -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Kaydet" - #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." @@ -982,7 +1108,7 @@ msgstr "" msgid "Cannot normalize that email address" msgstr "" -#: actions/emailsettings.php:330 +#: actions/emailsettings.php:330 actions/siteadminpanel.php:156 msgid "Not a valid email address" msgstr "" @@ -1180,6 +1306,18 @@ msgstr "Böyle bir durum mesajı yok." msgid "Cannot read file." msgstr "Böyle bir durum mesajı yok." +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +msgid "No profile specified." +msgstr "" + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: lib/profileformaction.php:77 +msgid "No profile with that ID." +msgstr "" + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 msgid "No group specified." @@ -1299,11 +1437,11 @@ msgstr "" msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:439 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:346 lib/blockform.php:153 +#: actions/groupmembers.php:346 lib/blockform.php:69 msgid "Block" msgstr "" @@ -1393,7 +1531,7 @@ msgstr "" msgid "User is not blocked from group." msgstr "Kullanıcının profili yok." -#: actions/groupunblock.php:128 actions/unblock.php:108 +#: actions/groupunblock.php:128 actions/unblock.php:77 #, fuzzy msgid "Error removing the block." msgstr "Kullanıcıyı kaydetmede hata oluştu." @@ -1673,7 +1811,7 @@ msgstr "Yanlış kullanıcı adı veya parola." msgid "Error setting user." msgstr "Kullanıcı ayarlamada hata oluştu." -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: actions/login.php:204 actions/login.php:257 lib/action.php:457 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Giriş" @@ -2104,7 +2242,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:144 +#: actions/profilesettings.php:144 actions/siteadminpanel.php:275 msgid "Language" msgstr "" @@ -2130,7 +2268,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Hakkında bölümü çok uzun (azm 140 karakter)." -#: actions/profilesettings.php:228 +#: actions/profilesettings.php:228 actions/siteadminpanel.php:163 msgid "Timezone not selected." msgstr "" @@ -2156,7 +2294,7 @@ msgstr "Profil kaydedilemedi." msgid "Couldn't save tags." msgstr "Profil kaydedilemedi." -#: actions/profilesettings.php:344 +#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 msgid "Settings saved." msgstr "Ayarlar kaydedildi." @@ -2392,7 +2530,7 @@ msgstr "Onay kodu hatası." msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: actions/register.php:114 actions/register.php:502 lib/action.php:454 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Kayıt" @@ -2436,7 +2574,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:253 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Eposta" @@ -2525,7 +2663,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 +#: lib/userprofile.php:356 msgid "Subscribe" msgstr "Abone ol" @@ -2599,6 +2737,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "%s için cevaplar" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "Bize o profili yollamadınız" + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "Kullanıcının profili yok." + #: actions/showfavorites.php:79 #, fuzzy, php-format msgid "%s's favorite notices, page %d" @@ -2842,6 +2990,142 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" +#: actions/silence.php:65 actions/unsilence.php:65 +msgid "You cannot silence users on this site." +msgstr "" + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "Kullanıcının profili yok." + +#: actions/siteadminpanel.php:58 lib/adminpanelaction.php:272 +msgid "Site" +msgstr "" + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site." +msgstr "" + +#: actions/siteadminpanel.php:145 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:153 +#, fuzzy +msgid "You must have a valid contact email address" +msgstr "Geçersiz bir eposta adresi." + +#: actions/siteadminpanel.php:171 +#, php-format +msgid "Unknown language \"%s\"" +msgstr "" + +#: actions/siteadminpanel.php:178 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/siteadminpanel.php:184 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/siteadminpanel.php:190 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/siteadminpanel.php:241 +#, fuzzy +msgid "Site name" +msgstr "Yeni durum mesajı" + +#: actions/siteadminpanel.php:242 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:246 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:249 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:250 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:254 +#, fuzzy +msgid "contact email address for your site" +msgstr "Kullanıcı için kaydedilmiş eposta adresi yok." + +#: actions/siteadminpanel.php:268 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:269 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:276 +msgid "Default site language" +msgstr "" + +#: actions/siteadminpanel.php:282 +#, fuzzy +msgid "Private" +msgstr "Gizlilik" + +#: actions/siteadminpanel.php:284 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/siteadminpanel.php:290 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/siteadminpanel.php:291 +msgid "In a scheduled job" +msgstr "" + +#: actions/siteadminpanel.php:292 +#, fuzzy +msgid "Never" +msgstr "Geri al" + +#: actions/siteadminpanel.php:294 +msgid "Data snapshots" +msgstr "" + +#: actions/siteadminpanel.php:295 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/siteadminpanel.php:301 +msgid "Frequency" +msgstr "" + +#: actions/siteadminpanel.php:302 +msgid "Snapshots will be sent once every N Web hits" +msgstr "" + +#: actions/siteadminpanel.php:309 +msgid "Report URL" +msgstr "" + +#: actions/siteadminpanel.php:310 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/siteadminpanel.php:371 actions/useradminpanel.php:226 +#, fuzzy +msgid "Save site settings" +msgstr "Ayarlar" + #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "" @@ -3113,6 +3397,21 @@ msgstr "Böyle bir durum mesajı yok." msgid "API method under construction." msgstr "" +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "Zaten giriş yapmış durumdasıznız!" + +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "Kullanıcının profili yok." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "Kullanıcının profili yok." + #: actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." @@ -3132,6 +3431,31 @@ msgstr "Aboneliği sonlandır" msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" +#: actions/useradminpanel.php:58 lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + +#: actions/useradminpanel.php:69 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:171 +#, fuzzy +msgid "Closed" +msgstr "Böyle bir kullanıcı yok." + +#: actions/useradminpanel.php:173 +msgid "Is registration on this site prohibited?" +msgstr "" + +#: actions/useradminpanel.php:178 +msgid "Invite-only" +msgstr "" + +#: actions/useradminpanel.php:180 +msgid "Is registration on this site only open to invited users?" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Takip isteğini onayla" @@ -3286,11 +3610,15 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: classes/Message.php:55 +#: classes/Message.php:45 +msgid "You are banned from sending direct messages." +msgstr "" + +#: classes/Message.php:61 msgid "Could not insert message." msgstr "" -#: classes/Message.php:65 +#: classes/Message.php:71 msgid "Could not update message with new URI." msgstr "" @@ -3320,15 +3648,15 @@ msgid "" "few minutes." msgstr "" -#: classes/Notice.php:202 +#: classes/Notice.php:200 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:268 classes/Notice.php:293 +#: classes/Notice.php:265 classes/Notice.php:290 msgid "Problem saving notice." msgstr "Durum mesajını kaydederken hata oluştu." -#: classes/Notice.php:1120 +#: classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Cevap eklenirken veritabanı hatası: %s" @@ -3359,10 +3687,6 @@ msgstr "" msgid "Change email handling" msgstr "" -#: lib/accountsettingsaction.php:124 lib/groupnav.php:119 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:124 #, fuzzy msgid "Design your profile" @@ -3415,101 +3739,106 @@ msgstr "Bağlan" msgid "Connect to services" msgstr "Sunucuya yönlendirme yapılamadı: %s" -#: lib/action.php:439 lib/subgroupnav.php:105 +#: lib/action.php:439 +#, fuzzy +msgid "Change site configuration" +msgstr "Abonelikler" + +#: lib/action.php:443 lib/subgroupnav.php:105 msgid "Invite" msgstr "" -#: lib/action.php:440 lib/subgroupnav.php:106 +#: lib/action.php:444 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout" msgstr "Çıkış" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout from the site" msgstr "" -#: lib/action.php:450 +#: lib/action.php:454 #, fuzzy msgid "Create an account" msgstr "Yeni hesap oluştur" -#: lib/action.php:453 +#: lib/action.php:457 msgid "Login to the site" msgstr "" -#: lib/action.php:456 lib/action.php:719 +#: lib/action.php:460 lib/action.php:723 msgid "Help" msgstr "Yardım" -#: lib/action.php:456 +#: lib/action.php:460 #, fuzzy msgid "Help me!" msgstr "Yardım" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search" msgstr "Ara" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search for people or text" msgstr "" -#: lib/action.php:480 +#: lib/action.php:484 #, fuzzy msgid "Site notice" msgstr "Yeni durum mesajı" -#: lib/action.php:546 +#: lib/action.php:550 msgid "Local views" msgstr "" -#: lib/action.php:612 +#: lib/action.php:616 #, fuzzy msgid "Page notice" msgstr "Yeni durum mesajı" -#: lib/action.php:714 +#: lib/action.php:718 #, fuzzy msgid "Secondary site navigation" msgstr "Abonelikler" -#: lib/action.php:721 +#: lib/action.php:725 msgid "About" msgstr "Hakkında" -#: lib/action.php:723 +#: lib/action.php:727 msgid "FAQ" msgstr "SSS" -#: lib/action.php:727 +#: lib/action.php:731 msgid "TOS" msgstr "" -#: lib/action.php:730 +#: lib/action.php:734 msgid "Privacy" msgstr "Gizlilik" -#: lib/action.php:732 +#: lib/action.php:736 msgid "Source" msgstr "Kaynak" -#: lib/action.php:734 +#: lib/action.php:738 msgid "Contact" msgstr "İletişim" -#: lib/action.php:736 +#: lib/action.php:740 msgid "Badge" msgstr "" -#: lib/action.php:764 +#: lib/action.php:768 msgid "StatusNet software license" msgstr "" -#: lib/action.php:767 +#: lib/action.php:771 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3518,12 +3847,12 @@ msgstr "" "**%%site.name%%** [%%site.broughtby%%](%%site.broughtbyurl%%)\" tarafından " "hazırlanan anında mesajlaşma ağıdır. " -#: lib/action.php:769 +#: lib/action.php:773 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** bir aninda mesajlaşma sosyal ağıdır." -#: lib/action.php:771 +#: lib/action.php:775 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3534,37 +3863,59 @@ msgstr "" "licenses/agpl-3.0.html) lisansı ile korunan [StatusNet](http://status.net/) " "microbloglama yazılımının %s. versiyonunu kullanmaktadır." -#: lib/action.php:785 +#: lib/action.php:789 #, fuzzy msgid "Site content license" msgstr "Yeni durum mesajı" -#: lib/action.php:794 +#: lib/action.php:798 msgid "All " msgstr "" -#: lib/action.php:799 +#: lib/action.php:803 msgid "license." msgstr "" -#: lib/action.php:1052 +#: lib/action.php:1067 msgid "Pagination" msgstr "" -#: lib/action.php:1061 +#: lib/action.php:1076 #, fuzzy msgid "After" msgstr "« Sonra" -#: lib/action.php:1069 +#: lib/action.php:1084 #, fuzzy msgid "Before" msgstr "Önce »" -#: lib/action.php:1117 +#: lib/action.php:1132 msgid "There was a problem with your session token." msgstr "" +#: lib/adminpanelaction.php:96 +msgid "You cannot make changes to this site." +msgstr "" + +#: lib/adminpanelaction.php:195 +msgid "showForm() not implemented." +msgstr "" + +#: lib/adminpanelaction.php:224 +msgid "saveSettings() not implemented." +msgstr "" + +#: lib/adminpanelaction.php:273 +#, fuzzy +msgid "Basic site configuration" +msgstr "Eposta adresi onayı" + +#: lib/adminpanelaction.php:276 +#, fuzzy +msgid "Design configuration" +msgstr "Eposta adresi onayı" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -3740,30 +4091,36 @@ msgstr "Bize o profili yollamadınız" #: lib/command.php:620 #, fuzzy -msgid "You are subscribed to these people: " -msgstr "Bize o profili yollamadınız" +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "Bize o profili yollamadınız" +msgstr[1] "Bize o profili yollamadınız" -#: lib/command.php:637 +#: lib/command.php:640 #, fuzzy msgid "No one is subscribed to you." msgstr "Uzaktan abonelik" -#: lib/command.php:639 +#: lib/command.php:642 #, fuzzy -msgid "These people are subscribed to you: " -msgstr "Uzaktan abonelik" +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "Uzaktan abonelik" +msgstr[1] "Uzaktan abonelik" -#: lib/command.php:656 +#: lib/command.php:662 #, fuzzy msgid "You are not a member of any groups." msgstr "Bize o profili yollamadınız" -#: lib/command.php:658 +#: lib/command.php:664 #, fuzzy -msgid "You are a member of these groups: " -msgstr "Bize o profili yollamadınız" +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "Bize o profili yollamadınız" +msgstr[1] "Bize o profili yollamadınız" -#: lib/command.php:670 +#: lib/command.php:678 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -3802,20 +4159,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:192 +#: lib/common.php:203 #, fuzzy msgid "No configuration file found. " msgstr "Onay kodu yok." -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:195 +#: lib/common.php:206 msgid "Go to the installer." msgstr "" @@ -3835,10 +4192,6 @@ msgstr "" msgid "Database error" msgstr "" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" @@ -3849,66 +4202,6 @@ 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:217 -msgid "Text" -msgstr "" - -#: 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:372 msgid "Bad default color settings: " msgstr "" @@ -4148,12 +4441,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:235 +#: lib/mail.php:236 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s %2$s'da durumunuzu takip ediyor" -#: lib/mail.php:240 +#: lib/mail.php:241 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4174,29 +4467,29 @@ msgstr "" "Kendisini durumsuz bırakmayın!,\n" "%4$s.\n" -#: lib/mail.php:253 +#: lib/mail.php:254 #, php-format msgid "Location: %s\n" msgstr "" -#: lib/mail.php:255 +#: lib/mail.php:256 #, php-format msgid "Homepage: %s\n" msgstr "" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4209,21 +4502,21 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "%s durum" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4239,12 +4532,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4263,12 +4556,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:554 +#: lib/mail.php:559 #, 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 +#: lib/mail.php:561 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4289,12 +4582,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4436,7 +4729,11 @@ msgstr "Uzak profil eklemede hata oluştu" msgid "Duplicate notice" msgstr "Yeni durum mesajı" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +msgid "You have been banned from subscribing." +msgstr "" + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Yeni abonelik eklenemedi." @@ -4452,10 +4749,6 @@ msgstr "Cevaplar" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" @@ -4506,6 +4799,15 @@ msgstr "Üyelik başlangıcı" msgid "All groups" msgstr "" +#: lib/profileformaction.php:123 +#, fuzzy +msgid "No return-to arguments" +msgstr "Böyle bir belge yok." + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "Genel" @@ -4527,6 +4829,15 @@ msgstr "" msgid "Popular" msgstr "Kişi Arama" +#: lib/sandboxform.php:67 +msgid "Sandbox" +msgstr "" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Böyle bir kullanıcı yok." + #: lib/searchaction.php:120 #, fuzzy msgid "Search site" @@ -4566,6 +4877,16 @@ msgstr "" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Yeni durum mesajı" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Böyle bir kullanıcı yok." + #: lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" @@ -4595,29 +4916,29 @@ msgstr "" msgid "(none)" msgstr "" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "" -#: lib/subs.php:52 +#: lib/subs.php:56 #, fuzzy msgid "User has blocked you." msgstr "Kullanıcının profili yok." -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "" -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "" -#: lib/subs.php:124 +#: lib/subs.php:128 #, fuzzy msgid "Not subscribed!" msgstr "Bu kullanıcıyı zaten takip etmiyorsunuz!" -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "Abonelik silinemedi." @@ -4629,6 +4950,29 @@ msgstr "" msgid "Top posters" msgstr "" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "Böyle bir kullanıcı yok." + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Böyle bir kullanıcı yok." + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Böyle bir kullanıcı yok." + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "" @@ -4732,3 +5076,7 @@ msgstr "" #: scripts/maildaemon.php:61 msgid "Sorry, no incoming email allowed." msgstr "" + +#, fuzzy +#~ msgid "These people are subscribed to you: " +#~ msgstr "Uzaktan abonelik" diff --git a/locale/uk/LC_MESSAGES/statusnet.mo b/locale/uk/LC_MESSAGES/statusnet.mo index 9cbb4440f35aba2d4e8f646c97ceabfe6101ada4..4cb71655b4188cf9e2837bd47e706bd8a15f09d9 100644 GIT binary patch delta 19941 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 delta 17775 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 diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 2c54591aa5..4db942e5d1 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -5,12 +5,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-16 19:42+0000\n" -"PO-Revision-Date: 2009-11-16 19:44:23+0000\n" +"POT-Creation-Date: 2009-11-18 19:31+0000\n" +"PO-Revision-Date: 2009-11-18 19:32:48+0000\n" "Language-Team: Ukrainian\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\n" +"X-Generator: MediaWiki 1.16alpha(r59207); Translate extension (2009-11-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: out-statusnet\n" @@ -42,7 +42,7 @@ msgstr "Такого тегу немає." #: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 #: lib/command.php:364 lib/command.php:411 lib/command.php:466 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 +#: lib/subs.php:34 lib/subs.php:116 msgid "No such user." msgstr "Такого користувача немає." @@ -145,7 +145,8 @@ msgstr "Не вдалося оновити користувача." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 #: actions/apistatusesupdate.php:127 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: actions/designadminpanel.php:125 actions/newnotice.php:94 +#: lib/designsettings.php:283 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -232,12 +233,12 @@ msgstr "Всі прямі повідомлення надіслані до %s" #: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 #: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigrouplistall.php:120 actions/apigrouplist.php:132 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apigroupmembership.php:106 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/apitimelinegroup.php:147 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!" @@ -378,6 +379,13 @@ msgstr "Це ім'я вже використовується. Спробуйте msgid "Alias can't be the same as nickname." msgstr "" +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#, fuzzy +msgid "Group not found!" +msgstr "API метод не знайдено!" + #: actions/apigroupjoin.php:110 #, fuzzy msgid "You are already a member of that group." @@ -469,13 +477,13 @@ msgstr "%s / Обрані від %s" msgid "%s updates favorited by %s / %s." msgstr "%s оновлення обраних від %s / %s." -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s хронологія" -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -563,7 +571,8 @@ msgstr "Оригінал" msgid "Preview" msgstr "Перегляд" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#: actions/avatarsettings.php:148 lib/deleteuserform.php:66 +#: lib/noticelist.php:522 msgid "Delete" msgstr "Видалити" @@ -575,7 +584,7 @@ msgstr "Завантажити" msgid "Crop" msgstr "Втяти" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/avatarsettings.php:265 actions/disfavor.php:74 #: actions/emailsettings.php:237 actions/favor.php:75 #: actions/groupblock.php:66 actions/grouplogo.php:309 #: actions/groupunblock.php:66 actions/imsettings.php:206 @@ -585,7 +594,7 @@ msgstr "Втяти" #: actions/profilesettings.php:187 actions/recoverpassword.php:337 #: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 +#: actions/tagother.php:166 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 lib/designsettings.php:294 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -653,71 +662,50 @@ msgstr "Список учасників цієї групи." msgid "Unblock user from group" msgstr "Спроба розблокувати користувача невдала." -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" msgstr "Розблокувати" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 msgid "Unblock this user" msgstr "Розблокувати цього користувача" -#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61 -#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87 -#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31 -#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "Не увійшли." +#: actions/block.php:69 +#, fuzzy +msgid "You already blocked that user." +msgstr "Цього користувача вже заблоковано." -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 -msgid "No profile specified." -msgstr "Не визначено жодного профілю." - -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 -msgid "No profile with that ID." -msgstr "Не визначено профілю з таким ID." - -#: actions/block.php:111 actions/block.php:134 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 msgid "Block user" msgstr "Блокувати користувача." -#: actions/block.php:136 +#: actions/block.php:130 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/block.php:149 actions/deletenotice.php:145 -#: actions/groupblock.php:178 +#: actions/block.php:143 actions/deletenotice.php:145 +#: actions/deleteuser.php:147 actions/groupblock.php:178 msgid "No" msgstr "Ні" -#: actions/block.php:149 +#: actions/block.php:143 actions/deleteuser.php:147 #, fuzzy msgid "Do not block this user" msgstr "Розблокувати цього користувача" -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:179 +#: actions/block.php:144 actions/deletenotice.php:146 +#: actions/deleteuser.php:148 actions/groupblock.php:179 msgid "Yes" msgstr "Так" -#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 -#: lib/blockform.php:153 +#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 msgid "Block this user" msgstr "Блокувати користувача" -#: actions/block.php:165 -msgid "You have already blocked this user." -msgstr "Цього користувача вже заблоковано." - -#: actions/block.php:170 +#: actions/block.php:162 msgid "Failed to save block information." msgstr "Збереження інформації про блокування завершилось невдачею." @@ -783,6 +771,15 @@ msgstr "Повідомлення" msgid "No such notice." msgstr "Такого повідомлення немає." +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 +#: actions/unsubscribe.php:52 lib/adminpanelaction.php:72 +#: lib/profileformaction.php:63 lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Не увійшли." + #: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Не можна видалити це повідомлення." @@ -819,6 +816,146 @@ msgid "There was a problem with your session token. Try again, please." msgstr "" "Виникли певні проблеми з токеном поточної сесії. Спробуйте знов, будь ласка." +#: actions/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "Не вдалося оновити користувача." + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "Ви не можете видалити статус іншого користувача." + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +#, fuzzy +msgid "Delete user" +msgstr "Видалити" + +#: actions/deleteuser.php:135 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "Видалити повідомлення" + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/adminpanelaction.php:275 lib/groupnav.php:119 +msgid "Design" +msgstr "" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "" + +#: actions/designadminpanel.php:220 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "Не маю можливості зберегти ваші налаштування Твіттера!" + +#: actions/designadminpanel.php:301 +#, fuzzy, php-format +msgid "Theme not available: %s" +msgstr "Ця сторінка не доступна в " + +#: actions/designadminpanel.php:406 +#, fuzzy +msgid "Change theme" +msgstr "Змінити" + +#: actions/designadminpanel.php:410 +msgid "Theme" +msgstr "" + +#: actions/designadminpanel.php:411 +#, fuzzy +msgid "Theme for the site." +msgstr "Вийти з сайту" + +#: actions/designadminpanel.php:420 lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: actions/designadminpanel.php:424 actions/designadminpanel.php:498 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: actions/designadminpanel.php:429 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "Ви маєте можливість завантажити логотип для вашої группи." + +#: actions/designadminpanel.php:459 lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: actions/designadminpanel.php:475 lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: actions/designadminpanel.php:476 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: actions/designadminpanel.php:481 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: actions/designadminpanel.php:490 lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Змінити ваш пароль" + +#: actions/designadminpanel.php:511 lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "З'єднання" + +#: actions/designadminpanel.php:524 lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Пошук" + +#: actions/designadminpanel.php:537 lib/designsettings.php:217 +msgid "Text" +msgstr "Текст" + +#: actions/designadminpanel.php:550 lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Увійти" + +#: actions/designadminpanel.php:611 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: actions/designadminpanel.php:612 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: actions/designadminpanel.php:618 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: actions/designadminpanel.php:620 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/siteadminpanel.php:371 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 actions/useradminpanel.php:226 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Зберегти" + +#: actions/designadminpanel.php:621 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "Це повідомлення не є обраним!" @@ -963,14 +1100,6 @@ msgstr "Я хочу надсилати повідомлення поштою." msgid "Publish a MicroID for my email address." msgstr "Позначати міткою MicroID мою електронну адресу." -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Зберегти" - #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." @@ -984,7 +1113,7 @@ msgstr "Немає електронної адреси." msgid "Cannot normalize that email address" msgstr "Не можна полагодити цю поштову адресу" -#: actions/emailsettings.php:330 +#: actions/emailsettings.php:330 actions/siteadminpanel.php:156 msgid "Not a valid email address" msgstr "Це недійсна електронна адреса" @@ -1185,6 +1314,18 @@ msgstr "Такого повідомлення немає." msgid "Cannot read file." msgstr "Файл втрачено." +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +msgid "No profile specified." +msgstr "Не визначено жодного профілю." + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: lib/profileformaction.php:77 +msgid "No profile with that ID." +msgstr "Не визначено профілю з таким ID." + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 #, fuzzy @@ -1307,11 +1448,11 @@ msgstr "Учасники групи %s, сторінка %d" msgid "A list of the users in this group." msgstr "Список учасників цієї групи." -#: actions/groupmembers.php:175 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:439 lib/groupnav.php:107 msgid "Admin" msgstr "Адмін" -#: actions/groupmembers.php:346 lib/blockform.php:153 +#: actions/groupmembers.php:346 lib/blockform.php:69 msgid "Block" msgstr "Блок" @@ -1401,7 +1542,7 @@ msgstr "" msgid "User is not blocked from group." msgstr "Користувач заблокував вас." -#: actions/groupunblock.php:128 actions/unblock.php:108 +#: actions/groupunblock.php:128 actions/unblock.php:77 msgid "Error removing the block." msgstr "Помилка при розблокуванні." @@ -1716,7 +1857,7 @@ msgstr "Неточне ім'я або пароль." msgid "Error setting user." msgstr "Помилка в налаштуваннях користувача." -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: actions/login.php:204 actions/login.php:257 lib/action.php:457 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Увійти" @@ -2149,7 +2290,7 @@ msgstr "" "Позначте себе тегами (літери, цифри, -, . та _), відокремлюючи кожен комою " "або пробілом" -#: actions/profilesettings.php:144 +#: actions/profilesettings.php:144 actions/siteadminpanel.php:275 msgid "Language" msgstr "Мова" @@ -2177,7 +2318,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "Ви перевищили ліміт (140 знаків це максимум)" -#: actions/profilesettings.php:228 +#: actions/profilesettings.php:228 actions/siteadminpanel.php:163 msgid "Timezone not selected." msgstr "Часовий пояс не обрано." @@ -2202,7 +2343,7 @@ msgstr "Не вдалося зберегти профіль." msgid "Couldn't save tags." msgstr "Не вдалося зберегти теги." -#: actions/profilesettings.php:344 +#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 msgid "Settings saved." msgstr "Налаштування збережено." @@ -2441,7 +2582,7 @@ msgstr "Помилка з кодом підтвердження." msgid "Registration successful" msgstr "Реєстрація успішна" -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: actions/register.php:114 actions/register.php:502 lib/action.php:454 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Реєстрація" @@ -2487,7 +2628,7 @@ msgid "Same as password above. Required." msgstr "Такий само, як і пароль вище. Неодмінно." #: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:253 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Пошта" @@ -2595,7 +2736,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "URL-адреса вашого профілю на іншому сумісному сервісі" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 +#: lib/userprofile.php:356 msgid "Subscribe" msgstr "Підписатись" @@ -2671,6 +2812,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "Повідомлення до %1$s на %2$s" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "Ви не можете надіслати повідомлення цьому користувачеві." + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "Користувач заблокував вас." + #: actions/showfavorites.php:79 #, fuzzy, php-format msgid "%s's favorite notices, page %d" @@ -2916,6 +3067,145 @@ msgstr "" "**%s** є власником рахунку на сайті %%%%site.name%%%% - сервісі " "[мікроблогів] (http://en.wikipedia.org/wiki/Micro-blogging) " +#: actions/silence.php:65 actions/unsilence.php:65 +#, fuzzy +msgid "You cannot silence users on this site." +msgstr "Ви не можете надіслати повідомлення цьому користувачеві." + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "Користувач заблокував вас." + +#: actions/siteadminpanel.php:58 lib/adminpanelaction.php:272 +#, fuzzy +msgid "Site" +msgstr "Запросити" + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site." +msgstr "" + +#: actions/siteadminpanel.php:145 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:153 +#, fuzzy +msgid "You must have a valid contact email address" +msgstr "Це недійсна електронна адреса" + +#: actions/siteadminpanel.php:171 +#, php-format +msgid "Unknown language \"%s\"" +msgstr "" + +#: actions/siteadminpanel.php:178 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/siteadminpanel.php:184 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/siteadminpanel.php:190 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/siteadminpanel.php:241 +#, fuzzy +msgid "Site name" +msgstr "Зауваження сайту" + +#: actions/siteadminpanel.php:242 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:246 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:249 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:250 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:254 +#, fuzzy +msgid "contact email address for your site" +msgstr "Нова електронна адреса для надсилання повідомлень на %s" + +#: actions/siteadminpanel.php:268 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:269 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:276 +#, fuzzy +msgid "Default site language" +msgstr "Мова, якій надаєте перевагу" + +#: actions/siteadminpanel.php:282 +#, fuzzy +msgid "Private" +msgstr "Конфіденційність" + +#: actions/siteadminpanel.php:284 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/siteadminpanel.php:290 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/siteadminpanel.php:291 +msgid "In a scheduled job" +msgstr "" + +#: actions/siteadminpanel.php:292 +#, fuzzy +msgid "Never" +msgstr "Відновити" + +#: actions/siteadminpanel.php:294 +msgid "Data snapshots" +msgstr "" + +#: actions/siteadminpanel.php:295 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/siteadminpanel.php:301 +msgid "Frequency" +msgstr "" + +#: actions/siteadminpanel.php:302 +msgid "Snapshots will be sent once every N Web hits" +msgstr "" + +#: actions/siteadminpanel.php:309 +msgid "Report URL" +msgstr "" + +#: actions/siteadminpanel.php:310 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/siteadminpanel.php:371 actions/useradminpanel.php:226 +#, fuzzy +msgid "Save site settings" +msgstr "Налаштування аватари" + #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "Налаштування СМС" @@ -3188,6 +3478,21 @@ msgstr "Такого тегу немає." msgid "API method under construction." msgstr "API метод наразі знаходиться у розробці." +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "Цього користувача вже заблоковано." + +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "Користувач заблокував вас." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "Користувач не має профілю." + #: actions/unsubscribe.php:77 msgid "No profile id in request." msgstr "У запиті відсутній ID профілю." @@ -3205,6 +3510,32 @@ msgstr "Відписано" msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" +#: actions/useradminpanel.php:58 lib/personalgroupnav.php:115 +msgid "User" +msgstr "Користувач" + +#: actions/useradminpanel.php:69 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:171 +#, fuzzy +msgid "Closed" +msgstr "Блок" + +#: actions/useradminpanel.php:173 +msgid "Is registration on this site prohibited?" +msgstr "" + +#: actions/useradminpanel.php:178 +#, fuzzy +msgid "Invite-only" +msgstr "Запросити" + +#: actions/useradminpanel.php:180 +msgid "Is registration on this site only open to invited users?" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Авторизувати підписку" @@ -3368,11 +3699,16 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: classes/Message.php:55 +#: classes/Message.php:45 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "Помилка при відправці прямого повідомлення." + +#: classes/Message.php:61 msgid "Could not insert message." msgstr "Не можна долучити повідомлення." -#: classes/Message.php:65 +#: classes/Message.php:71 msgid "Could not update message with new URI." msgstr "Не можна оновити повідомлення з новим URI." @@ -3406,15 +3742,15 @@ msgstr "" "Дуже багато повідомлень за короткий термін; відпочиньте трошки і " "повертайтесь за кілька хвилин." -#: classes/Notice.php:202 +#: classes/Notice.php:200 msgid "You are banned from posting notices on this site." msgstr "Вам заборонено надсилати дописи до цього сайту." -#: classes/Notice.php:268 classes/Notice.php:293 +#: classes/Notice.php:265 classes/Notice.php:290 msgid "Problem saving notice." msgstr "Проблема при збереженні повідомлення." -#: classes/Notice.php:1120 +#: classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "Помилка бази даних при додаванні відповіді: %s" @@ -3444,10 +3780,6 @@ msgstr "Змінити ваш пароль" msgid "Change email handling" msgstr "Змінити електронну адресу вручну" -#: lib/accountsettingsaction.php:124 lib/groupnav.php:119 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:124 #, fuzzy msgid "Design your profile" @@ -3499,97 +3831,102 @@ msgstr "З'єднання" msgid "Connect to services" msgstr "Невдале перенаправлення на сервер: %s" -#: lib/action.php:439 lib/subgroupnav.php:105 +#: lib/action.php:439 +#, fuzzy +msgid "Change site configuration" +msgstr "Відправна навігація по сайту" + +#: lib/action.php:443 lib/subgroupnav.php:105 msgid "Invite" msgstr "Запросити" -#: lib/action.php:440 lib/subgroupnav.php:106 +#: lib/action.php:444 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "Запросіть друзів та колег приєднатись до вас на %s" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout" msgstr "Вийти" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout from the site" msgstr "Вийти з сайту" -#: lib/action.php:450 +#: lib/action.php:454 msgid "Create an account" msgstr "Створити новий рахунок" -#: lib/action.php:453 +#: lib/action.php:457 msgid "Login to the site" msgstr "Увійти на сайт" -#: lib/action.php:456 lib/action.php:719 +#: lib/action.php:460 lib/action.php:723 msgid "Help" msgstr "Допомога" -#: lib/action.php:456 +#: lib/action.php:460 msgid "Help me!" msgstr "Допоможіть!" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search" msgstr "Пошук" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search for people or text" msgstr "Пошук людей або текстів" -#: lib/action.php:480 +#: lib/action.php:484 msgid "Site notice" msgstr "Зауваження сайту" -#: lib/action.php:546 +#: lib/action.php:550 msgid "Local views" msgstr "Огляд" -#: lib/action.php:612 +#: lib/action.php:616 msgid "Page notice" msgstr "Зауваження сторінки" -#: lib/action.php:714 +#: lib/action.php:718 msgid "Secondary site navigation" msgstr "Другорядна навігація по сайту" -#: lib/action.php:721 +#: lib/action.php:725 msgid "About" msgstr "Про" -#: lib/action.php:723 +#: lib/action.php:727 msgid "FAQ" msgstr "ЧаПи" -#: lib/action.php:727 +#: lib/action.php:731 msgid "TOS" msgstr "" -#: lib/action.php:730 +#: lib/action.php:734 msgid "Privacy" msgstr "Конфіденційність" -#: lib/action.php:732 +#: lib/action.php:736 msgid "Source" msgstr "Джерело" -#: lib/action.php:734 +#: lib/action.php:738 msgid "Contact" msgstr "Контакт" -#: lib/action.php:736 +#: lib/action.php:740 #, fuzzy msgid "Badge" msgstr "\"Розштовхати\"" -#: lib/action.php:764 +#: lib/action.php:768 msgid "StatusNet software license" msgstr "Ліцензія StatusNet software" -#: lib/action.php:767 +#: lib/action.php:771 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3598,12 +3935,12 @@ msgstr "" "**%%site.name%%** це сервіс мікроблогів наданий вам [%%site.broughtby%%](%%" "site.broughtbyurl%%). " -#: lib/action.php:769 +#: lib/action.php:773 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** це сервіс мікроблогів. " -#: lib/action.php:771 +#: lib/action.php:775 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3614,35 +3951,60 @@ msgstr "" "для мікроблогів, версія %s, доступному під [GNU Affero General Public " "License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)." -#: lib/action.php:785 +#: lib/action.php:789 #, fuzzy msgid "Site content license" msgstr "Ліцензія StatusNet software" -#: lib/action.php:794 +#: lib/action.php:798 msgid "All " msgstr "Всі " -#: lib/action.php:799 +#: lib/action.php:803 msgid "license." msgstr "ліцензія." -#: lib/action.php:1052 +#: lib/action.php:1067 msgid "Pagination" msgstr "Нумерація сторінок" -#: lib/action.php:1061 +#: lib/action.php:1076 msgid "After" msgstr "Вперед" -#: lib/action.php:1069 +#: lib/action.php:1084 msgid "Before" msgstr "Назад" -#: lib/action.php:1117 +#: lib/action.php:1132 msgid "There was a problem with your session token." msgstr "Виникли певні проблеми з токеном поточної сесії." +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "Ви не можете надіслати повідомлення цьому користувачеві." + +#: lib/adminpanelaction.php:195 +#, fuzzy +msgid "showForm() not implemented." +msgstr "Виконання команди ще не завершено." + +#: lib/adminpanelaction.php:224 +#, fuzzy +msgid "saveSettings() not implemented." +msgstr "Виконання команди ще не завершено." + +#: lib/adminpanelaction.php:273 +#, fuzzy +msgid "Basic site configuration" +msgstr "Підтвердження електронної адреси" + +#: lib/adminpanelaction.php:276 +#, fuzzy +msgid "Design configuration" +msgstr "Підтвердження СМС" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -3818,30 +4180,36 @@ msgstr "Ви не підписані до цього профілю." #: lib/command.php:620 #, fuzzy -msgid "You are subscribed to these people: " -msgstr "Ви не підписані до цього профілю." +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "Ви не підписані до цього профілю." +msgstr[1] "Ви не підписані до цього профілю." -#: lib/command.php:637 +#: lib/command.php:640 #, fuzzy msgid "No one is subscribed to you." msgstr "Не вдалося підписати іншого до вас." -#: lib/command.php:639 +#: lib/command.php:642 #, fuzzy -msgid "These people are subscribed to you: " -msgstr "Люди підписані до %s" +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "Не вдалося підписати іншого до вас." +msgstr[1] "Не вдалося підписати іншого до вас." -#: lib/command.php:656 +#: lib/command.php:662 #, fuzzy msgid "You are not a member of any groups." msgstr "Ви не є учасником цієї групи." -#: lib/command.php:658 +#: lib/command.php:664 #, fuzzy -msgid "You are a member of these groups: " -msgstr "Ви не є учасником цієї групи." +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "Ви не є учасником цієї групи." +msgstr[1] "Ви не є учасником цієї групи." -#: lib/command.php:670 +#: lib/command.php:678 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -3880,20 +4248,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:192 +#: lib/common.php:203 #, fuzzy msgid "No configuration file found. " msgstr "Немає коду підтвердження." -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:195 +#: lib/common.php:206 #, fuzzy msgid "Go to the installer." msgstr "Увійти на сайт" @@ -3914,10 +4282,6 @@ msgstr "Оновлення через SMS" msgid "Database error" msgstr "" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" @@ -3928,66 +4292,6 @@ 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:217 -msgid "Text" -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:372 msgid "Bad default color settings: " msgstr "" @@ -4218,12 +4522,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:235 +#: lib/mail.php:236 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s тепер слідкує за вашими повідомленями на %2$s." -#: lib/mail.php:240 +#: lib/mail.php:241 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4244,17 +4548,17 @@ msgstr "" "Щиро ваші,\n" "%4$s.\n" -#: lib/mail.php:253 +#: lib/mail.php:254 #, php-format msgid "Location: %s\n" msgstr "Локація: %s\n" -#: lib/mail.php:255 +#: lib/mail.php:256 #, php-format msgid "Homepage: %s\n" msgstr "Веб-сторінка: %s\n" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" @@ -4263,12 +4567,12 @@ msgstr "" "Про себе: %s\n" "\n" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "Нова електронна адреса для надсилання повідомлень на %s" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4289,21 +4593,21 @@ msgstr "" "Щиро ваші,\n" "%4$s" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "%s статус" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "Підтвердження СМС" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "Вас спробував \"розштовхати\" %s" -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4319,12 +4623,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "Нове приватне повідомлення від %s" -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4343,12 +4647,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:554 +#: lib/mail.php:559 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s додав(ла) ваше повідомлення до обраних" -#: lib/mail.php:556 +#: lib/mail.php:561 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4369,12 +4673,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4512,7 +4816,12 @@ msgstr "Помилка при додаванні віддаленого проф msgid "Duplicate notice" msgstr "Видалити повідомлення" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "Цей користувач заблокував вашу можливість підписатись." + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Не вдалося додати нову підписку." @@ -4528,10 +4837,6 @@ msgstr "Відповіді" msgid "Favorites" msgstr "Обрані" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "Користувач" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Вхідні" @@ -4582,6 +4887,15 @@ msgstr "З нами від" msgid "All groups" msgstr "Всі групи" +#: lib/profileformaction.php:123 +#, fuzzy +msgid "No return-to arguments" +msgstr "Немає аргументу ID." + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "Загал" @@ -4602,6 +4916,16 @@ msgstr "Постаті" msgid "Popular" msgstr "Популярне" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "Вхідні" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Розблокувати цього користувача" + #: lib/searchaction.php:120 #, fuzzy msgid "Search site" @@ -4640,6 +4964,16 @@ msgstr "Розділ без заголовку" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Зауваження сайту" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Блокувати користувача" + #: lib/subgroupnav.php:83 #, php-format msgid "People %s subscribes to" @@ -4669,28 +5003,28 @@ msgstr "" msgid "(none)" msgstr "(пусто)" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "" -#: lib/subs.php:52 +#: lib/subs.php:56 msgid "User has blocked you." msgstr "Користувач заблокував вас." -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "Невдала підписка." -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "Не вдалося підписати іншого до вас." -#: lib/subs.php:124 +#: lib/subs.php:128 #, fuzzy msgid "Not subscribed!" msgstr "Не підписано!." -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "Не вдалося видалити підписку." @@ -4702,6 +5036,29 @@ msgstr "Пусто" msgid "Top posters" msgstr "Топ дописувачів" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "Розблокувати цього користувача" + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Розблокувати цього користувача" + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Розблокувати цього користувача" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Відписатись від цього користувача" @@ -4806,3 +5163,7 @@ msgstr "Вибачте, але це не є вашою електронною а msgid "Sorry, no incoming email allowed." msgstr "" "Вибачте, але не затверджено жодної електронної адреси для вхідної пошти." + +#, fuzzy +#~ msgid "These people are subscribed to you: " +#~ msgstr "Люди підписані до %s" diff --git a/locale/vi/LC_MESSAGES/statusnet.mo b/locale/vi/LC_MESSAGES/statusnet.mo index 0480dfd01728d57fd9f49ac3ec0806ac7b3e1604..2c799667d01f8bda18250a1ba3a4e621c09a68ac 100644 GIT binary patch delta 17494 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 U%d{}pS(kV4k#ZS*v$@9oAF`z7p8x;= delta 15621 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 XR!E9Jhc8{~?>T&Dd?^od`NsVp;r8%E diff --git a/locale/vi/LC_MESSAGES/statusnet.po b/locale/vi/LC_MESSAGES/statusnet.po index c0616649e7..94b4c9be6b 100644 --- a/locale/vi/LC_MESSAGES/statusnet.po +++ b/locale/vi/LC_MESSAGES/statusnet.po @@ -5,12 +5,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-16 19:42+0000\n" -"PO-Revision-Date: 2009-11-16 19:44:26+0000\n" +"POT-Creation-Date: 2009-11-18 19:31+0000\n" +"PO-Revision-Date: 2009-11-18 19:32:50+0000\n" "Language-Team: Vietnamese\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.16alpha(r59142); Translate extension (2009-11-13)\n" +"X-Generator: MediaWiki 1.16alpha(r59207); Translate extension (2009-11-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: vi\n" "X-Message-Group: out-statusnet\n" @@ -42,7 +42,7 @@ msgstr "Không có tin nhắn nào." #: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 #: lib/command.php:364 lib/command.php:411 lib/command.php:466 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 +#: lib/subs.php:34 lib/subs.php:116 msgid "No such user." msgstr "Không có user nào." @@ -145,7 +145,8 @@ msgstr "Không thể cập nhật thành viên." #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 #: actions/apistatusesupdate.php:127 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: actions/designadminpanel.php:125 actions/newnotice.php:94 +#: lib/designsettings.php:283 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -233,12 +234,12 @@ msgstr "" #: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 #: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigrouplistall.php:120 actions/apigrouplist.php:132 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apigroupmembership.php:106 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/apitimelinegroup.php:147 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!" @@ -381,6 +382,13 @@ msgstr "Biệt hiệu này đã dùng rồi. Hãy nhập biệt hiệu khác." msgid "Alias can't be the same as nickname." msgstr "" +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#, fuzzy +msgid "Group not found!" +msgstr "Phương thức API không tìm thấy!" + #: actions/apigroupjoin.php:110 #, fuzzy msgid "You are already a member of that group." @@ -472,13 +480,13 @@ msgstr "Tìm kiếm các tin nhắn ưa thích của %s" msgid "%s updates favorited by %s / %s." msgstr "Tất cả các cập nhật của %s" -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/apitimelinegroup.php:108 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/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -570,7 +578,8 @@ msgstr "" msgid "Preview" msgstr "Xem trước" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#: actions/avatarsettings.php:148 lib/deleteuserform.php:66 +#: lib/noticelist.php:522 #, fuzzy msgid "Delete" msgstr "Xóa tin nhắn" @@ -584,7 +593,7 @@ msgstr "Tải file" msgid "Crop" msgstr "Nhóm" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/avatarsettings.php:265 actions/disfavor.php:74 #: actions/emailsettings.php:237 actions/favor.php:75 #: actions/groupblock.php:66 actions/grouplogo.php:309 #: actions/groupunblock.php:66 actions/imsettings.php:206 @@ -594,7 +603,7 @@ msgstr "Nhóm" #: actions/profilesettings.php:187 actions/recoverpassword.php:337 #: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 +#: actions/tagother.php:166 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 lib/designsettings.php:294 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." @@ -662,75 +671,52 @@ msgstr "" msgid "Unblock user from group" msgstr "Bỏ chặn người dùng này" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" msgstr "Bỏ chặn" -#: actions/blockedfromgroup.php:313 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" -#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61 -#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87 -#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31 -#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "Chưa đăng nhập." - -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 -msgid "No profile specified." -msgstr "" - -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 +#: actions/block.php:69 #, 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 đó." +msgid "You already blocked that user." +msgstr "Bạn đã theo những người này:" -#: actions/block.php:111 actions/block.php:134 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 #, fuzzy msgid "Block user" msgstr "Ban user" -#: actions/block.php:136 +#: actions/block.php:130 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/block.php:149 actions/deletenotice.php:145 -#: actions/groupblock.php:178 +#: actions/block.php:143 actions/deletenotice.php:145 +#: actions/deleteuser.php:147 actions/groupblock.php:178 msgid "No" msgstr "Không" -#: actions/block.php:149 +#: actions/block.php:143 actions/deleteuser.php:147 #, fuzzy msgid "Do not block this user" msgstr "Bỏ chặn người dùng này" -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:179 +#: actions/block.php:144 actions/deletenotice.php:146 +#: actions/deleteuser.php:148 actions/groupblock.php:179 msgid "Yes" msgstr "Có" -#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 -#: lib/blockform.php:153 +#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "Ban user" -#: 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:170 +#: actions/block.php:162 msgid "Failed to save block information." msgstr "" @@ -795,6 +781,15 @@ msgstr "Tin nhắn" msgid "No such notice." msgstr "Không có tin nhắn nào." +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 +#: actions/unsubscribe.php:52 lib/adminpanelaction.php:72 +#: lib/profileformaction.php:63 lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "Chưa đăng nhập." + #: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "Không thể xóa tin nhắn này." @@ -829,6 +824,151 @@ msgstr "Xóa tin nhắn" 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/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "Không thể cập nhật thành viên." + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "Bạn đã không xóa trạng thái của những người khác." + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +#, fuzzy +msgid "Delete user" +msgstr "Xóa tin nhắn" + +#: actions/deleteuser.php:135 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "Xóa tin nhắn" + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/adminpanelaction.php:275 lib/groupnav.php:119 +msgid "Design" +msgstr "" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "" + +#: actions/designadminpanel.php:220 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "Không thể lưu thông tin Twitter của bạn!" + +#: actions/designadminpanel.php:301 +#, fuzzy, php-format +msgid "Theme not available: %s" +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/designadminpanel.php:406 +#, fuzzy +msgid "Change theme" +msgstr "Thay đổi" + +#: actions/designadminpanel.php:410 +msgid "Theme" +msgstr "" + +#: actions/designadminpanel.php:411 +msgid "Theme for the site." +msgstr "" + +#: actions/designadminpanel.php:420 lib/designsettings.php:101 +#, fuzzy +msgid "Change background image" +msgstr "Background Theme:" + +#: actions/designadminpanel.php:424 actions/designadminpanel.php:498 +#: lib/designsettings.php:178 +#, fuzzy +msgid "Background" +msgstr "Background Theme:" + +#: actions/designadminpanel.php:429 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$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/designadminpanel.php:459 lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: actions/designadminpanel.php:475 lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: actions/designadminpanel.php:476 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: actions/designadminpanel.php:481 lib/designsettings.php:161 +#, fuzzy +msgid "Tile background image" +msgstr "Background Theme:" + +#: actions/designadminpanel.php:490 lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "Thay đổi mật khẩu của bạn" + +#: actions/designadminpanel.php:511 lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "Kết nối" + +#: actions/designadminpanel.php:524 lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "Tìm kiếm" + +#: actions/designadminpanel.php:537 lib/designsettings.php:217 +msgid "Text" +msgstr "Chuỗi bất kỳ" + +#: actions/designadminpanel.php:550 lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "Đăng nhập" + +#: actions/designadminpanel.php:611 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: actions/designadminpanel.php:612 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: actions/designadminpanel.php:618 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: actions/designadminpanel.php:620 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/siteadminpanel.php:371 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 actions/useradminpanel.php:226 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "Lưu" + +#: actions/designadminpanel.php:621 lib/designsettings.php:257 +#, fuzzy +msgid "Save design" +msgstr "Lưu" + #: actions/disfavor.php:81 #, fuzzy msgid "This notice is not a favorite!" @@ -982,14 +1122,6 @@ msgstr "Tôi muốn đưa tin nhắn lên bằng email." msgid "Publish a MicroID for my email address." msgstr "Xuất bản một MicroID đến địa chỉ email của tôi." -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "Lưu" - #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." @@ -1004,7 +1136,7 @@ msgstr "Không có địa chỉ email." msgid "Cannot normalize that email address" msgstr "Không thể bình thường hóa địa chỉ GTalk này" -#: actions/emailsettings.php:330 +#: actions/emailsettings.php:330 actions/siteadminpanel.php:156 #, fuzzy msgid "Not a valid email address" msgstr "Địa chỉ email không hợp lệ." @@ -1216,6 +1348,19 @@ msgstr "Không có tin nhắn nào." msgid "Cannot read file." msgstr "Không có tin nhắn nào." +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +msgid "No profile specified." +msgstr "" + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: lib/profileformaction.php:77 +#, 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/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 msgid "No group specified." @@ -1339,11 +1484,11 @@ msgstr "" msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:439 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:346 lib/blockform.php:153 +#: actions/groupmembers.php:346 lib/blockform.php:69 msgid "Block" msgstr "" @@ -1435,7 +1580,7 @@ msgstr "" msgid "User is not blocked from group." msgstr "Người dùng không có thông tin." -#: actions/groupunblock.php:128 actions/unblock.php:108 +#: actions/groupunblock.php:128 actions/unblock.php:77 #, fuzzy msgid "Error removing the block." msgstr "Lỗi xảy ra khi lưu thành viên." @@ -1752,7 +1897,7 @@ msgstr "Sai tên đăng nhập hoặc mật khẩu." msgid "Error setting user." msgstr "Lỗi xảy ra khi tạo thành viên." -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: actions/login.php:204 actions/login.php:257 lib/action.php:457 #: lib/logingroupnav.php:79 msgid "Login" msgstr "Đăng nhập" @@ -2189,7 +2334,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:144 +#: actions/profilesettings.php:144 actions/siteadminpanel.php:275 msgid "Language" msgstr "Ngôn ngữ" @@ -2215,7 +2360,7 @@ msgstr "Tự động theo những người nào đăng ký theo tôi" msgid "Bio is too long (max %d chars)." msgstr "Lý lịch quá dài (không quá 140 ký tự)" -#: actions/profilesettings.php:228 +#: actions/profilesettings.php:228 actions/siteadminpanel.php:163 msgid "Timezone not selected." msgstr "" @@ -2243,7 +2388,7 @@ msgstr "Không thể lưu hồ sơ cá nhân." msgid "Couldn't save tags." msgstr "Không thể lưu hồ sơ cá nhân." -#: actions/profilesettings.php:344 +#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 msgid "Settings saved." msgstr "Đã lưu các điều chỉnh." @@ -2481,7 +2626,7 @@ msgstr "Lỗi xảy ra với mã xác nhận." msgid "Registration successful" msgstr "Đăng ký thành công" -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: actions/register.php:114 actions/register.php:502 lib/action.php:454 #: lib/logingroupnav.php:85 msgid "Register" msgstr "Đăng ký" @@ -2528,7 +2673,7 @@ msgid "Same as password above. Required." msgstr "Cùng mật khẩu ở trên. Bắt buộc." #: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:253 lib/accountsettingsaction.php:120 msgid "Email" msgstr "Email" @@ -2632,7 +2777,7 @@ 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" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 +#: lib/userprofile.php:356 msgid "Subscribe" msgstr "Theo bạn này" @@ -2707,6 +2852,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "%s chào mừng bạn " +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "Bạn đã theo những người này:" + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "Người dùng không có thông tin." + #: actions/showfavorites.php:79 #, fuzzy, php-format msgid "%s's favorite notices, page %d" @@ -2952,6 +3107,145 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" +#: actions/silence.php:65 actions/unsilence.php:65 +#, fuzzy +msgid "You cannot silence users on this site." +msgstr "Bạn đã theo những người này:" + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "Người dùng không có thông tin." + +#: actions/siteadminpanel.php:58 lib/adminpanelaction.php:272 +#, fuzzy +msgid "Site" +msgstr "Thư mời" + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site." +msgstr "" + +#: actions/siteadminpanel.php:145 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:153 +#, fuzzy +msgid "You must have a valid contact email address" +msgstr "Địa chỉ email không hợp lệ." + +#: actions/siteadminpanel.php:171 +#, php-format +msgid "Unknown language \"%s\"" +msgstr "" + +#: actions/siteadminpanel.php:178 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/siteadminpanel.php:184 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/siteadminpanel.php:190 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/siteadminpanel.php:241 +#, fuzzy +msgid "Site name" +msgstr "Thông báo mới" + +#: actions/siteadminpanel.php:242 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:246 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:249 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:250 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:254 +#, fuzzy +msgid "contact email address for your site" +msgstr "Dia chi email moi de gui tin nhan den %s" + +#: actions/siteadminpanel.php:268 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:269 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:276 +#, fuzzy +msgid "Default site language" +msgstr "Ngôn ngữ bạn thích" + +#: actions/siteadminpanel.php:282 +#, fuzzy +msgid "Private" +msgstr "Riêng tư" + +#: actions/siteadminpanel.php:284 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/siteadminpanel.php:290 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/siteadminpanel.php:291 +msgid "In a scheduled job" +msgstr "" + +#: actions/siteadminpanel.php:292 +#, fuzzy +msgid "Never" +msgstr "Khôi phục" + +#: actions/siteadminpanel.php:294 +msgid "Data snapshots" +msgstr "" + +#: actions/siteadminpanel.php:295 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/siteadminpanel.php:301 +msgid "Frequency" +msgstr "" + +#: actions/siteadminpanel.php:302 +msgid "Snapshots will be sent once every N Web hits" +msgstr "" + +#: actions/siteadminpanel.php:309 +msgid "Report URL" +msgstr "" + +#: actions/siteadminpanel.php:310 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/siteadminpanel.php:371 actions/useradminpanel.php:226 +#, fuzzy +msgid "Save site settings" +msgstr "Thay đổi hình đại diện" + #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "Thiết lập SMS" @@ -3238,6 +3532,21 @@ msgstr "Không có tin nhắn nào." msgid "API method under construction." msgstr "Phương thức API dưới cấu trúc có sẵn." +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "Bạn đã theo những người này:" + +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "Người dùng không có thông tin." + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "Người dùng không có thông tin." + #: actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." @@ -3258,6 +3567,32 @@ msgstr "Hết theo" msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" +#: actions/useradminpanel.php:58 lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + +#: actions/useradminpanel.php:69 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:171 +#, fuzzy +msgid "Closed" +msgstr "Ban user" + +#: actions/useradminpanel.php:173 +msgid "Is registration on this site prohibited?" +msgstr "" + +#: actions/useradminpanel.php:178 +#, fuzzy +msgid "Invite-only" +msgstr "Thư mời" + +#: actions/useradminpanel.php:180 +msgid "Is registration on this site only open to invited users?" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "Đăng nhận cho phép" @@ -3419,12 +3754,17 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: classes/Message.php:55 +#: classes/Message.php:45 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "Thư bạn đã gửi" + +#: classes/Message.php:61 #, fuzzy msgid "Could not insert message." msgstr "Không thể chèn thêm vào đăng nhận." -#: classes/Message.php:65 +#: classes/Message.php:71 #, 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." @@ -3455,15 +3795,15 @@ msgid "" "few minutes." msgstr "" -#: classes/Notice.php:202 +#: classes/Notice.php:200 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:268 classes/Notice.php:293 +#: classes/Notice.php:265 classes/Notice.php:290 msgid "Problem saving notice." msgstr "Có lỗi xảy ra khi lưu tin nhắn." -#: classes/Notice.php:1120 +#: 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" @@ -3494,10 +3834,6 @@ msgstr "Thay đổi mật khẩu của bạn" msgid "Change email handling" msgstr "Đang thực hiện việc thay đổi email" -#: lib/accountsettingsaction.php:124 lib/groupnav.php:119 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:124 #, fuzzy msgid "Design your profile" @@ -3552,104 +3888,109 @@ msgstr "Kết nối" msgid "Connect to services" msgstr "Không thể chuyển đến máy chủ: %s" -#: lib/action.php:439 lib/subgroupnav.php:105 +#: lib/action.php:439 +#, fuzzy +msgid "Change site configuration" +msgstr "Tôi theo" + +#: lib/action.php:443 lib/subgroupnav.php:105 msgid "Invite" msgstr "Thư mời" -#: lib/action.php:440 lib/subgroupnav.php:106 +#: lib/action.php:444 lib/subgroupnav.php:106 #, 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/action.php:445 +#: lib/action.php:449 msgid "Logout" msgstr "Thoát" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout from the site" msgstr "" -#: lib/action.php:450 +#: lib/action.php:454 #, fuzzy msgid "Create an account" msgstr "Tạo tài khoản mới" -#: lib/action.php:453 +#: lib/action.php:457 msgid "Login to the site" msgstr "" -#: lib/action.php:456 lib/action.php:719 +#: lib/action.php:460 lib/action.php:723 msgid "Help" msgstr "Hướng dẫn" -#: lib/action.php:456 +#: lib/action.php:460 #, fuzzy msgid "Help me!" msgstr "Hướng dẫn" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search" msgstr "Tìm kiếm" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search for people or text" msgstr "" -#: lib/action.php:480 +#: lib/action.php:484 #, fuzzy msgid "Site notice" msgstr "Thông báo mới" -#: lib/action.php:546 +#: lib/action.php:550 msgid "Local views" msgstr "" -#: lib/action.php:612 +#: lib/action.php:616 #, fuzzy msgid "Page notice" msgstr "Thông báo mới" -#: lib/action.php:714 +#: lib/action.php:718 #, fuzzy msgid "Secondary site navigation" msgstr "Tôi theo" -#: lib/action.php:721 +#: lib/action.php:725 msgid "About" msgstr "Giới thiệu" -#: lib/action.php:723 +#: lib/action.php:727 msgid "FAQ" msgstr "FAQ" -#: lib/action.php:727 +#: lib/action.php:731 msgid "TOS" msgstr "" -#: lib/action.php:730 +#: lib/action.php:734 msgid "Privacy" msgstr "Riêng tư" -#: lib/action.php:732 +#: lib/action.php:736 msgid "Source" msgstr "Nguồn" -#: lib/action.php:734 +#: lib/action.php:738 msgid "Contact" msgstr "Liên hệ" -#: lib/action.php:736 +#: lib/action.php:740 #, fuzzy msgid "Badge" msgstr "Tin đã gửi" -#: lib/action.php:764 +#: lib/action.php:768 msgid "StatusNet software license" msgstr "" -#: lib/action.php:767 +#: lib/action.php:771 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3658,12 +3999,12 @@ msgstr "" "**%%site.name%%** là dịch vụ gửi tin nhắn được cung cấp từ [%%site.broughtby%" "%](%%site.broughtbyurl%%). " -#: lib/action.php:769 +#: lib/action.php:773 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** là dịch vụ gửi tin nhắn. " -#: lib/action.php:771 +#: lib/action.php:775 #, fuzzy, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3674,38 +4015,61 @@ msgstr "" "quyền [GNU Affero General Public License](http://www.fsf.org/licensing/" "licenses/agpl-3.0.html)." -#: lib/action.php:785 +#: lib/action.php:789 #, fuzzy msgid "Site content license" msgstr "Tìm theo nội dung của tin nhắn" -#: lib/action.php:794 +#: lib/action.php:798 msgid "All " msgstr "" -#: lib/action.php:799 +#: lib/action.php:803 msgid "license." msgstr "" -#: lib/action.php:1052 +#: lib/action.php:1067 msgid "Pagination" msgstr "" -#: lib/action.php:1061 +#: lib/action.php:1076 #, fuzzy msgid "After" msgstr "Sau" -#: lib/action.php:1069 +#: lib/action.php:1084 #, fuzzy msgid "Before" msgstr "Trước" -#: lib/action.php:1117 +#: lib/action.php:1132 #, 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." +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "Bạn đã theo những người này:" + +#: lib/adminpanelaction.php:195 +msgid "showForm() not implemented." +msgstr "" + +#: lib/adminpanelaction.php:224 +msgid "saveSettings() not implemented." +msgstr "" + +#: lib/adminpanelaction.php:273 +#, fuzzy +msgid "Basic site configuration" +msgstr "Xac nhan dia chi email" + +#: lib/adminpanelaction.php:276 +#, fuzzy +msgid "Design configuration" +msgstr "Xác nhận SMS" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -3888,30 +4252,36 @@ msgstr "Bạn chưa cập nhật thông tin riêng" #: lib/command.php:620 #, fuzzy -msgid "You are subscribed to these people: " -msgstr "Bạn chưa cập nhật thông tin riêng" +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "Bạn chưa cập nhật thông tin riêng" +msgstr[1] "Bạn chưa cập nhật thông tin riêng" -#: lib/command.php:637 +#: lib/command.php:640 #, fuzzy msgid "No one is subscribed to you." msgstr "Không thể tạo favorite." -#: lib/command.php:639 +#: lib/command.php:642 #, fuzzy -msgid "These people are subscribed to you: " -msgstr "Theo nhóm này" +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "Không thể tạo favorite." +msgstr[1] "Không thể tạo favorite." -#: lib/command.php:656 +#: lib/command.php:662 #, fuzzy msgid "You are not a member of any groups." msgstr "Bạn chưa cập nhật thông tin riêng" -#: lib/command.php:658 +#: lib/command.php:664 #, fuzzy -msgid "You are a member of these groups: " -msgstr "Bạn chưa cập nhật thông tin riêng" +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "Bạn chưa cập nhật thông tin riêng" +msgstr[1] "Bạn chưa cập nhật thông tin riêng" -#: lib/command.php:670 +#: lib/command.php:678 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -3950,20 +4320,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:192 +#: lib/common.php:203 #, fuzzy msgid "No configuration file found. " msgstr "Không có mã số xác nhận." -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:195 +#: lib/common.php:206 msgid "Go to the installer." msgstr "" @@ -3983,11 +4353,6 @@ msgstr "Thay đổi bởi SMS" msgid "Database error" msgstr "" -#: lib/designsettings.php:101 -#, fuzzy -msgid "Change background image" -msgstr "Background Theme:" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" @@ -3998,69 +4363,6 @@ 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:217 -msgid "Text" -msgstr "Chuỗi bất kỳ" - -#: 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:372 msgid "Bad default color settings: " msgstr "" @@ -4321,12 +4623,12 @@ msgstr "" "%4$s\n" "\n" -#: lib/mail.php:235 +#: lib/mail.php:236 #, 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." -#: lib/mail.php:240 +#: lib/mail.php:241 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4347,29 +4649,29 @@ msgstr "" "Người bạn trung thành của bạn,\n" "%4$s.\n" -#: lib/mail.php:253 +#: lib/mail.php:254 #, fuzzy, php-format msgid "Location: %s\n" msgstr "Thành phố: %s\n" -#: lib/mail.php:255 +#: lib/mail.php:256 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "Trang chủ hoặc Blog: %s\n" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "Dia chi email moi de gui tin nhan den %s" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4390,21 +4692,21 @@ msgstr "" "Chúc sức khỏe,\n" "%4$s" -#: lib/mail.php:412 +#: lib/mail.php:413 #, fuzzy, php-format msgid "%s status" msgstr "Trạng thái của %1$s vào %2$s" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "Xác nhận SMS" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4420,12 +4722,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "Bạn có tin nhắn riêng từ %s" -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4458,12 +4760,12 @@ msgstr "" "Chúc sức khỏe,\n" "%5$s\n" -#: lib/mail.php:554 +#: lib/mail.php:559 #, 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 +#: lib/mail.php:561 #, fuzzy, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4497,12 +4799,12 @@ msgstr "" "Chúc sức khỏe,\n" "%5$s\n" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4647,7 +4949,11 @@ msgstr "Lỗi xảy ra khi thêm mới hồ sơ cá nhân" msgid "Duplicate notice" msgstr "Xóa tin nhắn" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +msgid "You have been banned from subscribing." +msgstr "" + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "Không thể chèn thêm vào đăng nhận." @@ -4663,10 +4969,6 @@ msgstr "Trả lời" msgid "Favorites" msgstr "Ưa thích" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "Hộp thư đến" @@ -4718,6 +5020,15 @@ msgstr "Gia nhập từ" msgid "All groups" msgstr "Nhóm" +#: lib/profileformaction.php:123 +#, fuzzy +msgid "No return-to arguments" +msgstr "Không có tài liệu nào." + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "Công cộng" @@ -4741,6 +5052,16 @@ msgstr "" msgid "Popular" msgstr "Tên tài khoản" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "Hộp thư đến" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "Bỏ chặn người dùng này" + #: lib/searchaction.php:120 #, fuzzy msgid "Search site" @@ -4781,6 +5102,16 @@ msgstr "" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "Thông báo mới" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "Ban user" + #: lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" @@ -4810,31 +5141,31 @@ msgstr "" msgid "(none)" msgstr "" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "" -#: lib/subs.php:52 +#: lib/subs.php:56 #, fuzzy msgid "User has blocked you." msgstr "Người dùng không có thông tin." -#: lib/subs.php:56 +#: lib/subs.php:60 #, fuzzy msgid "Could not subscribe." msgstr "Chưa đăng nhận!" -#: lib/subs.php:75 +#: lib/subs.php:79 #, fuzzy msgid "Could not subscribe other to you." msgstr "Không thể tạo favorite." -#: lib/subs.php:124 +#: lib/subs.php:128 #, fuzzy msgid "Not subscribed!" msgstr "Chưa đăng nhận!" -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "Không thể xóa đăng nhận." @@ -4848,6 +5179,29 @@ msgstr "Không" msgid "Top posters" msgstr "Top posters" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "Bỏ chặn người dùng này" + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "Bỏ chặn người dùng này" + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "Bỏ chặn người dùng này" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "Ngừng đăng ký từ người dùng này" @@ -4955,3 +5309,7 @@ msgstr "Xin lỗi, đó không phải là địa chỉ email mà bạn nhập v #: scripts/maildaemon.php:61 msgid "Sorry, no incoming email allowed." msgstr "Xin lỗi, không có địa chỉ email cho phép." + +#, fuzzy +#~ msgid "These people are subscribed to you: " +#~ msgstr "Theo nhóm này" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.mo b/locale/zh_CN/LC_MESSAGES/statusnet.mo index 4fd7cd1dc9068121be4a6c0317b50107d11f61a0..6f41c554e9fc3d25acaa4637ef59d40d3851a658 100644 GIT binary patch delta 19859 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 XzU*7>B;l4V8N+?meDkIy^L6<@qT^tu diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 722af7d348..763aa34103 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-16 19:42+0000\n" -"PO-Revision-Date: 2009-11-16 19:44:29+0000\n" +"POT-Creation-Date: 2009-11-18 19:31+0000\n" +"PO-Revision-Date: 2009-11-18 19:32:53+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(r59142); Translate extension (2009-11-13)\n" +"X-Generator: MediaWiki 1.16alpha(r59207); Translate extension (2009-11-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: out-statusnet\n" @@ -47,7 +47,7 @@ msgstr "未找到此消息。" #: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 #: lib/command.php:364 lib/command.php:411 lib/command.php:466 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 +#: lib/subs.php:34 lib/subs.php:116 msgid "No such user." msgstr "没有这个用户。" @@ -150,7 +150,8 @@ msgstr "无法更新用户。" #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 #: actions/apistatusesupdate.php:127 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: actions/designadminpanel.php:125 actions/newnotice.php:94 +#: lib/designsettings.php:283 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -236,12 +237,12 @@ msgstr "发给 %s 的直接消息" #: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 #: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigrouplistall.php:120 actions/apigrouplist.php:132 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apigroupmembership.php:106 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/apitimelinegroup.php:147 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!" @@ -381,6 +382,13 @@ msgstr "昵称已被使用,换一个吧。" msgid "Alias can't be the same as nickname." msgstr "" +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#, fuzzy +msgid "Group not found!" +msgstr "API 方法未实现!" + #: actions/apigroupjoin.php:110 #, fuzzy msgid "You are already a member of that group." @@ -472,13 +480,13 @@ msgstr "%s 的收藏 / %s" msgid "%s updates favorited by %s / %s." msgstr "%s 收藏了 %s 的 %s 通告。" -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "%s 时间表" -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -567,7 +575,8 @@ msgstr "原来的" msgid "Preview" msgstr "预览" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#: actions/avatarsettings.php:148 lib/deleteuserform.php:66 +#: lib/noticelist.php:522 #, fuzzy msgid "Delete" msgstr "删除" @@ -580,7 +589,7 @@ msgstr "上传" msgid "Crop" msgstr "剪裁" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/avatarsettings.php:265 actions/disfavor.php:74 #: actions/emailsettings.php:237 actions/favor.php:75 #: actions/groupblock.php:66 actions/grouplogo.php:309 #: actions/groupunblock.php:66 actions/imsettings.php:206 @@ -590,7 +599,7 @@ msgstr "剪裁" #: actions/profilesettings.php:187 actions/recoverpassword.php:337 #: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 +#: actions/tagother.php:166 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 lib/designsettings.php:294 msgid "There was a problem with your session token. Try again, please." msgstr "会话标识有问题,请重试。" @@ -658,76 +667,53 @@ msgstr "该组成员列表。" msgid "Unblock user from group" msgstr "取消阻止用户失败。" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" msgstr "取消阻止" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "取消阻止次用户" -#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61 -#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87 -#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31 -#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "未登录。" - -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 +#: actions/block.php:69 #, fuzzy -msgid "No profile specified." -msgstr "没有收件人。" +msgid "You already blocked that user." +msgstr "您已成功阻止该用户:" -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 -#, fuzzy -msgid "No profile with that ID." -msgstr "没有找到此ID的信息。" - -#: actions/block.php:111 actions/block.php:134 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 #, fuzzy msgid "Block user" msgstr "阻止用户" -#: actions/block.php:136 +#: actions/block.php:130 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/block.php:149 actions/deletenotice.php:145 -#: actions/groupblock.php:178 +#: actions/block.php:143 actions/deletenotice.php:145 +#: actions/deleteuser.php:147 actions/groupblock.php:178 msgid "No" msgstr "否" -#: actions/block.php:149 +#: actions/block.php:143 actions/deleteuser.php:147 #, fuzzy msgid "Do not block this user" msgstr "取消阻止次用户" -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:179 +#: actions/block.php:144 actions/deletenotice.php:146 +#: actions/deleteuser.php:148 actions/groupblock.php:179 msgid "Yes" msgstr "是" -#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 -#: lib/blockform.php:153 +#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "阻止该用户" -#: actions/block.php:165 -msgid "You have already blocked this user." -msgstr "您已成功阻止该用户:" - -#: actions/block.php:170 +#: actions/block.php:162 msgid "Failed to save block information." msgstr "保存阻止信息失败。" @@ -793,6 +779,15 @@ msgstr "通告" msgid "No such notice." msgstr "没有这份通告。" +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 +#: actions/unsubscribe.php:52 lib/adminpanelaction.php:72 +#: lib/profileformaction.php:63 lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "未登录。" + #: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "无法删除通告。" @@ -827,6 +822,146 @@ msgstr "删除通告" msgid "There was a problem with your session token. Try again, please." msgstr "会话标识有问题,请重试。" +#: actions/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "无法更新用户。" + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "您不能删除其他用户的状态。" + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +#, fuzzy +msgid "Delete user" +msgstr "删除" + +#: actions/deleteuser.php:135 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "删除通告" + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/adminpanelaction.php:275 lib/groupnav.php:119 +msgid "Design" +msgstr "" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "" + +#: actions/designadminpanel.php:220 +#, fuzzy +msgid "Unable to delete design setting." +msgstr "无法保存 Twitter 设置!" + +#: actions/designadminpanel.php:301 +#, fuzzy, php-format +msgid "Theme not available: %s" +msgstr "这个页面不提供您想要的媒体类型" + +#: actions/designadminpanel.php:406 +#, fuzzy +msgid "Change theme" +msgstr "修改" + +#: actions/designadminpanel.php:410 +msgid "Theme" +msgstr "" + +#: actions/designadminpanel.php:411 +#, fuzzy +msgid "Theme for the site." +msgstr "登出本站" + +#: actions/designadminpanel.php:420 lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: actions/designadminpanel.php:424 actions/designadminpanel.php:498 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: actions/designadminpanel.php:429 +#, fuzzy, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "你可以给你的组上载一个logo图。" + +#: actions/designadminpanel.php:459 lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: actions/designadminpanel.php:475 lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: actions/designadminpanel.php:476 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: actions/designadminpanel.php:481 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: actions/designadminpanel.php:490 lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "修改密码" + +#: actions/designadminpanel.php:511 lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "连接" + +#: actions/designadminpanel.php:524 lib/designsettings.php:204 +#, fuzzy +msgid "Sidebar" +msgstr "搜索" + +#: actions/designadminpanel.php:537 lib/designsettings.php:217 +msgid "Text" +msgstr "文本" + +#: actions/designadminpanel.php:550 lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "登录" + +#: actions/designadminpanel.php:611 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: actions/designadminpanel.php:612 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: actions/designadminpanel.php:618 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: actions/designadminpanel.php:620 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/siteadminpanel.php:371 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 actions/useradminpanel.php:226 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "保存" + +#: actions/designadminpanel.php:621 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "此通告未被收藏!" @@ -970,14 +1105,6 @@ msgstr "我希望通过邮件发布信息。" msgid "Publish a MicroID for my email address." msgstr "公开电子邮件的 MicroID。" -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "保存" - #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." @@ -991,7 +1118,7 @@ msgstr "没有电子邮件地址。" msgid "Cannot normalize that email address" msgstr "无法识别此电子邮件" -#: actions/emailsettings.php:330 +#: actions/emailsettings.php:330 actions/siteadminpanel.php:156 msgid "Not a valid email address" msgstr "不是有效的电子邮件" @@ -1194,6 +1321,20 @@ msgstr "没有这份通告。" msgid "Cannot read file." msgstr "没有这份通告。" +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +#, fuzzy +msgid "No profile specified." +msgstr "没有收件人。" + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: lib/profileformaction.php:77 +#, fuzzy +msgid "No profile with that ID." +msgstr "没有找到此ID的信息。" + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 #, fuzzy @@ -1317,11 +1458,11 @@ msgstr "%s 组成员, 第 %d 页" msgid "A list of the users in this group." msgstr "该组成员列表。" -#: actions/groupmembers.php:175 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:439 lib/groupnav.php:107 msgid "Admin" msgstr "admin管理员" -#: actions/groupmembers.php:346 lib/blockform.php:153 +#: actions/groupmembers.php:346 lib/blockform.php:69 msgid "Block" msgstr "阻止" @@ -1411,7 +1552,7 @@ msgstr "" msgid "User is not blocked from group." msgstr "用户没有个人信息。" -#: actions/groupunblock.php:128 actions/unblock.php:108 +#: actions/groupunblock.php:128 actions/unblock.php:77 #, fuzzy msgid "Error removing the block." msgstr "保存用户时出错。" @@ -1710,7 +1851,7 @@ msgstr "用户名或密码不正确。" msgid "Error setting user." msgstr "保存用户设置时出错。" -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: actions/login.php:204 actions/login.php:257 lib/action.php:457 #: lib/logingroupnav.php:79 msgid "Login" msgstr "登录" @@ -2131,7 +2272,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "你的标签 (字母letters, 数字numbers, -, ., 和 _), 以逗号或空格分隔" -#: actions/profilesettings.php:144 +#: actions/profilesettings.php:144 actions/siteadminpanel.php:275 msgid "Language" msgstr "语言" @@ -2157,7 +2298,7 @@ msgstr "自动订阅任何订阅我的更新的人(这个选项最适合机器 msgid "Bio is too long (max %d chars)." msgstr "自述过长(不能超过140字符)。" -#: actions/profilesettings.php:228 +#: actions/profilesettings.php:228 actions/siteadminpanel.php:163 msgid "Timezone not selected." msgstr "未选择时区。" @@ -2183,7 +2324,7 @@ msgstr "无法保存个人信息。" msgid "Couldn't save tags." msgstr "无法保存个人信息。" -#: actions/profilesettings.php:344 +#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 msgid "Settings saved." msgstr "设置已保存。" @@ -2420,7 +2561,7 @@ msgstr "验证码出错。" msgid "Registration successful" msgstr "注册成功。" -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: actions/register.php:114 actions/register.php:502 lib/action.php:454 #: lib/logingroupnav.php:85 msgid "Register" msgstr "注册" @@ -2464,7 +2605,7 @@ msgid "Same as password above. Required." msgstr "相同的密码。此项必填。" #: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:253 lib/accountsettingsaction.php:120 msgid "Email" msgstr "电子邮件" @@ -2565,7 +2706,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "您在其他兼容的微博客服务的个人信息URL" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 +#: lib/userprofile.php:356 msgid "Subscribe" msgstr "订阅" @@ -2641,6 +2782,16 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "发送给 %1$s 的 %2$s 消息" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "无法向此用户发送消息。" + +#: actions/sandbox.php:72 +#, fuzzy +msgid "User is already sandboxed." +msgstr "用户没有个人信息。" + #: actions/showfavorites.php:79 #, fuzzy, php-format msgid "%s's favorite notices, page %d" @@ -2889,6 +3040,145 @@ msgstr "" "**%s** 有一个帐号在 %%%%site.name%%%%, 一个微博客服务 [micro-blogging]" "(http://en.wikipedia.org/wiki/Micro-blogging)" +#: actions/silence.php:65 actions/unsilence.php:65 +#, fuzzy +msgid "You cannot silence users on this site." +msgstr "无法向此用户发送消息。" + +#: actions/silence.php:72 +#, fuzzy +msgid "User is already silenced." +msgstr "用户没有个人信息。" + +#: actions/siteadminpanel.php:58 lib/adminpanelaction.php:272 +#, fuzzy +msgid "Site" +msgstr "邀请" + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site." +msgstr "" + +#: actions/siteadminpanel.php:145 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:153 +#, fuzzy +msgid "You must have a valid contact email address" +msgstr "不是有效的电子邮件" + +#: actions/siteadminpanel.php:171 +#, php-format +msgid "Unknown language \"%s\"" +msgstr "" + +#: actions/siteadminpanel.php:178 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/siteadminpanel.php:184 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/siteadminpanel.php:190 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/siteadminpanel.php:241 +#, fuzzy +msgid "Site name" +msgstr "新通告" + +#: actions/siteadminpanel.php:242 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:246 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:249 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:250 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:254 +#, fuzzy +msgid "contact email address for your site" +msgstr "新的电子邮件地址,用于发布 %s 信息" + +#: actions/siteadminpanel.php:268 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:269 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:276 +#, fuzzy +msgid "Default site language" +msgstr "首选语言" + +#: actions/siteadminpanel.php:282 +#, fuzzy +msgid "Private" +msgstr "隐私" + +#: actions/siteadminpanel.php:284 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/siteadminpanel.php:290 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/siteadminpanel.php:291 +msgid "In a scheduled job" +msgstr "" + +#: actions/siteadminpanel.php:292 +#, fuzzy +msgid "Never" +msgstr "恢复" + +#: actions/siteadminpanel.php:294 +msgid "Data snapshots" +msgstr "" + +#: actions/siteadminpanel.php:295 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/siteadminpanel.php:301 +msgid "Frequency" +msgstr "" + +#: actions/siteadminpanel.php:302 +msgid "Snapshots will be sent once every N Web hits" +msgstr "" + +#: actions/siteadminpanel.php:309 +msgid "Report URL" +msgstr "" + +#: actions/siteadminpanel.php:310 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/siteadminpanel.php:371 actions/useradminpanel.php:226 +#, fuzzy +msgid "Save site settings" +msgstr "头像设置" + #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "SMS短信设置" @@ -3167,6 +3457,21 @@ msgstr "未找到此消息。" msgid "API method under construction." msgstr "API 方法尚未实现。" +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "您已成功阻止该用户:" + +#: actions/unsandbox.php:72 +#, fuzzy +msgid "User is not sandboxed." +msgstr "用户没有个人信息。" + +#: actions/unsilence.php:72 +#, fuzzy +msgid "User is not silenced." +msgstr "用户没有个人信息。" + #: actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." @@ -3187,6 +3492,32 @@ msgstr "退订" msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" +#: actions/useradminpanel.php:58 lib/personalgroupnav.php:115 +msgid "User" +msgstr "用户" + +#: actions/useradminpanel.php:69 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:171 +#, fuzzy +msgid "Closed" +msgstr "阻止" + +#: actions/useradminpanel.php:173 +msgid "Is registration on this site prohibited?" +msgstr "" + +#: actions/useradminpanel.php:178 +#, fuzzy +msgid "Invite-only" +msgstr "邀请" + +#: actions/useradminpanel.php:180 +msgid "Is registration on this site only open to invited users?" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "确认订阅" @@ -3345,11 +3676,16 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: classes/Message.php:55 +#: classes/Message.php:45 +#, fuzzy +msgid "You are banned from sending direct messages." +msgstr "发送消息出错。" + +#: classes/Message.php:61 msgid "Could not insert message." msgstr "无法添加信息。" -#: classes/Message.php:65 +#: classes/Message.php:71 msgid "Could not update message with new URI." msgstr "无法添加新URI的信息。" @@ -3380,15 +3716,15 @@ msgid "" "few minutes." msgstr "你在短时间里发布了过多的消息,请深呼吸,过几分钟再发消息。" -#: classes/Notice.php:202 +#: classes/Notice.php:200 msgid "You are banned from posting notices on this site." msgstr "在这个网站你被禁止发布消息。" -#: classes/Notice.php:268 classes/Notice.php:293 +#: classes/Notice.php:265 classes/Notice.php:290 msgid "Problem saving notice." msgstr "保存通告时出错。" -#: classes/Notice.php:1120 +#: classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "添加回复时数据库出错:%s" @@ -3418,10 +3754,6 @@ msgstr "修改密码" msgid "Change email handling" msgstr "修改电子邮件" -#: lib/accountsettingsaction.php:124 lib/groupnav.php:119 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:124 #, fuzzy msgid "Design your profile" @@ -3474,102 +3806,107 @@ msgstr "连接" msgid "Connect to services" msgstr "无法重定向到服务器:%s" -#: lib/action.php:439 lib/subgroupnav.php:105 +#: lib/action.php:439 +#, fuzzy +msgid "Change site configuration" +msgstr "主站导航" + +#: lib/action.php:443 lib/subgroupnav.php:105 msgid "Invite" msgstr "邀请" -#: lib/action.php:440 lib/subgroupnav.php:106 +#: lib/action.php:444 lib/subgroupnav.php:106 #, fuzzy, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "使用这个表单来邀请好友和同事加入。" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout" msgstr "登出" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout from the site" msgstr "登出本站" -#: lib/action.php:450 +#: lib/action.php:454 #, fuzzy msgid "Create an account" msgstr "创建新帐号" -#: lib/action.php:453 +#: lib/action.php:457 msgid "Login to the site" msgstr "登入本站" -#: lib/action.php:456 lib/action.php:719 +#: lib/action.php:460 lib/action.php:723 msgid "Help" msgstr "帮助" -#: lib/action.php:456 +#: lib/action.php:460 #, fuzzy msgid "Help me!" msgstr "帮助" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search" msgstr "搜索" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search for people or text" msgstr "检索人或文字" -#: lib/action.php:480 +#: lib/action.php:484 #, fuzzy msgid "Site notice" msgstr "新通告" -#: lib/action.php:546 +#: lib/action.php:550 msgid "Local views" msgstr "本地显示" -#: lib/action.php:612 +#: lib/action.php:616 #, fuzzy msgid "Page notice" msgstr "新通告" -#: lib/action.php:714 +#: lib/action.php:718 #, fuzzy msgid "Secondary site navigation" msgstr "次项站导航" -#: lib/action.php:721 +#: lib/action.php:725 msgid "About" msgstr "关于" -#: lib/action.php:723 +#: lib/action.php:727 msgid "FAQ" msgstr "常见问题FAQ" -#: lib/action.php:727 +#: lib/action.php:731 msgid "TOS" msgstr "" -#: lib/action.php:730 +#: lib/action.php:734 msgid "Privacy" msgstr "隐私" -#: lib/action.php:732 +#: lib/action.php:736 msgid "Source" msgstr "来源" -#: lib/action.php:734 +#: lib/action.php:738 msgid "Contact" msgstr "联系人" -#: lib/action.php:736 +#: lib/action.php:740 #, fuzzy msgid "Badge" msgstr "呼叫" -#: lib/action.php:764 +#: lib/action.php:768 msgid "StatusNet software license" msgstr "StatusNet软件注册证" -#: lib/action.php:767 +#: lib/action.php:771 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3578,12 +3915,12 @@ msgstr "" "**%%site.name%%** 是一个微博客服务,提供者为 [%%site.broughtby%%](%%site." "broughtbyurl%%)。" -#: lib/action.php:769 +#: lib/action.php:773 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%** 是一个微博客服务。" -#: lib/action.php:771 +#: lib/action.php:775 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3594,38 +3931,63 @@ msgstr "" "General Public License](http://www.fsf.org/licensing/licenses/agpl-3.0.html)" "授权。" -#: lib/action.php:785 +#: lib/action.php:789 #, fuzzy msgid "Site content license" msgstr "StatusNet软件注册证" -#: lib/action.php:794 +#: lib/action.php:798 msgid "All " msgstr "全部" -#: lib/action.php:799 +#: lib/action.php:803 msgid "license." msgstr "注册证" -#: lib/action.php:1052 +#: lib/action.php:1067 msgid "Pagination" msgstr "分页" -#: lib/action.php:1061 +#: lib/action.php:1076 #, fuzzy msgid "After" msgstr "« 之后" -#: lib/action.php:1069 +#: lib/action.php:1084 #, fuzzy msgid "Before" msgstr "之前 »" -#: lib/action.php:1117 +#: lib/action.php:1132 #, fuzzy msgid "There was a problem with your session token." msgstr "会话标识有问题,请重试。" +#: lib/adminpanelaction.php:96 +#, fuzzy +msgid "You cannot make changes to this site." +msgstr "无法向此用户发送消息。" + +#: lib/adminpanelaction.php:195 +#, fuzzy +msgid "showForm() not implemented." +msgstr "命令尚未实现。" + +#: lib/adminpanelaction.php:224 +#, fuzzy +msgid "saveSettings() not implemented." +msgstr "命令尚未实现。" + +#: lib/adminpanelaction.php:273 +#, fuzzy +msgid "Basic site configuration" +msgstr "电子邮件地址确认" + +#: lib/adminpanelaction.php:276 +#, fuzzy +msgid "Design configuration" +msgstr "SMS短信确认" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -3801,30 +4163,36 @@ msgstr "您未告知此个人信息" #: lib/command.php:620 #, fuzzy -msgid "You are subscribed to these people: " -msgstr "您未告知此个人信息" +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "您未告知此个人信息" +msgstr[1] "您未告知此个人信息" -#: lib/command.php:637 +#: lib/command.php:640 #, fuzzy msgid "No one is subscribed to you." msgstr "无法订阅他人更新。" -#: lib/command.php:639 +#: lib/command.php:642 #, fuzzy -msgid "These people are subscribed to you: " -msgstr "订阅 %s" +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "无法订阅他人更新。" +msgstr[1] "无法订阅他人更新。" -#: lib/command.php:656 +#: lib/command.php:662 #, fuzzy msgid "You are not a member of any groups." msgstr "您未告知此个人信息" -#: lib/command.php:658 +#: lib/command.php:664 #, fuzzy -msgid "You are a member of these groups: " -msgstr "您未告知此个人信息" +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "您未告知此个人信息" +msgstr[1] "您未告知此个人信息" -#: lib/command.php:670 +#: lib/command.php:678 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -3863,20 +4231,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:192 +#: lib/common.php:203 #, fuzzy msgid "No configuration file found. " msgstr "没有验证码" -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:195 +#: lib/common.php:206 #, fuzzy msgid "Go to the installer." msgstr "登入本站" @@ -3897,10 +4265,6 @@ msgstr "使用SMS短信更新" msgid "Database error" msgstr "" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" @@ -3911,66 +4275,6 @@ 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:217 -msgid "Text" -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:372 msgid "Bad default color settings: " msgstr "" @@ -4213,12 +4517,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:235 +#: lib/mail.php:236 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "%1$s 开始关注您的 %2$s 信息。" -#: lib/mail.php:240 +#: lib/mail.php:241 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4238,17 +4542,17 @@ msgstr "" "\n" "为您效力的 %4$s\n" -#: lib/mail.php:253 +#: lib/mail.php:254 #, fuzzy, php-format msgid "Location: %s\n" msgstr "位置:%s\n" -#: lib/mail.php:255 +#: lib/mail.php:256 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "主页:%s\n" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" @@ -4257,12 +4561,12 @@ msgstr "" "自传Bio: %s\n" "\n" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "新的电子邮件地址,用于发布 %s 信息" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4282,21 +4586,21 @@ msgstr "" "\n" "为您效力的 %4$s" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "%s 状态" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "SMS短信确认" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "%s 振铃呼叫你" -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4312,12 +4616,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "%s 发送了新的私人信息" -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4336,12 +4640,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:554 +#: lib/mail.php:559 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "%s 收藏了您的通告" -#: lib/mail.php:556 +#: lib/mail.php:561 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4362,12 +4666,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4511,7 +4815,12 @@ msgstr "添加远程的个人信息出错" msgid "Duplicate notice" msgstr "删除通告" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +#, fuzzy +msgid "You have been banned from subscribing." +msgstr "那个用户阻止了你的订阅。" + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "无法添加新的订阅。" @@ -4527,10 +4836,6 @@ msgstr "回复" msgid "Favorites" msgstr "收藏夹" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "用户" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "收件箱" @@ -4582,6 +4887,15 @@ msgstr "用户始于" msgid "All groups" msgstr "所有组" +#: lib/profileformaction.php:123 +#, fuzzy +msgid "No return-to arguments" +msgstr "没有这份文档。" + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "公告" @@ -4604,6 +4918,16 @@ msgstr "特征" msgid "Popular" msgstr "用户" +#: lib/sandboxform.php:67 +#, fuzzy +msgid "Sandbox" +msgstr "收件箱" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "取消阻止次用户" + #: lib/searchaction.php:120 #, fuzzy msgid "Search site" @@ -4644,6 +4968,16 @@ msgstr "无标题章节" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "新通告" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "阻止该用户" + #: lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" @@ -4673,29 +5007,29 @@ msgstr "" msgid "(none)" msgstr "(none 没有)" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "" -#: lib/subs.php:52 +#: lib/subs.php:56 #, fuzzy msgid "User has blocked you." msgstr "用户没有个人信息。" -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "无法订阅。" -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "无法订阅他人更新。" -#: lib/subs.php:124 +#: lib/subs.php:128 #, fuzzy msgid "Not subscribed!" msgstr "未订阅!" -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "无法删除订阅。" @@ -4709,6 +5043,29 @@ msgstr "否" msgid "Top posters" msgstr "灌水精英" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "取消阻止次用户" + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "取消阻止次用户" + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "取消阻止次用户" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 #, fuzzy msgid "Unsubscribe from this user" @@ -4816,3 +5173,7 @@ msgstr "对不起,这个发布用的电子邮件属于其他用户。" #: scripts/maildaemon.php:61 msgid "Sorry, no incoming email allowed." msgstr "对不起,发布用的电子邮件无法使用。" + +#, fuzzy +#~ msgid "These people are subscribed to you: " +#~ msgstr "订阅 %s" diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.mo b/locale/zh_TW/LC_MESSAGES/statusnet.mo index 0db2788481d5599178edf833650cf5ce6b1f72ac..89afaf8af4711865bef89c23c08dce242183cf46 100644 GIT binary patch delta 7298 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 J@vVE@KL9ujAzuIh delta 6070 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 diff --git a/locale/zh_TW/LC_MESSAGES/statusnet.po b/locale/zh_TW/LC_MESSAGES/statusnet.po index d251d4aa4b..0e6e27d534 100644 --- a/locale/zh_TW/LC_MESSAGES/statusnet.po +++ b/locale/zh_TW/LC_MESSAGES/statusnet.po @@ -10,12 +10,12 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2009-11-16 19:42+0000\n" -"PO-Revision-Date: 2009-11-16 19:44:31+0000\n" +"POT-Creation-Date: 2009-11-18 19:31+0000\n" +"PO-Revision-Date: 2009-11-18 19:32:56+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(r59142); Translate extension (2009-11-13)\n" +"X-Generator: MediaWiki 1.16alpha(r59207); Translate extension (2009-11-16)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hant\n" "X-Message-Group: out-statusnet\n" @@ -47,7 +47,7 @@ msgstr "無此通知" #: actions/xrds.php:71 lib/command.php:163 lib/command.php:311 #: lib/command.php:364 lib/command.php:411 lib/command.php:466 #: lib/galleryaction.php:59 lib/mailbox.php:82 lib/profileaction.php:77 -#: lib/subs.php:34 lib/subs.php:112 +#: lib/subs.php:34 lib/subs.php:116 msgid "No such user." msgstr "無此使用者" @@ -150,7 +150,8 @@ msgstr "無法更新使用者" #: actions/apiaccountupdateprofilebackgroundimage.php:108 #: actions/apiaccountupdateprofileimage.php:97 #: actions/apistatusesupdate.php:127 actions/avatarsettings.php:254 -#: actions/newnotice.php:94 lib/designsettings.php:283 +#: actions/designadminpanel.php:125 actions/newnotice.php:94 +#: lib/designsettings.php:283 #, php-format msgid "" "The server was unable to handle that much POST data (%s bytes) due to its " @@ -235,12 +236,12 @@ msgstr "" #: actions/apigroupcreate.php:184 actions/apigroupismember.php:114 #: actions/apigroupjoin.php:155 actions/apigroupleave.php:141 #: actions/apigrouplistall.php:120 actions/apigrouplist.php:132 -#: actions/apigroupmembership.php:101 actions/apigroupshow.php:105 +#: actions/apigroupmembership.php:106 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/apitimelinegroup.php:147 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!" @@ -379,6 +380,13 @@ msgstr "此暱稱已有人使用。再試試看別的吧。" msgid "Alias can't be the same as nickname." msgstr "" +#: actions/apigroupismember.php:95 actions/apigroupjoin.php:104 +#: actions/apigroupleave.php:104 actions/apigroupmembership.php:91 +#: actions/apigroupshow.php:90 actions/apitimelinegroup.php:91 +#, fuzzy +msgid "Group not found!" +msgstr "目前無請求" + #: actions/apigroupjoin.php:110 msgid "You are already a member of that group." msgstr "" @@ -468,13 +476,13 @@ msgstr "" msgid "%s updates favorited by %s / %s." msgstr "" -#: actions/apitimelinegroup.php:102 actions/apitimelineuser.php:117 +#: actions/apitimelinegroup.php:108 actions/apitimelineuser.php:117 #: actions/grouprss.php:131 actions/userrss.php:90 #, php-format msgid "%s timeline" msgstr "" -#: actions/apitimelinegroup.php:110 actions/apitimelineuser.php:125 +#: actions/apitimelinegroup.php:116 actions/apitimelineuser.php:125 #: actions/userrss.php:92 #, php-format msgid "Updates from %1$s on %2$s!" @@ -564,7 +572,8 @@ msgstr "" msgid "Preview" msgstr "" -#: actions/avatarsettings.php:148 lib/noticelist.php:522 +#: actions/avatarsettings.php:148 lib/deleteuserform.php:66 +#: lib/noticelist.php:522 msgid "Delete" msgstr "" @@ -576,7 +585,7 @@ msgstr "" msgid "Crop" msgstr "" -#: actions/avatarsettings.php:265 actions/block.php:64 actions/disfavor.php:74 +#: actions/avatarsettings.php:265 actions/disfavor.php:74 #: actions/emailsettings.php:237 actions/favor.php:75 #: actions/groupblock.php:66 actions/grouplogo.php:309 #: actions/groupunblock.php:66 actions/imsettings.php:206 @@ -586,7 +595,7 @@ msgstr "" #: actions/profilesettings.php:187 actions/recoverpassword.php:337 #: actions/register.php:165 actions/remotesubscribe.php:77 #: actions/smssettings.php:228 actions/subedit.php:38 actions/subscribe.php:46 -#: actions/tagother.php:166 actions/unblock.php:65 actions/unsubscribe.php:69 +#: actions/tagother.php:166 actions/unsubscribe.php:69 #: actions/userauthorization.php:52 lib/designsettings.php:294 msgid "There was a problem with your session token. Try again, please." msgstr "" @@ -654,74 +663,53 @@ msgstr "" msgid "Unblock user from group" msgstr "無此使用者" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 lib/unblockform.php:69 msgid "Unblock" msgstr "" -#: actions/blockedfromgroup.php:313 lib/unblockform.php:120 -#: lib/unblockform.php:150 +#: actions/blockedfromgroup.php:313 #, fuzzy msgid "Unblock this user" msgstr "無此使用者" -#: actions/block.php:59 actions/deletenotice.php:67 actions/disfavor.php:61 -#: actions/favor.php:62 actions/groupblock.php:61 actions/groupunblock.php:61 -#: actions/logout.php:69 actions/makeadmin.php:61 actions/newmessage.php:87 -#: actions/newnotice.php:89 actions/nudge.php:63 actions/subedit.php:31 -#: actions/subscribe.php:30 actions/unblock.php:60 actions/unsubscribe.php:52 -#: lib/settingsaction.php:72 -msgid "Not logged in." -msgstr "" +#: actions/block.php:69 +#, fuzzy +msgid "You already blocked that user." +msgstr "無此使用者" -#: actions/block.php:69 actions/groupblock.php:71 actions/groupunblock.php:71 -#: actions/makeadmin.php:71 actions/subedit.php:46 actions/unblock.php:70 -msgid "No profile specified." -msgstr "" - -#: actions/block.php:74 actions/groupblock.php:76 actions/groupunblock.php:76 -#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 -#: actions/unblock.php:75 -msgid "No profile with that ID." -msgstr "" - -#: actions/block.php:111 actions/block.php:134 actions/groupblock.php:160 +#: actions/block.php:105 actions/block.php:128 actions/groupblock.php:160 #, fuzzy msgid "Block user" msgstr "無此使用者" -#: actions/block.php:136 +#: actions/block.php:130 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/block.php:149 actions/deletenotice.php:145 -#: actions/groupblock.php:178 +#: actions/block.php:143 actions/deletenotice.php:145 +#: actions/deleteuser.php:147 actions/groupblock.php:178 msgid "No" msgstr "" -#: actions/block.php:149 +#: actions/block.php:143 actions/deleteuser.php:147 #, fuzzy msgid "Do not block this user" msgstr "無此使用者" -#: actions/block.php:150 actions/deletenotice.php:146 -#: actions/groupblock.php:179 +#: actions/block.php:144 actions/deletenotice.php:146 +#: actions/deleteuser.php:148 actions/groupblock.php:179 msgid "Yes" msgstr "" -#: actions/block.php:150 actions/groupmembers.php:346 lib/blockform.php:123 -#: lib/blockform.php:153 +#: actions/block.php:144 actions/groupmembers.php:346 lib/blockform.php:80 #, fuzzy msgid "Block this user" msgstr "無此使用者" -#: actions/block.php:165 -msgid "You have already blocked this user." -msgstr "" - -#: actions/block.php:170 +#: actions/block.php:162 msgid "Failed to save block information." msgstr "" @@ -786,6 +774,15 @@ msgstr "" msgid "No such notice." msgstr "無此通知" +#: actions/deletenotice.php:67 actions/disfavor.php:61 actions/favor.php:62 +#: actions/groupblock.php:61 actions/groupunblock.php:61 actions/logout.php:69 +#: actions/makeadmin.php:61 actions/newmessage.php:87 actions/newnotice.php:89 +#: actions/nudge.php:63 actions/subedit.php:31 actions/subscribe.php:30 +#: actions/unsubscribe.php:52 lib/adminpanelaction.php:72 +#: lib/profileformaction.php:63 lib/settingsaction.php:72 +msgid "Not logged in." +msgstr "" + #: actions/deletenotice.php:71 msgid "Can't delete this notice." msgstr "" @@ -817,6 +814,142 @@ msgstr "" msgid "There was a problem with your session token. Try again, please." msgstr "" +#: actions/deleteuser.php:67 +#, fuzzy +msgid "You cannot delete users." +msgstr "無法更新使用者" + +#: actions/deleteuser.php:74 +#, fuzzy +msgid "You can only delete local users." +msgstr "無此使用者" + +#: actions/deleteuser.php:110 actions/deleteuser.php:133 +msgid "Delete user" +msgstr "" + +#: actions/deleteuser.php:135 +msgid "" +"Are you sure you want to delete this user? This will clear all data about " +"the user from the database, without a backup." +msgstr "" + +#: actions/deleteuser.php:148 lib/deleteuserform.php:77 +#, fuzzy +msgid "Delete this user" +msgstr "無此使用者" + +#: actions/designadminpanel.php:62 lib/accountsettingsaction.php:124 +#: lib/adminpanelaction.php:275 lib/groupnav.php:119 +msgid "Design" +msgstr "" + +#: actions/designadminpanel.php:73 +msgid "Design settings for this StatusNet site." +msgstr "" + +#: actions/designadminpanel.php:220 +msgid "Unable to delete design setting." +msgstr "" + +#: actions/designadminpanel.php:301 +#, fuzzy, php-format +msgid "Theme not available: %s" +msgstr "個人首頁位址錯誤" + +#: actions/designadminpanel.php:406 +#, fuzzy +msgid "Change theme" +msgstr "更改" + +#: actions/designadminpanel.php:410 +msgid "Theme" +msgstr "" + +#: actions/designadminpanel.php:411 +msgid "Theme for the site." +msgstr "" + +#: actions/designadminpanel.php:420 lib/designsettings.php:101 +msgid "Change background image" +msgstr "" + +#: actions/designadminpanel.php:424 actions/designadminpanel.php:498 +#: lib/designsettings.php:178 +msgid "Background" +msgstr "" + +#: actions/designadminpanel.php:429 +#, php-format +msgid "" +"You can upload a background image for the site. The maximum file size is %1" +"$s." +msgstr "" + +#: actions/designadminpanel.php:459 lib/designsettings.php:139 +msgid "On" +msgstr "" + +#: actions/designadminpanel.php:475 lib/designsettings.php:155 +msgid "Off" +msgstr "" + +#: actions/designadminpanel.php:476 lib/designsettings.php:156 +msgid "Turn background image on or off." +msgstr "" + +#: actions/designadminpanel.php:481 lib/designsettings.php:161 +msgid "Tile background image" +msgstr "" + +#: actions/designadminpanel.php:490 lib/designsettings.php:170 +#, fuzzy +msgid "Change colours" +msgstr "更改密碼" + +#: actions/designadminpanel.php:511 lib/designsettings.php:191 +#, fuzzy +msgid "Content" +msgstr "連結" + +#: actions/designadminpanel.php:524 lib/designsettings.php:204 +msgid "Sidebar" +msgstr "" + +#: actions/designadminpanel.php:537 lib/designsettings.php:217 +msgid "Text" +msgstr "" + +#: actions/designadminpanel.php:550 lib/designsettings.php:230 +#, fuzzy +msgid "Links" +msgstr "登入" + +#: actions/designadminpanel.php:611 lib/designsettings.php:247 +msgid "Use defaults" +msgstr "" + +#: actions/designadminpanel.php:612 lib/designsettings.php:248 +msgid "Restore default designs" +msgstr "" + +#: actions/designadminpanel.php:618 lib/designsettings.php:254 +msgid "Reset back to default" +msgstr "" + +#: actions/designadminpanel.php:620 actions/emailsettings.php:195 +#: actions/imsettings.php:163 actions/othersettings.php:126 +#: actions/profilesettings.php:167 actions/siteadminpanel.php:371 +#: actions/smssettings.php:181 actions/subscriptions.php:203 +#: actions/tagother.php:154 actions/useradminpanel.php:226 +#: lib/designsettings.php:256 lib/groupeditform.php:202 +msgid "Save" +msgstr "" + +#: actions/designadminpanel.php:621 lib/designsettings.php:257 +msgid "Save design" +msgstr "" + #: actions/disfavor.php:81 msgid "This notice is not a favorite!" msgstr "" @@ -958,14 +1091,6 @@ msgstr "" msgid "Publish a MicroID for my email address." msgstr "" -#: actions/emailsettings.php:195 actions/imsettings.php:163 -#: actions/othersettings.php:126 actions/profilesettings.php:167 -#: actions/smssettings.php:181 actions/subscriptions.php:203 -#: actions/tagother.php:154 lib/designsettings.php:256 -#: lib/groupeditform.php:202 -msgid "Save" -msgstr "" - #: actions/emailsettings.php:301 actions/imsettings.php:264 #: actions/othersettings.php:180 actions/smssettings.php:284 msgid "Preferences saved." @@ -979,7 +1104,7 @@ msgstr "" msgid "Cannot normalize that email address" msgstr "" -#: actions/emailsettings.php:330 +#: actions/emailsettings.php:330 actions/siteadminpanel.php:156 msgid "Not a valid email address" msgstr "" @@ -1176,6 +1301,18 @@ msgstr "無此通知" msgid "Cannot read file." msgstr "無此通知" +#: actions/groupblock.php:71 actions/groupunblock.php:71 +#: actions/makeadmin.php:71 actions/subedit.php:46 +#: lib/profileformaction.php:70 +msgid "No profile specified." +msgstr "" + +#: actions/groupblock.php:76 actions/groupunblock.php:76 +#: actions/makeadmin.php:76 actions/subedit.php:53 actions/tagother.php:46 +#: lib/profileformaction.php:77 +msgid "No profile with that ID." +msgstr "" + #: actions/groupblock.php:81 actions/groupunblock.php:81 #: actions/makeadmin.php:81 msgid "No group specified." @@ -1292,11 +1429,11 @@ msgstr "" msgid "A list of the users in this group." msgstr "" -#: actions/groupmembers.php:175 lib/groupnav.php:107 +#: actions/groupmembers.php:175 lib/action.php:439 lib/groupnav.php:107 msgid "Admin" msgstr "" -#: actions/groupmembers.php:346 lib/blockform.php:153 +#: actions/groupmembers.php:346 lib/blockform.php:69 msgid "Block" msgstr "" @@ -1381,7 +1518,7 @@ msgstr "" msgid "User is not blocked from group." msgstr "" -#: actions/groupunblock.php:128 actions/unblock.php:108 +#: actions/groupunblock.php:128 actions/unblock.php:77 #, fuzzy msgid "Error removing the block." msgstr "儲存使用者發生錯誤" @@ -1651,7 +1788,7 @@ msgstr "使用者名稱或密碼錯誤" msgid "Error setting user." msgstr "使用者設定發生錯誤" -#: actions/login.php:204 actions/login.php:257 lib/action.php:453 +#: actions/login.php:204 actions/login.php:257 lib/action.php:457 #: lib/logingroupnav.php:79 msgid "Login" msgstr "登入" @@ -2062,7 +2199,7 @@ msgid "" "Tags for yourself (letters, numbers, -, ., and _), comma- or space- separated" msgstr "" -#: actions/profilesettings.php:144 +#: actions/profilesettings.php:144 actions/siteadminpanel.php:275 msgid "Language" msgstr "" @@ -2088,7 +2225,7 @@ msgstr "" msgid "Bio is too long (max %d chars)." msgstr "自我介紹過長(共140個字元)" -#: actions/profilesettings.php:228 +#: actions/profilesettings.php:228 actions/siteadminpanel.php:163 msgid "Timezone not selected." msgstr "" @@ -2114,7 +2251,7 @@ msgstr "無法儲存個人資料" msgid "Couldn't save tags." msgstr "無法儲存個人資料" -#: actions/profilesettings.php:344 +#: actions/profilesettings.php:344 lib/adminpanelaction.php:126 msgid "Settings saved." msgstr "" @@ -2345,7 +2482,7 @@ msgstr "確認碼發生錯誤" msgid "Registration successful" msgstr "" -#: actions/register.php:114 actions/register.php:502 lib/action.php:450 +#: actions/register.php:114 actions/register.php:502 lib/action.php:454 #: lib/logingroupnav.php:85 msgid "Register" msgstr "" @@ -2389,7 +2526,7 @@ msgid "Same as password above. Required." msgstr "" #: actions/register.php:437 actions/register.php:441 -#: lib/accountsettingsaction.php:120 +#: actions/siteadminpanel.php:253 lib/accountsettingsaction.php:120 msgid "Email" msgstr "電子信箱" @@ -2474,7 +2611,7 @@ msgid "URL of your profile on another compatible microblogging service" msgstr "" #: actions/remotesubscribe.php:137 lib/subscribeform.php:139 -#: lib/userprofile.php:321 +#: lib/userprofile.php:356 msgid "Subscribe" msgstr "" @@ -2548,6 +2685,15 @@ msgstr "" msgid "Replies to %1$s on %2$s!" msgstr "&s的微型部落格" +#: actions/sandbox.php:65 actions/unsandbox.php:65 +#, fuzzy +msgid "You cannot sandbox users on this site." +msgstr "無法連結到伺服器:%s" + +#: actions/sandbox.php:72 +msgid "User is already sandboxed." +msgstr "" + #: actions/showfavorites.php:79 #, fuzzy, php-format msgid "%s's favorite notices, page %d" @@ -2790,6 +2936,139 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" +#: actions/silence.php:65 actions/unsilence.php:65 +msgid "You cannot silence users on this site." +msgstr "" + +#: actions/silence.php:72 +msgid "User is already silenced." +msgstr "" + +#: actions/siteadminpanel.php:58 lib/adminpanelaction.php:272 +msgid "Site" +msgstr "" + +#: actions/siteadminpanel.php:69 +msgid "Basic settings for this StatusNet site." +msgstr "" + +#: actions/siteadminpanel.php:145 +msgid "Site name must have non-zero length." +msgstr "" + +#: actions/siteadminpanel.php:153 +#, fuzzy +msgid "You must have a valid contact email address" +msgstr "此信箱無效" + +#: actions/siteadminpanel.php:171 +#, php-format +msgid "Unknown language \"%s\"" +msgstr "" + +#: actions/siteadminpanel.php:178 +msgid "Invalid snapshot report URL." +msgstr "" + +#: actions/siteadminpanel.php:184 +msgid "Invalid snapshot run value." +msgstr "" + +#: actions/siteadminpanel.php:190 +msgid "Snapshot frequency must be a number." +msgstr "" + +#: actions/siteadminpanel.php:241 +#, fuzzy +msgid "Site name" +msgstr "新訊息" + +#: actions/siteadminpanel.php:242 +msgid "The name of your site, like \"Yourcompany Microblog\"" +msgstr "" + +#: actions/siteadminpanel.php:245 +msgid "Brought by" +msgstr "" + +#: actions/siteadminpanel.php:246 +msgid "Text used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:249 +msgid "Brought by URL" +msgstr "" + +#: actions/siteadminpanel.php:250 +msgid "URL used for credits link in footer of each page" +msgstr "" + +#: actions/siteadminpanel.php:254 +#, fuzzy +msgid "contact email address for your site" +msgstr "查無此使用者所註冊的信箱" + +#: actions/siteadminpanel.php:268 +msgid "Default timezone" +msgstr "" + +#: actions/siteadminpanel.php:269 +msgid "Default timezone for the site; usually UTC." +msgstr "" + +#: actions/siteadminpanel.php:276 +msgid "Default site language" +msgstr "" + +#: actions/siteadminpanel.php:282 +msgid "Private" +msgstr "" + +#: actions/siteadminpanel.php:284 +msgid "Prohibit anonymous users (not logged in) from viewing site?" +msgstr "" + +#: actions/siteadminpanel.php:290 +msgid "Randomly during Web hit" +msgstr "" + +#: actions/siteadminpanel.php:291 +msgid "In a scheduled job" +msgstr "" + +#: actions/siteadminpanel.php:292 +msgid "Never" +msgstr "" + +#: actions/siteadminpanel.php:294 +msgid "Data snapshots" +msgstr "" + +#: actions/siteadminpanel.php:295 +msgid "When to send statistical data to status.net servers" +msgstr "" + +#: actions/siteadminpanel.php:301 +msgid "Frequency" +msgstr "" + +#: actions/siteadminpanel.php:302 +msgid "Snapshots will be sent once every N Web hits" +msgstr "" + +#: actions/siteadminpanel.php:309 +msgid "Report URL" +msgstr "" + +#: actions/siteadminpanel.php:310 +msgid "Snapshots will be sent to this URL" +msgstr "" + +#: actions/siteadminpanel.php:371 actions/useradminpanel.php:226 +#, fuzzy +msgid "Save site settings" +msgstr "線上即時通設定" + #: actions/smssettings.php:58 msgid "SMS Settings" msgstr "" @@ -3060,6 +3339,19 @@ msgstr "無此通知" msgid "API method under construction." msgstr "" +#: actions/unblock.php:59 +#, fuzzy +msgid "You haven't blocked that user." +msgstr "無此使用者" + +#: actions/unsandbox.php:72 +msgid "User is not sandboxed." +msgstr "" + +#: actions/unsilence.php:72 +msgid "User is not silenced." +msgstr "" + #: actions/unsubscribe.php:77 #, fuzzy msgid "No profile id in request." @@ -3079,6 +3371,31 @@ msgstr "此帳號已註冊" msgid "Listenee stream license ‘%s’ is not compatible with site license ‘%s’." msgstr "" +#: actions/useradminpanel.php:58 lib/personalgroupnav.php:115 +msgid "User" +msgstr "" + +#: actions/useradminpanel.php:69 +msgid "User settings for this StatusNet site." +msgstr "" + +#: actions/useradminpanel.php:171 +#, fuzzy +msgid "Closed" +msgstr "無此使用者" + +#: actions/useradminpanel.php:173 +msgid "Is registration on this site prohibited?" +msgstr "" + +#: actions/useradminpanel.php:178 +msgid "Invite-only" +msgstr "" + +#: actions/useradminpanel.php:180 +msgid "Is registration on this site only open to invited users?" +msgstr "" + #: actions/userauthorization.php:105 msgid "Authorize subscription" msgstr "註冊確認" @@ -3227,11 +3544,15 @@ msgstr "" msgid "A file this large would exceed your monthly quota of %d bytes." msgstr "" -#: classes/Message.php:55 +#: classes/Message.php:45 +msgid "You are banned from sending direct messages." +msgstr "" + +#: classes/Message.php:61 msgid "Could not insert message." msgstr "" -#: classes/Message.php:65 +#: classes/Message.php:71 msgid "Could not update message with new URI." msgstr "" @@ -3261,15 +3582,15 @@ msgid "" "few minutes." msgstr "" -#: classes/Notice.php:202 +#: classes/Notice.php:200 msgid "You are banned from posting notices on this site." msgstr "" -#: classes/Notice.php:268 classes/Notice.php:293 +#: classes/Notice.php:265 classes/Notice.php:290 msgid "Problem saving notice." msgstr "" -#: classes/Notice.php:1120 +#: classes/Notice.php:1117 #, php-format msgid "DB error inserting reply: %s" msgstr "增加回覆時,資料庫發生錯誤: %s" @@ -3300,10 +3621,6 @@ msgstr "" msgid "Change email handling" msgstr "" -#: lib/accountsettingsaction.php:124 lib/groupnav.php:119 -msgid "Design" -msgstr "" - #: lib/accountsettingsaction.php:124 #, fuzzy msgid "Design your profile" @@ -3356,100 +3673,104 @@ msgstr "連結" msgid "Connect to services" msgstr "無法連結到伺服器:%s" -#: lib/action.php:439 lib/subgroupnav.php:105 +#: lib/action.php:439 +msgid "Change site configuration" +msgstr "" + +#: lib/action.php:443 lib/subgroupnav.php:105 msgid "Invite" msgstr "" -#: lib/action.php:440 lib/subgroupnav.php:106 +#: lib/action.php:444 lib/subgroupnav.php:106 #, php-format msgid "Invite friends and colleagues to join you on %s" msgstr "" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout" msgstr "登出" -#: lib/action.php:445 +#: lib/action.php:449 msgid "Logout from the site" msgstr "" -#: lib/action.php:450 +#: lib/action.php:454 #, fuzzy msgid "Create an account" msgstr "新增帳號" -#: lib/action.php:453 +#: lib/action.php:457 msgid "Login to the site" msgstr "" -#: lib/action.php:456 lib/action.php:719 +#: lib/action.php:460 lib/action.php:723 msgid "Help" msgstr "求救" -#: lib/action.php:456 +#: lib/action.php:460 #, fuzzy msgid "Help me!" msgstr "求救" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search" msgstr "" -#: lib/action.php:459 +#: lib/action.php:463 msgid "Search for people or text" msgstr "" -#: lib/action.php:480 +#: lib/action.php:484 #, fuzzy msgid "Site notice" msgstr "新訊息" -#: lib/action.php:546 +#: lib/action.php:550 msgid "Local views" msgstr "" -#: lib/action.php:612 +#: lib/action.php:616 #, fuzzy msgid "Page notice" msgstr "新訊息" -#: lib/action.php:714 +#: lib/action.php:718 msgid "Secondary site navigation" msgstr "" -#: lib/action.php:721 +#: lib/action.php:725 msgid "About" msgstr "關於" -#: lib/action.php:723 +#: lib/action.php:727 msgid "FAQ" msgstr "常見問題" -#: lib/action.php:727 +#: lib/action.php:731 msgid "TOS" msgstr "" -#: lib/action.php:730 +#: lib/action.php:734 msgid "Privacy" msgstr "" -#: lib/action.php:732 +#: lib/action.php:736 msgid "Source" msgstr "" -#: lib/action.php:734 +#: lib/action.php:738 msgid "Contact" msgstr "好友名單" -#: lib/action.php:736 +#: lib/action.php:740 msgid "Badge" msgstr "" -#: lib/action.php:764 +#: lib/action.php:768 msgid "StatusNet software license" msgstr "" -#: lib/action.php:767 +#: lib/action.php:771 #, php-format msgid "" "**%%site.name%%** is a microblogging service brought to you by [%%site." @@ -3458,12 +3779,12 @@ msgstr "" "**%%site.name%%**是由[%%site.broughtby%%](%%site.broughtbyurl%%)所提供的微型" "部落格服務" -#: lib/action.php:769 +#: lib/action.php:773 #, php-format msgid "**%%site.name%%** is a microblogging service. " msgstr "**%%site.name%%**是個微型部落格" -#: lib/action.php:771 +#: lib/action.php:775 #, php-format msgid "" "It runs the [StatusNet](http://status.net/) microblogging software, version %" @@ -3471,36 +3792,58 @@ msgid "" "org/licensing/licenses/agpl-3.0.html)." msgstr "" -#: lib/action.php:785 +#: lib/action.php:789 #, fuzzy msgid "Site content license" msgstr "新訊息" -#: lib/action.php:794 +#: lib/action.php:798 msgid "All " msgstr "" -#: lib/action.php:799 +#: lib/action.php:803 msgid "license." msgstr "" -#: lib/action.php:1052 +#: lib/action.php:1067 msgid "Pagination" msgstr "" -#: lib/action.php:1061 +#: lib/action.php:1076 msgid "After" msgstr "" -#: lib/action.php:1069 +#: lib/action.php:1084 #, fuzzy msgid "Before" msgstr "之前的內容»" -#: lib/action.php:1117 +#: lib/action.php:1132 msgid "There was a problem with your session token." msgstr "" +#: lib/adminpanelaction.php:96 +msgid "You cannot make changes to this site." +msgstr "" + +#: lib/adminpanelaction.php:195 +msgid "showForm() not implemented." +msgstr "" + +#: lib/adminpanelaction.php:224 +msgid "saveSettings() not implemented." +msgstr "" + +#: lib/adminpanelaction.php:273 +#, fuzzy +msgid "Basic site configuration" +msgstr "確認信箱" + +#: lib/adminpanelaction.php:276 +#, fuzzy +msgid "Design configuration" +msgstr "確認信箱" + #: lib/attachmentlist.php:87 msgid "Attachments" msgstr "" @@ -3674,30 +4017,36 @@ msgstr "此帳號已註冊" #: lib/command.php:620 #, fuzzy -msgid "You are subscribed to these people: " -msgstr "此帳號已註冊" +msgid "You are subscribed to this person:" +msgid_plural "You are subscribed to these people:" +msgstr[0] "此帳號已註冊" +msgstr[1] "此帳號已註冊" -#: lib/command.php:637 +#: lib/command.php:640 #, fuzzy msgid "No one is subscribed to you." msgstr "無此訂閱" -#: lib/command.php:639 +#: lib/command.php:642 #, fuzzy -msgid "These people are subscribed to you: " -msgstr "此帳號已註冊" +msgid "This person is subscribed to you:" +msgid_plural "These people are subscribed to you:" +msgstr[0] "無此訂閱" +msgstr[1] "無此訂閱" -#: lib/command.php:656 +#: lib/command.php:662 #, fuzzy msgid "You are not a member of any groups." msgstr "無法連結到伺服器:%s" -#: lib/command.php:658 +#: lib/command.php:664 #, fuzzy -msgid "You are a member of these groups: " -msgstr "無法連結到伺服器:%s" +msgid "You are a member of this group:" +msgid_plural "You are a member of these groups:" +msgstr[0] "無法連結到伺服器:%s" +msgstr[1] "無法連結到伺服器:%s" -#: lib/command.php:670 +#: lib/command.php:678 msgid "" "Commands:\n" "on - turn on notifications\n" @@ -3736,20 +4085,20 @@ msgid "" "tracking - not yet implemented.\n" msgstr "" -#: lib/common.php:192 +#: lib/common.php:203 #, fuzzy msgid "No configuration file found. " msgstr "無確認碼" -#: lib/common.php:193 +#: lib/common.php:204 msgid "I looked for configuration files in the following places: " msgstr "" -#: lib/common.php:194 +#: lib/common.php:205 msgid "You may wish to run the installer to fix this." msgstr "" -#: lib/common.php:195 +#: lib/common.php:206 msgid "Go to the installer." msgstr "" @@ -3769,10 +4118,6 @@ msgstr "" msgid "Database error" msgstr "" -#: lib/designsettings.php:101 -msgid "Change background image" -msgstr "" - #: lib/designsettings.php:105 #, fuzzy msgid "Upload file" @@ -3783,65 +4128,6 @@ 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:217 -msgid "Text" -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:372 msgid "Bad default color settings: " msgstr "" @@ -4076,12 +4362,12 @@ msgid "" "%s\n" msgstr "" -#: lib/mail.php:235 +#: lib/mail.php:236 #, php-format msgid "%1$s is now listening to your notices on %2$s." msgstr "現在%1$s在%2$s成為你的粉絲囉" -#: lib/mail.php:240 +#: lib/mail.php:241 #, fuzzy, php-format msgid "" "%1$s is now listening to your notices on %2$s.\n" @@ -4103,29 +4389,29 @@ msgstr "" "%4$s.\n" "敬上。\n" -#: lib/mail.php:253 +#: lib/mail.php:254 #, fuzzy, php-format msgid "Location: %s\n" msgstr "地點" -#: lib/mail.php:255 +#: lib/mail.php:256 #, fuzzy, php-format msgid "Homepage: %s\n" msgstr "個人首頁" -#: lib/mail.php:257 +#: lib/mail.php:258 #, php-format msgid "" "Bio: %s\n" "\n" msgstr "" -#: lib/mail.php:285 +#: lib/mail.php:286 #, php-format msgid "New email address for posting to %s" msgstr "" -#: lib/mail.php:288 +#: lib/mail.php:289 #, php-format msgid "" "You have a new posting address on %1$s.\n" @@ -4138,21 +4424,21 @@ msgid "" "%4$s" msgstr "" -#: lib/mail.php:412 +#: lib/mail.php:413 #, php-format msgid "%s status" msgstr "" -#: lib/mail.php:438 +#: lib/mail.php:439 msgid "SMS confirmation" msgstr "" -#: lib/mail.php:462 +#: lib/mail.php:463 #, php-format msgid "You've been nudged by %s" msgstr "" -#: lib/mail.php:466 +#: lib/mail.php:467 #, php-format msgid "" "%1$s (%2$s) is wondering what you are up to these days and is inviting you " @@ -4168,12 +4454,12 @@ msgid "" "%4$s\n" msgstr "" -#: lib/mail.php:509 +#: lib/mail.php:510 #, php-format msgid "New private message from %s" msgstr "" -#: lib/mail.php:513 +#: lib/mail.php:514 #, php-format msgid "" "%1$s (%2$s) sent you a private message:\n" @@ -4192,12 +4478,12 @@ msgid "" "%5$s\n" msgstr "" -#: lib/mail.php:554 +#: lib/mail.php:559 #, fuzzy, php-format msgid "%s (@%s) added your notice as a favorite" msgstr "現在%1$s在%2$s成為你的粉絲囉" -#: lib/mail.php:556 +#: lib/mail.php:561 #, php-format msgid "" "%1$s (@%7$s) just added your notice from %2$s as one of their favorites.\n" @@ -4218,12 +4504,12 @@ msgid "" "%6$s\n" msgstr "" -#: lib/mail.php:611 +#: lib/mail.php:620 #, php-format msgid "%s (@%s) sent a notice to your attention" msgstr "" -#: lib/mail.php:613 +#: lib/mail.php:622 #, php-format msgid "" "%1$s (@%9$s) just sent a notice to your attention (an '@-reply') on %2$s.\n" @@ -4364,7 +4650,11 @@ msgstr "新增外部個人資料發生錯誤(Error inserting remote profile)" msgid "Duplicate notice" msgstr "新訊息" -#: lib/oauthstore.php:487 +#: lib/oauthstore.php:466 lib/subs.php:48 +msgid "You have been banned from subscribing." +msgstr "" + +#: lib/oauthstore.php:491 msgid "Couldn't insert new subscription." msgstr "無法新增訂閱" @@ -4380,10 +4670,6 @@ msgstr "" msgid "Favorites" msgstr "" -#: lib/personalgroupnav.php:115 -msgid "User" -msgstr "" - #: lib/personalgroupnav.php:124 msgid "Inbox" msgstr "" @@ -4434,6 +4720,15 @@ msgstr "何時加入會員的呢?" msgid "All groups" msgstr "" +#: lib/profileformaction.php:123 +#, fuzzy +msgid "No return-to arguments" +msgstr "無此文件" + +#: lib/profileformaction.php:137 +msgid "unimplemented method" +msgstr "" + #: lib/publicgroupnav.php:78 msgid "Public" msgstr "" @@ -4454,6 +4749,15 @@ msgstr "" msgid "Popular" msgstr "" +#: lib/sandboxform.php:67 +msgid "Sandbox" +msgstr "" + +#: lib/sandboxform.php:78 +#, fuzzy +msgid "Sandbox this user" +msgstr "無此使用者" + #: lib/searchaction.php:120 msgid "Search site" msgstr "" @@ -4491,6 +4795,16 @@ msgstr "" msgid "More..." msgstr "" +#: lib/silenceform.php:67 +#, fuzzy +msgid "Silence" +msgstr "新訊息" + +#: lib/silenceform.php:78 +#, fuzzy +msgid "Silence this user" +msgstr "無此使用者" + #: lib/subgroupnav.php:83 #, fuzzy, php-format msgid "People %s subscribes to" @@ -4520,28 +4834,28 @@ msgstr "" msgid "(none)" msgstr "" -#: lib/subs.php:48 +#: lib/subs.php:52 msgid "Already subscribed!" msgstr "" -#: lib/subs.php:52 +#: lib/subs.php:56 msgid "User has blocked you." msgstr "" -#: lib/subs.php:56 +#: lib/subs.php:60 msgid "Could not subscribe." msgstr "" -#: lib/subs.php:75 +#: lib/subs.php:79 msgid "Could not subscribe other to you." msgstr "" -#: lib/subs.php:124 +#: lib/subs.php:128 #, fuzzy msgid "Not subscribed!" msgstr "此帳號已註冊" -#: lib/subs.php:136 +#: lib/subs.php:140 msgid "Couldn't delete subscription." msgstr "無法刪除帳號" @@ -4553,6 +4867,29 @@ msgstr "" msgid "Top posters" msgstr "" +#: lib/unblockform.php:80 +#, fuzzy +msgid "Unlock this user" +msgstr "無此使用者" + +#: lib/unsandboxform.php:69 +msgid "Unsandbox" +msgstr "" + +#: lib/unsandboxform.php:80 +#, fuzzy +msgid "Unsandbox this user" +msgstr "無此使用者" + +#: lib/unsilenceform.php:67 +msgid "Unsilence" +msgstr "" + +#: lib/unsilenceform.php:78 +#, fuzzy +msgid "Unsilence this user" +msgstr "無此使用者" + #: lib/unsubscribeform.php:113 lib/unsubscribeform.php:137 msgid "Unsubscribe from this user" msgstr "" @@ -4656,3 +4993,7 @@ msgstr "" #: scripts/maildaemon.php:61 msgid "Sorry, no incoming email allowed." msgstr "" + +#, fuzzy +#~ msgid "These people are subscribed to you: " +#~ msgstr "此帳號已註冊" From 3bff3b2b327f7c8b811b85dda049cdd81fcc25d9 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 18 Nov 2009 14:44:39 -0500 Subject: [PATCH 14/38] Improve the not authorized error message --- actions/login.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/login.php b/actions/login.php index ad57dd6678..881df0099a 100644 --- a/actions/login.php +++ b/actions/login.php @@ -146,7 +146,7 @@ class LoginAction extends Action // success! if (!common_set_user($user)) { - $this->serverError(_('Error setting user.')); + $this->serverError(_('Error setting user. You are probably not authorized.')); return; } From 9ed70a5b111c57923eff46da84c8f6e3167eb01e Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 18 Nov 2009 14:49:42 -0500 Subject: [PATCH 15/38] Add some functions that were previously undefined --- .../LdapAuthorizationPlugin.php | 65 +++++++++++++++++++ 1 file changed, 65 insertions(+) diff --git a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php index 5173781f9f..98f4034d24 100644 --- a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php +++ b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php @@ -142,4 +142,69 @@ class LdapAuthorizationPlugin extends AuthorizationPlugin return false; } } + + function ldap_get_config(){ + $config = array(); + $keys = array('host','port','version','starttls','binddn','bindpw','basedn','options','filter','scope'); + foreach($keys as $key){ + $value = $this->$key; + if($value!==null){ + $config[$key]=$value; + } + } + return $config; + } + + //-----the below function were copied from LDAPAuthenticationPlugin. They will be moved to a utility class soon.----\\ + function ldap_get_connection($config = null){ + if($config == null){ + $config = $this->ldap_get_config(); + } + + //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; + } + return $ldap; + } + + /** + * 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($username,$attributes=array(),$ldap=null){ + if($ldap==null) { + $ldap = $this->ldap_get_connection(); + } + $filter = Net_LDAP2_Filter::create($this->attributes['username'], 'equals', $username); + $options = array( + 'scope' => 'sub', + 'attributes' => $attributes + ); + $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; + }else{ + common_log(LOG_WARNING, 'Found ' . $search->count() . ' ldap user with the username: ' . $username); + return false; + } + } } From 645b7dec2b40fb9c34306e7b445a120c6c09382d Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 18 Nov 2009 12:29:47 -0800 Subject: [PATCH 16/38] Terminology consistency fix: 'Unlock' -> 'Unblock' in unblock form description. --- lib/unblockform.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/unblockform.php b/lib/unblockform.php index 4fe28b21a1..2a444f7cd0 100644 --- a/lib/unblockform.php +++ b/lib/unblockform.php @@ -77,6 +77,6 @@ class UnblockForm extends ProfileActionForm function description() { - return _('Unlock this user'); + return _('Unblock this user'); } } From 297f320e6f30aa973b275efc4aed59bf8c45fc0a Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 18 Nov 2009 15:40:27 -0500 Subject: [PATCH 17/38] attributes['username'] is required --- .../LdapAuthentication/LdapAuthenticationPlugin.php | 1 - plugins/LdapAuthorization/LdapAuthorizationPlugin.php | 11 +++++++---- plugins/LdapAuthorization/README | 9 +++++++-- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php index 555dabf78d..25531a8116 100644 --- a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php +++ b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php @@ -189,7 +189,6 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin } $filter = Net_LDAP2_Filter::create($this->attributes['username'], 'equals', $username); $options = array( - 'scope' => 'sub', 'attributes' => $attributes ); $search = $ldap->search(null,$filter,$options); diff --git a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php index 98f4034d24..91ee9b1abc 100644 --- a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php +++ b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php @@ -50,6 +50,7 @@ class LdapAuthorizationPlugin extends AuthorizationPlugin public $uniqueMember_attribute = null; public $roles_to_groups = null; public $login_group = null; + public $attributes = array(); function onInitializePlugin(){ parent::onInitializePlugin(); @@ -68,6 +69,9 @@ class LdapAuthorizationPlugin extends AuthorizationPlugin if(!isset($this->roles_to_groups)){ throw new Exception("roles_to_groups must be set."); } + if(!isset($this->attributes['username'])){ + throw new Exception("username attribute must be set."); + } } //---interface implementation---// @@ -86,7 +90,7 @@ class LdapAuthorizationPlugin extends AuthorizationPlugin } } }else{ - if($this->isMemberOfGroup($entry->dn(),login_group)){ + if($this->isMemberOfGroup($entry->dn(),$this->login_group)){ return true; } } @@ -142,8 +146,8 @@ class LdapAuthorizationPlugin extends AuthorizationPlugin return false; } } - - function ldap_get_config(){ + + function ldap_get_config(){ $config = array(); $keys = array('host','port','version','starttls','binddn','bindpw','basedn','options','filter','scope'); foreach($keys as $key){ @@ -187,7 +191,6 @@ class LdapAuthorizationPlugin extends AuthorizationPlugin } $filter = Net_LDAP2_Filter::create($this->attributes['username'], 'equals', $username); $options = array( - 'scope' => 'sub', 'attributes' => $attributes ); $search = $ldap->search(null,$filter,$options); diff --git a/plugins/LdapAuthorization/README b/plugins/LdapAuthorization/README index 2166b27266..fcf1efa47e 100644 --- a/plugins/LdapAuthorization/README +++ b/plugins/LdapAuthorization/README @@ -45,6 +45,9 @@ filter: Default search filter. scope: Default search scope. See http://pear.php.net/manual/en/package.networking.net-ldap2.connecting.php +attributes: an array that relates StatusNet user attributes to LDAP ones + username*: LDAP attribute value entered when authenticating to StatusNet + * required default values are in (parenthesis) @@ -72,7 +75,7 @@ addPlugin('ldapAuthentication', array( addPlugin('ldapAuthorization', array( 'provider_name'=>'Example', 'authoritative'=>false, - 'uniqueMember_attribute'=>'uniqueMember', + 'uniqueMember_attribute'=>'member', 'roles_to_groups'=> array( 'moderator'=>'CN=SN-Moderators,OU=Users,OU=StatusNet,OU=US,DC=americas,DC=global,DC=loc', 'administrator'=> array('CN=System-Adminstrators,OU=Users,OU=StatusNet,OU=US,DC=americas,DC=global,DC=loc', @@ -81,6 +84,8 @@ addPlugin('ldapAuthorization', array( 'binddn'=>'username', 'bindpw'=>'password', 'basedn'=>'OU=Users,OU=StatusNet,OU=US,DC=americas,DC=global,DC=loc', - 'host'=>array('server1', 'server2') + 'host'=>array('server1', 'server2'), + 'attributes'=>array( + 'username'=>'sAMAccountName') )); From 9baddf4e44e173e3e70c4c3f2198857f16320544 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 18 Nov 2009 12:43:52 -0800 Subject: [PATCH 18/38] Add MuSTArD to notice sources --- db/notice_source.sql | 1 + 1 file changed, 1 insertion(+) diff --git a/db/notice_source.sql b/db/notice_source.sql index 5c5c939dd0..10ff0d55aa 100644 --- a/db/notice_source.sql +++ b/db/notice_source.sql @@ -30,6 +30,7 @@ VALUES ('mbpidgin','mbpidgin','http://code.google.com/p/microblog-purple/', now()), ('Mobidentica', 'Mobidentica', 'http://www.substanceofcode.com/software/mobidentica/', now()), ('moconica','Moconica','http://moconica.com/', now()), + ('mustard', 'MuSTArDroid', 'https://launchpad.net/mustardroid', now()), ('nambu','Nambu','http://www.nambu.com/', now()), ('peoplebrowsr', 'PeopleBrowsr', 'http://www.peoplebrowsr.com/', now()), ('Pikchur','Pikchur','http://www.pikchur.com/', now()), From a215ce6ed6d3a0eb9bb29db5ebe103e28f2ff95e Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 18 Nov 2009 15:53:07 -0500 Subject: [PATCH 19/38] correct login checking logic --- plugins/Authorization/AuthorizationPlugin.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/plugins/Authorization/AuthorizationPlugin.php b/plugins/Authorization/AuthorizationPlugin.php index be39aedd21..6f21c93109 100644 --- a/plugins/Authorization/AuthorizationPlugin.php +++ b/plugins/Authorization/AuthorizationPlugin.php @@ -73,11 +73,7 @@ abstract class AuthorizationPlugin extends Plugin function onStartSetUser(&$user) { $loginAllowed = $this->loginAllowed($user); if($loginAllowed === true){ - if($this->authoritative) { - return false; - }else{ - return; - } + return; }else if($loginAllowed === false){ $user = null; return false; From b417e4d24f2c4c13439c01f9f664bf6090c99016 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 18 Nov 2009 15:53:22 -0500 Subject: [PATCH 20/38] rename isMemberOfGroup to be more consistent with other LDAP functions --- .../LdapAuthorization/LdapAuthorizationPlugin.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php index 91ee9b1abc..cf1347bed0 100644 --- a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php +++ b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php @@ -85,12 +85,12 @@ class LdapAuthorizationPlugin extends AuthorizationPlugin if(isset($this->login_group)){ if(is_array($this->login_group)){ foreach($this->login_group as $group){ - if($this->isMemberOfGroup($entry->dn(),$group)){ + if($this->ldap_is_dn_member_of_group($entry->dn(),$group)){ return true; } } }else{ - if($this->isMemberOfGroup($entry->dn(),$this->login_group)){ + if($this->ldap_is_dn_member_of_group($entry->dn(),$this->login_group)){ return true; } } @@ -117,12 +117,12 @@ class LdapAuthorizationPlugin extends AuthorizationPlugin if(isset($this->roles_to_groups[$name])){ if(is_array($this->roles_to_groups[$name])){ foreach($this->roles_to_groups[$name] as $group){ - if($this->isMemberOfGroup($entry->dn(),$group)){ + if($this->ldap_is_dn_member_of_group($entry->dn(),$group)){ return true; } } }else{ - if($this->isMemberOfGroup($entry->dn(),$this->roles_to_groups[$name])){ + if($this->ldap_is_dn_member_of_group($entry->dn(),$this->roles_to_groups[$name])){ return true; } } @@ -132,9 +132,9 @@ class LdapAuthorizationPlugin extends AuthorizationPlugin return false; } - function isMemberOfGroup($userDn, $groupDn) + function ldap_is_dn_member_of_group($userDn, $groupDn) { - $ldap = ldap_get_connection(); + $ldap = $this->ldap_get_connection(); $link = $ldap->getLink(); $r = ldap_compare($link, $groupDn, $this->uniqueMember_attribute, $userDn); if ($r === true){ From 199ccdb53fbd732eeced3edf734e39687729da9b Mon Sep 17 00:00:00 2001 From: Eric Helgeson Date: Wed, 18 Nov 2009 15:53:33 -0500 Subject: [PATCH 21/38] Consolidate group creation into static function in User_group --- actions/apigroupcreate.php | 62 +++++--------------------------------- actions/newgroup.php | 46 +++++----------------------- classes/User_group.php | 62 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 76 insertions(+), 94 deletions(-) diff --git a/actions/apigroupcreate.php b/actions/apigroupcreate.php index 895dfb7aba..8827d1c5ce 100644 --- a/actions/apigroupcreate.php +++ b/actions/apigroupcreate.php @@ -117,61 +117,13 @@ class ApiGroupCreateAction extends ApiAuthAction return; } - $group = new User_group(); - - $group->query('BEGIN'); - - $group->nickname = $this->nickname; - $group->fullname = $this->fullname; - $group->homepage = $this->homepage; - $group->description = $this->description; - $group->location = $this->location; - $group->created = common_sql_now(); - - $result = $group->insert(); - - if (!$result) { - common_log_db_error($group, 'INSERT', __FILE__); - $this->serverError( - _('Could not create group.'), - 500, - $this->format - ); - return; - } - - $result = $group->setAliases($this->aliases); - - if (!$result) { - $this->serverError( - _('Could not create aliases.'), - 500, - $this->format - ); - return; - } - - $member = new Group_member(); - - $member->group_id = $group->id; - $member->profile_id = $this->user->id; - $member->is_admin = 1; - $member->created = $group->created; - - $result = $member->insert(); - - if (!$result) { - common_log_db_error($member, 'INSERT', __FILE__); - $this->serverError( - _('Could not set group membership.'), - 500, - $this->format - ); - return; - } - - $group->query('COMMIT'); - + $group = User_group::register(array('nickname' => $this->nickname, + 'fullname' => $this->fullname, + 'homepage' => $this->homepage, + 'description' => $this->description, + 'location' => $this->location, + 'aliases' => $this->aliases, + 'userid' => $this->user->id)); switch($this->format) { case 'xml': $this->showSingleXmlGroup($group); diff --git a/actions/newgroup.php b/actions/newgroup.php index 80da9861a0..25da7f8fc7 100644 --- a/actions/newgroup.php +++ b/actions/newgroup.php @@ -186,45 +186,13 @@ class NewgroupAction extends Action assert(!is_null($cur)); - $group = new User_group(); - - $group->query('BEGIN'); - - $group->nickname = $nickname; - $group->fullname = $fullname; - $group->homepage = $homepage; - $group->description = $description; - $group->location = $location; - $group->created = common_sql_now(); - - $result = $group->insert(); - - if (!$result) { - common_log_db_error($group, 'INSERT', __FILE__); - $this->serverError(_('Could not create group.')); - } - - $result = $group->setAliases($aliases); - - if (!$result) { - $this->serverError(_('Could not create aliases.')); - } - - $member = new Group_member(); - - $member->group_id = $group->id; - $member->profile_id = $cur->id; - $member->is_admin = 1; - $member->created = $group->created; - - $result = $member->insert(); - - if (!$result) { - common_log_db_error($member, 'INSERT', __FILE__); - $this->serverError(_('Could not set group membership.')); - } - - $group->query('COMMIT'); + $group = User_group::register(array('nickname' => $nickname, + 'fullname' => $fullname, + 'homepage' => $homepage, + 'description' => $description, + 'location' => $location, + 'aliases' => $aliases, + 'userid' => $cur->id)); common_redirect($group->homeUrl(), 303); } diff --git a/classes/User_group.php b/classes/User_group.php index b92638f7aa..c86eadf8fa 100644 --- a/classes/User_group.php +++ b/classes/User_group.php @@ -354,4 +354,66 @@ class User_group extends Memcached_DataObject return $xs->getString(); } + + static function register($fields) { + + // MAGICALLY put fields into current scope + + extract($fields); + + $group = new User_group(); + + $group->query('BEGIN'); + + $group->nickname = $nickname; + $group->fullname = $fullname; + $group->homepage = $homepage; + $group->description = $description; + $group->location = $location; + $group->created = common_sql_now(); + + $result = $group->insert(); + + if (!$result) { + common_log_db_error($group, 'INSERT', __FILE__); + $this->serverError( + _('Could not create group.'), + 500, + $this->format + ); + return; + } + $result = $group->setAliases($aliases); + + if (!$result) { + $this->serverError( + _('Could not create aliases.'), + 500, + $this->format + ); + return; + } + + $member = new Group_member(); + + $member->group_id = $group->id; + $member->profile_id = $userid; + $member->is_admin = 1; + $member->created = $group->created; + + $result = $member->insert(); + + if (!$result) { + common_log_db_error($member, 'INSERT', __FILE__); + $this->serverError( + _('Could not set group membership.'), + 500, + $this->format + ); + return; + } + + $group->query('COMMIT'); + return $group; + } } From 745ea277d8b45e0940cf0da3bafbe32470afa121 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 18 Nov 2009 16:09:58 -0500 Subject: [PATCH 22/38] Should not canonicalize nickname before calling common_check_user --- actions/login.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/login.php b/actions/login.php index 881df0099a..63955e3f59 100644 --- a/actions/login.php +++ b/actions/login.php @@ -133,7 +133,7 @@ class LoginAction extends Action return; } - $nickname = common_canonical_nickname($this->trimmed('nickname')); + $nickname = $this->trimmed('nickname'); $password = $this->arg('password'); $user = common_check_user($nickname, $password); From a882d093bc99d1162dac29c161253dc037c314b9 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 18 Nov 2009 16:12:55 -0500 Subject: [PATCH 23/38] Blasted missing a $this! --- plugins/Authorization/AuthorizationPlugin.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Authorization/AuthorizationPlugin.php b/plugins/Authorization/AuthorizationPlugin.php index 6f21c93109..e4e046d088 100644 --- a/plugins/Authorization/AuthorizationPlugin.php +++ b/plugins/Authorization/AuthorizationPlugin.php @@ -88,7 +88,7 @@ abstract class AuthorizationPlugin extends Plugin } function onStartSetApiUser(&$user) { - return onStartSetUser(&$user); + return $this->onStartSetUser(&$user); } function onStartHasRole($profile, $name, &$has_role) { From 6a505da981c47057a2d8e65e1a208b9aad35dc73 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 18 Nov 2009 16:41:38 -0500 Subject: [PATCH 24/38] do not required that roles_to_groups be specified --- plugins/LdapAuthorization/LdapAuthorizationPlugin.php | 5 +---- plugins/LdapAuthorization/README | 2 +- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php index cf1347bed0..69357f8aad 100644 --- a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php +++ b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php @@ -48,7 +48,7 @@ class LdapAuthorizationPlugin extends AuthorizationPlugin public $scope=null; public $provider_name = null; public $uniqueMember_attribute = null; - public $roles_to_groups = null; + public $roles_to_groups = array(); public $login_group = null; public $attributes = array(); @@ -66,9 +66,6 @@ class LdapAuthorizationPlugin extends AuthorizationPlugin if(!isset($this->uniqueMember_attribute)){ throw new Exception("uniqueMember_attribute must be set."); } - if(!isset($this->roles_to_groups)){ - throw new Exception("roles_to_groups must be set."); - } if(!isset($this->attributes['username'])){ throw new Exception("username attribute must be set."); } diff --git a/plugins/LdapAuthorization/README b/plugins/LdapAuthorization/README index fcf1efa47e..44239d8e06 100644 --- a/plugins/LdapAuthorization/README +++ b/plugins/LdapAuthorization/README @@ -16,7 +16,7 @@ authoritative (false): should this plugin be authoritative for authorization? uniqueMember_attribute ('uniqueMember')*: the attribute of a group that lists the DNs of its members -roles_to_groups*: array that maps StatusNet roles to LDAP groups +roles_to_groups: array that maps StatusNet roles to LDAP groups some StatusNet roles are: moderator, administrator, sandboxed, silenced login_group: if this is set to a group DN, only members of that group will be allowed to login From 6d69d89cfea15e2a626cdf9378b75a3dfae65d4a Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 18 Nov 2009 16:46:16 -0500 Subject: [PATCH 25/38] Reuse ldap connections for the default config --- plugins/LdapAuthentication/LdapAuthenticationPlugin.php | 4 ++++ plugins/LdapAuthorization/LdapAuthorizationPlugin.php | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php index 25531a8116..9e089485c6 100644 --- a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php +++ b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php @@ -160,6 +160,10 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin function ldap_get_connection($config = null){ if($config == null){ + static $ldap = null; + if($ldap != null){ + return $ldap; + } $config = $this->ldap_get_config(); } diff --git a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php index 69357f8aad..91a343f408 100644 --- a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php +++ b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php @@ -159,6 +159,10 @@ class LdapAuthorizationPlugin extends AuthorizationPlugin //-----the below function were copied from LDAPAuthenticationPlugin. They will be moved to a utility class soon.----\\ function ldap_get_connection($config = null){ if($config == null){ + static $ldap = null; + if($ldap != null){ + return $ldap; + } $config = $this->ldap_get_config(); } From a00141a180d54cbcc244e0157c72f53ac53779b3 Mon Sep 17 00:00:00 2001 From: Craig Andrews Date: Wed, 18 Nov 2009 16:58:06 -0500 Subject: [PATCH 26/38] You cannot use static that way - using another approach to save reuse the default ldap connection --- .../LdapAuthentication/LdapAuthenticationPlugin.php | 11 ++++------- plugins/LdapAuthorization/LdapAuthorizationPlugin.php | 11 ++++------- 2 files changed, 8 insertions(+), 14 deletions(-) diff --git a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php index 9e089485c6..8caacff464 100644 --- a/plugins/LdapAuthentication/LdapAuthenticationPlugin.php +++ b/plugins/LdapAuthentication/LdapAuthenticationPlugin.php @@ -159,24 +159,21 @@ class LdapAuthenticationPlugin extends AuthenticationPlugin } function ldap_get_connection($config = null){ - if($config == null){ - static $ldap = null; - if($ldap != null){ - return $ldap; - } - $config = $this->ldap_get_config(); + if($config == null && isset($this->default_ldap)){ + return $this->default_ldap; } //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 = new Net_LDAP2(isset($config)?$config:$this->ldap_get_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; } + if($config == null) $this->default_ldap=$ldap; return $ldap; } diff --git a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php index 91a343f408..5e759c3793 100644 --- a/plugins/LdapAuthorization/LdapAuthorizationPlugin.php +++ b/plugins/LdapAuthorization/LdapAuthorizationPlugin.php @@ -158,24 +158,21 @@ class LdapAuthorizationPlugin extends AuthorizationPlugin //-----the below function were copied from LDAPAuthenticationPlugin. They will be moved to a utility class soon.----\\ function ldap_get_connection($config = null){ - if($config == null){ - static $ldap = null; - if($ldap != null){ - return $ldap; - } - $config = $this->ldap_get_config(); + if($config == null && isset($this->default_ldap)){ + return $this->default_ldap; } //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 = new Net_LDAP2(isset($config)?$config:$this->ldap_get_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; } + if($config == null) $this->default_ldap=$ldap; return $ldap; } From 1827256d0e2b49a77df46f90249c2ab893e0ac4f Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 18 Nov 2009 14:57:18 -0800 Subject: [PATCH 27/38] Added support for pgettext() and npgettext() to separate contexts for translatable messages that are going to be ambiguous in English original. --- lib/common.php | 4 --- lib/language.php | 57 +++++++++++++++++++++++++++++++++++++++++++ scripts/update_pot.sh | 13 +++++++++- 3 files changed, 69 insertions(+), 5 deletions(-) diff --git a/lib/common.php b/lib/common.php index 203b37c872..732c22bfdf 100644 --- a/lib/common.php +++ b/lib/common.php @@ -59,10 +59,6 @@ require_once('PEAR.php'); require_once('DB/DataObject.php'); require_once('DB/DataObject/Cast.php'); # for dates -if (!function_exists('gettext')) { - require_once("php-gettext/gettext.inc"); -} - require_once(INSTALLDIR.'/lib/language.php'); // This gets included before the config file, so that admin code and plugins diff --git a/lib/language.php b/lib/language.php index 2570907b77..a99bf89e35 100644 --- a/lib/language.php +++ b/lib/language.php @@ -32,6 +32,63 @@ if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); } +if (!function_exists('gettext')) { + require_once("php-gettext/gettext.inc"); +} + +if (!function_exists('pgettext')) { + /** + * Context-aware gettext wrapper; use when messages in different contexts + * won't be distinguished from the English source but need different translations. + * The context string will appear as msgctxt in the .po files. + * + * Not currently exposed in PHP's gettext module; implemented to be compat + * with gettext.h's macros. + * + * @param string $context context identifier, should be some key like "menu|file" + * @param string $msgid English source text + * @return string original or translated message + */ + function pgettext($context, $msg) + { + $msgid = $context . "\004" . $msg; + $out = dcgettext(textdomain(NULL), $msgid, LC_MESSAGES); + if ($out == $msgid) { + return $msg; + } else { + return $out; + } + } +} + +if (!function_exists('npgettext')) { + /** + * Context-aware ngettext wrapper; use when messages in different contexts + * won't be distinguished from the English source but need different translations. + * The context string will appear as msgctxt in the .po files. + * + * Not currently exposed in PHP's gettext module; implemented to be compat + * with gettext.h's macros. + * + * @param string $context context identifier, should be some key like "menu|file" + * @param string $msg singular English source text + * @param string $plural plural English source text + * @param int $n number of items to control plural selection + * @return string original or translated message + */ + function npgettext($context, $msg, $plural, $n) + { + $msgid = $context . "\004" . $msg; + $out = dcngettext(textdomain(NULL), $msgid, $plural, $n, LC_MESSAGES); + if ($out == $msgid) { + return $msg; + } else { + return $out; + } + } +} + + /** * Content negotiation for language codes * diff --git a/scripts/update_pot.sh b/scripts/update_pot.sh index 9419e4337f..8b44d43b49 100755 --- a/scripts/update_pot.sh +++ b/scripts/update_pot.sh @@ -1,3 +1,14 @@ cd `dirname $0` cd .. -xgettext --from-code=UTF-8 --default-domain=statusnet --output=locale/statusnet.po --language=PHP --join-existing actions/*.php classes/*.php lib/*.php scripts/*.php +xgettext \ + --from-code=UTF-8 \ + --default-domain=statusnet \ + --output=locale/statusnet.po \ + --language=PHP \ + --keyword="pgettext:1c,2" \ + --keyword="npgettext:1c,2,3" \ + --join-existing \ + actions/*.php \ + classes/*.php \ + lib/*.php \ + scripts/*.php From 69abde6e0cde3f010d993f0a86294fe57154aa4c Mon Sep 17 00:00:00 2001 From: Siebrand Mazeland Date: Thu, 19 Nov 2009 01:04:47 +0100 Subject: [PATCH 28/38] Removing "join-existing". Do not add on update, just rebuild complete pot. The pot file gets really dirty, really quickly. --- scripts/update_pot.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/update_pot.sh b/scripts/update_pot.sh index 8b44d43b49..de53fe7c90 100755 --- a/scripts/update_pot.sh +++ b/scripts/update_pot.sh @@ -7,7 +7,6 @@ xgettext \ --language=PHP \ --keyword="pgettext:1c,2" \ --keyword="npgettext:1c,2,3" \ - --join-existing \ actions/*.php \ classes/*.php \ lib/*.php \ From f7a3e508ba8d0f8f9487724f3e417554d1d0b4d8 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Wed, 18 Nov 2009 17:36:55 -0800 Subject: [PATCH 29/38] Check profile->update() result against false exactly; we may legitimately get 0 back if no rows were changed. DB objects normally would return true, but the comparisons aren't 100% reliable when we've got numbers which could be ints or strings or floats. Caused failures saving profile settings with Geonames plugin enabled; the lat/lon/id fields would get re-set with freshly looked up values which no longer matched the previous values as far as the data object could tell, but which saved as the same ol' numbers. --- actions/profilesettings.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/actions/profilesettings.php b/actions/profilesettings.php index 0a0cc59973..359664096e 100644 --- a/actions/profilesettings.php +++ b/actions/profilesettings.php @@ -323,7 +323,7 @@ class ProfilesettingsAction extends AccountSettingsAction $result = $profile->update($orig_profile); - if (!$result) { + if ($result === false) { common_log_db_error($profile, 'UPDATE', __FILE__); $this->serverError(_('Couldn\'t save profile.')); return; From cf7188a4586c5ce5b539229035866cf494413a76 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Wed, 18 Nov 2009 18:25:36 -0800 Subject: [PATCH 30/38] Design admin panel mostly done. --- actions/designadminpanel.php | 307 +++++++++++++++++++++-------------- actions/siteadminpanel.php | 47 +----- lib/adminform.php | 86 ++++++++++ lib/adminpanelaction.php | 27 +++ lib/form.php | 10 ++ 5 files changed, 312 insertions(+), 165 deletions(-) create mode 100644 lib/adminform.php diff --git a/actions/designadminpanel.php b/actions/designadminpanel.php index d1aadc8c27..156c3f1ab5 100644 --- a/actions/designadminpanel.php +++ b/actions/designadminpanel.php @@ -74,7 +74,7 @@ class DesignadminpanelAction extends AdminPanelAction } /** - * Show the site admin panel form + * Get the default design and show the design admin panel form * * @return void */ @@ -82,7 +82,6 @@ class DesignadminpanelAction extends AdminPanelAction function showForm() { $this->design = Design::siteDesign(); - $form = new DesignAdminPanelForm($this); $form->show(); return; @@ -101,8 +100,7 @@ class DesignadminpanelAction extends AdminPanelAction } else if ($this->arg('defaults')) { $this->restoreDefaults(); } else { - $this->success = false; - $this->message = 'Unexpected form submission.'; + $this->clientError(_('Unexpected form submission.')); } } @@ -114,7 +112,6 @@ class DesignadminpanelAction extends AdminPanelAction function saveDesignSettings() { - // Workaround for PHP returning empty $_POST and $_FILES when POST // length > post_max_size in php.ini @@ -124,8 +121,7 @@ class DesignadminpanelAction extends AdminPanelAction ) { $msg = _('The server was unable to handle that much POST ' . 'data (%s bytes) due to its current configuration.'); - $this->success = false; - $this->msg = $e->getMessage(sprintf($msg, $_SERVER['CONTENT_LENGTH'])); + $this->clientException(sprintf($msg, $_SERVER['CONTENT_LENGTH'])); return; } @@ -133,25 +129,30 @@ class DesignadminpanelAction extends AdminPanelAction $bgimage = $this->saveBackgroundImage(); - static $settings = array('theme'); + static $settings = array( + 'site' => array('theme', 'logo'), + 'theme' => array('server', 'dir', 'path'), + 'avatar' => array('server', 'dir', 'path'), + 'background' => array('server', 'dir', 'path') + ); + $values = array(); - foreach ($settings as $setting) { - $values[$setting] = $this->trimmed($setting); + foreach ($settings as $section => $parts) { + foreach ($parts as $setting) { + $values[$section][$setting] = $this->trimmed("$section-$setting"); + } } - // This throws an exception on validation errors - try { - $bgcolor = new WebColor($this->trimmed('design_background')); - $ccolor = new WebColor($this->trimmed('design_content')); - $sbcolor = new WebColor($this->trimmed('design_sidebar')); - $tcolor = new WebColor($this->trimmed('design_text')); - $lcolor = new WebColor($this->trimmed('design_links')); - } catch (WebColorException $e) { - $this->success = false; - $this->msg = $e->getMessage(); - return; - } + $this->validate($values); + + // assert(all values are valid); + + $bgcolor = new WebColor($this->trimmed('design_background')); + $ccolor = new WebColor($this->trimmed('design_content')); + $sbcolor = new WebColor($this->trimmed('design_sidebar')); + $tcolor = new WebColor($this->trimmed('design_text')); + $lcolor = new WebColor($this->trimmed('design_links')); $onoff = $this->arg('design_background-image_onoff'); @@ -166,16 +167,14 @@ class DesignadminpanelAction extends AdminPanelAction $tile = $this->boolean('design_background-image_repeat'); - $this->validate($values); - - // assert(all values are valid); - $config = new Config(); $config->query('BEGIN'); - foreach ($settings as $setting) { - Config::save('site', $setting, $values[$setting]); + foreach ($settings as $section => $parts) { + foreach ($parts as $setting) { + Config::save($section, $setting, $values[$section][$setting]); + } } if (isset($bgimage)) { @@ -197,32 +196,6 @@ class DesignadminpanelAction extends AdminPanelAction $config->query('COMMIT'); return; - - } - - /** - * Delete a design setting - * - * @return mixed $result false if something didn't work - */ - - function deleteSetting($section, $setting) - { - $config = new Config(); - - $config->section = $section; - $config->setting = $setting; - - if ($config->find(true)) { - $result = $config->delete(); - if (!$result) { - common_log_db_error($config, 'DELETE', __FILE__); - $this->clientError(_("Unable to delete design setting.")); - return null; - } - } - - return $result; } /** @@ -233,6 +206,7 @@ class DesignadminpanelAction extends AdminPanelAction function restoreDefaults() { + $this->deleteSetting('site', 'logo'); $this->deleteSetting('site', 'theme'); $settings = array( @@ -243,6 +217,8 @@ class DesignadminpanelAction extends AdminPanelAction foreach ($settings as $setting) { $this->deleteSetting('design', $setting); } + + // XXX: Should we restore the default dir settings, etc.? --Z } /** @@ -264,8 +240,7 @@ class DesignadminpanelAction extends AdminPanelAction $imagefile = ImageFile::fromUpload('design_background-image_file'); } catch (Exception $e) { - $this->success = false; - $this->msg = $e->getMessage(); + $this->clientError('Unable to save background image.'); return; } @@ -297,8 +272,48 @@ class DesignadminpanelAction extends AdminPanelAction function validate(&$values) { - if (!in_array($values['theme'], Theme::listAvailable())) { - $this->clientError(sprintf(_("Theme not available: %s"), $values['theme'])); + + if (!empty($values['site']['logo']) && + !Validate::uri($values['site']['logo'], array('allowed_schemes' => array('http', 'https')))) { + $this->clientError(_("Invalid logo URL.")); + } + + if (!in_array($values['site']['theme'], Theme::listAvailable())) { + $this->clientError(sprintf(_("Theme not available: %s"), $values['site']['theme'])); + } + + // Make sure the directories are there + + if (!empty($values['theme']['dir']) && !is_readable($values['theme']['dir'])) { + $this->clientError(sprintf(_("Theme directory not readable: %s"), $values['theme']['dir'])); + } + + if (empty($values['avatar']['dir']) || !is_writable($values['avatar']['dir'])) { + $this->clientError(sprintf(_("Avatar directory not writable: %s"), $values['avatar']['dir'])); + } + + if (empty($values['background']['dir']) || !is_writable($values['background']['dir'])) { + $this->clientError(sprintf(_("Background directory not writable: %s"), $values['background']['dir'])); + } + + // Do we need to do anything else but validate the + // other fields for length? Design settings are + // validated elsewhere --Z + + static $settings = array( + 'theme' => array('server', 'path'), + 'avatar' => array('server', 'path'), + 'background' => array('server', 'path') + ); + + foreach ($settings as $section => $parts) { + foreach ($parts as $setting) { + if (mb_strlen($values[$section][$setting]) > 255) { + $this->clientError(sprintf(_("Max length for %s %s is 255 characters."), + $section, $setting)); + return; + } + } } } @@ -332,7 +347,7 @@ class DesignadminpanelAction extends AdminPanelAction } -class DesignAdminPanelForm extends Form +class DesignAdminPanelForm extends AdminForm { /** @@ -393,33 +408,85 @@ class DesignAdminPanelForm extends Form function formData() { - $design = $this->out->design; + $this->out->elementStart('fieldset', array('id' => 'settings_logo')); + $this->out->element('legend', null, _('Change logo')); + + $this->out->elementStart('ul', 'form_data'); + + $this->li(); + $this->input('logo', _('Site logo'), 'Logo for the site (full URL)', 'site'); + $this->unli(); + + $this->out->elementEnd('ul'); + + $this->out->elementEnd('fieldset'); + $this->out->elementStart('fieldset', array('id' => 'settings_theme')); + $this->out->element('legend', null, _('Change theme')); + + $this->out->elementStart('ul', 'form_data'); $themes = Theme::listAvailable(); - asort($themes); + // XXX: listAvailable() can return an empty list if you + // screw up your settings, so just in case: + if (empty($themes)) { + $themes = array('default', 'default'); + } + + asort($themes); $themes = array_combine($themes, $themes); - $this->out->elementStart('fieldset', array('id' => - 'settings_design_theme')); - $this->out->element('legend', null, _('Change theme')); + $this->li(); + $this->out->dropdown('site-theme', _('Site theme'), + $themes, _('Theme for the site.'), + false, $this->value('theme', 'site')); + $this->unli(); + + $this->li(); + $this->input('server', _('Theme server'), 'Server for themes', 'theme'); + $this->unli(); + + $this->li(); + $this->input('path', _('Theme path'), 'Web path to themes', 'theme'); + $this->unli(); + + $this->li(); + $this->input('dir', _('Theme directory'), 'Directory where themes are located', 'theme'); + $this->unli(); + + $this->out->elementEnd('ul'); + + $this->out->elementEnd('fieldset'); + $this->out->elementStart('fieldset', array('id' => 'settings_avatar')); + $this->out->element('legend', null, _('Avatar Settings')); + $this->out->elementStart('ul', 'form_data'); - $this->out->elementStart('li'); - $this->out->dropdown('theme', _('Theme'), - $themes, _('Theme for the site.'), - false, $this->value('theme')); - $this->out->elementEnd('li'); + $this->li(); + $this->input('server', _('Avatar server'), 'Server for avatars', 'avatar'); + $this->unli(); + + $this->li(); + $this->input('path', _('Avatar path'), 'Web path to avatars', 'avatar'); + $this->unli(); + + $this->li(); + $this->input('dir', _('Avatar directory'), 'Directory where avatars are located', 'avatar'); + $this->unli(); + $this->out->elementEnd('ul'); + $this->out->elementEnd('fieldset'); + $design = $this->out->design; $this->out->elementStart('fieldset', array('id' => 'settings_design_background-image')); $this->out->element('legend', null, _('Change background image')); $this->out->elementStart('ul', 'form_data'); - $this->out->elementStart('li'); + + $this->li(); $this->out->element('label', array('for' => 'design_background-image_file'), _('Background')); $this->out->element('input', array('name' => 'design_background-image_file', @@ -432,7 +499,7 @@ class DesignAdminPanelForm extends Form 'type' => 'hidden', 'id' => 'MAX_FILE_SIZE', 'value' => ImageFile::maxFileSizeInt())); - $this->out->elementEnd('li'); + $this->unli(); if (!empty($design->backgroundimage)) { @@ -474,27 +541,40 @@ class DesignAdminPanelForm extends Form 'class' => 'radio'), _('Off')); $this->out->element('p', 'form_guide', _('Turn background image on or off.')); - $this->out->elementEnd('li'); + $this->unli(); - $this->out->elementStart('li'); + $this->li(); $this->out->checkbox('design_background-image_repeat', _('Tile background image'), ($design->disposition & BACKGROUND_TILE) ? true : false); - $this->out->elementEnd('li'); + $this->unli(); } + $this->li(); + $this->input('server', _('Background server'), 'Server for backgrounds', 'background'); + $this->unli(); + + $this->li(); + $this->input('path', _('Background path'), 'Web path to backgrounds', 'background'); + $this->unli(); + + $this->li(); + $this->input('dir', _('Background directory'), 'Directory where backgrounds are located', 'background'); + $this->unli(); + $this->out->elementEnd('ul'); $this->out->elementEnd('fieldset'); $this->out->elementStart('fieldset', array('id' => 'settings_design_color')); $this->out->element('legend', null, _('Change colours')); + $this->out->elementStart('ul', 'form_data'); try { $bgcolor = new WebColor($design->backgroundcolor); - $this->out->elementStart('li'); + $this->li(); $this->out->element('label', array('for' => 'swatch-1'), _('Background')); $this->out->element('input', array('name' => 'design_background', 'type' => 'text', @@ -503,11 +583,11 @@ class DesignAdminPanelForm extends Form 'maxlength' => '7', 'size' => '7', 'value' => '')); - $this->out->elementEnd('li'); + $this->unli(); $ccolor = new WebColor($design->contentcolor); - $this->out->elementStart('li'); + $this->li(); $this->out->element('label', array('for' => 'swatch-2'), _('Content')); $this->out->element('input', array('name' => 'design_content', 'type' => 'text', @@ -516,11 +596,11 @@ class DesignAdminPanelForm extends Form 'maxlength' => '7', 'size' => '7', 'value' => '')); - $this->out->elementEnd('li'); + $this->unli(); $sbcolor = new WebColor($design->sidebarcolor); - $this->out->elementStart('li'); + $this->li(); $this->out->element('label', array('for' => 'swatch-3'), _('Sidebar')); $this->out->element('input', array('name' => 'design_sidebar', 'type' => 'text', @@ -529,11 +609,11 @@ class DesignAdminPanelForm extends Form 'maxlength' => '7', 'size' => '7', 'value' => '')); - $this->out->elementEnd('li'); + $this->unli(); $tcolor = new WebColor($design->textcolor); - $this->out->elementStart('li'); + $this->li(); $this->out->element('label', array('for' => 'swatch-4'), _('Text')); $this->out->element('input', array('name' => 'design_text', 'type' => 'text', @@ -542,11 +622,11 @@ class DesignAdminPanelForm extends Form 'maxlength' => '7', 'size' => '7', 'value' => '')); - $this->out->elementEnd('li'); + $this->unli(); $lcolor = new WebColor($design->linkcolor); - $this->out->elementStart('li'); + $this->li(); $this->out->element('label', array('for' => 'swatch-5'), _('Links')); $this->out->element('input', array('name' => 'design_links', 'type' => 'text', @@ -555,49 +635,16 @@ class DesignAdminPanelForm extends Form 'maxlength' => '7', 'size' => '7', 'value' => '')); - $this->out->elementEnd('li'); + $this->unli(); } catch (WebColorException $e) { common_log(LOG_ERR, 'Bad color values in site design: ' . $e->getMessage()); } - $this->out->elementEnd('ul'); $this->out->elementEnd('fieldset'); - } - - /** - * Utility to simplify some of the duplicated code around - * params and settings. - * - * @param string $setting Name of the setting - * @param string $title Title to use for the input - * @param string $instructions Instructions for this field - * - * @return void - */ - - function input($setting, $title, $instructions) - { - $this->out->input($setting, $title, $this->value($setting), $instructions); - } - - /** - * Utility to simplify getting the posted-or-stored setting value - * - * @param string $setting Name of the setting - * - * @return string param value if posted, or current config value - */ - - function value($setting) - { - $value = $this->out->trimmed($setting); - if (empty($value)) { - $value = common_config('site', $setting); - } - return $value; + $this->out->elementEnd('ul'); } /** @@ -618,5 +665,27 @@ class DesignAdminPanelForm extends Form 'title' => _('Reset back to default'))); $this->out->submit('save', _('Save'), 'submit form_action-secondary', - 'save', _('Save design')); } + 'save', _('Save design')); + } + + + /** + * Utility to simplify some of the duplicated code around + * params and settings. Overriding the input() in the base class + * to handle a whole bunch of cases of settings with the same + * name under different sections. + * + * @param string $setting Name of the setting + * @param string $title Title to use for the input + * @param string $instructions Instructions for this field + * @param string $section config section, default = 'site' + * + * @return void + */ + + function input($setting, $title, $instructions, $section='site') + { + $this->out->input("$section-$setting", $title, $this->value($setting, $section), $instructions); + } + } diff --git a/actions/siteadminpanel.php b/actions/siteadminpanel.php index c316f8e176..965afb685c 100644 --- a/actions/siteadminpanel.php +++ b/actions/siteadminpanel.php @@ -193,7 +193,7 @@ class SiteadminpanelAction extends AdminPanelAction } } -class SiteAdminPanelForm extends Form +class SiteAdminPanelForm extends AdminForm { /** * ID of the form @@ -315,51 +315,6 @@ class SiteAdminPanelForm extends Form $this->out->elementEnd('ul'); } - /** - * Utility to simplify some of the duplicated code around - * params and settings. - * - * @param string $setting Name of the setting - * @param string $title Title to use for the input - * @param string $instructions Instructions for this field - * @param string $section config section, default = 'site' - * - * @return void - */ - - function input($setting, $title, $instructions, $section='site') - { - $this->out->input($setting, $title, $this->value($setting, $section), $instructions); - } - - /** - * Utility to simplify getting the posted-or-stored setting value - * - * @param string $setting Name of the setting - * @param string $main configuration section, default = 'site' - * - * @return string param value if posted, or current config value - */ - - function value($setting, $main='site') - { - $value = $this->out->trimmed($setting); - if (empty($value)) { - $value = common_config($main, $setting); - } - return $value; - } - - function li() - { - $this->out->elementStart('li'); - } - - function unli() - { - $this->out->elementEnd('li'); - } - /** * Action elements * diff --git a/lib/adminform.php b/lib/adminform.php new file mode 100644 index 0000000000..3934f63515 --- /dev/null +++ b/lib/adminform.php @@ -0,0 +1,86 @@ +. + * + * @category Widget + * @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') && !defined('LACONICA')) { + exit(1); +} + +/** + * Base class for Administrative forms + * + * Just a place holder for some utility methods to simply some + * repetitive form building code + * + * @category Widget + * @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/ + * + * @see Form + */ + +class AdminForm extends Form +{ + /** + * Utility to simplify some of the duplicated code around + * params and settings. + * + * @param string $setting Name of the setting + * @param string $title Title to use for the input + * @param string $instructions Instructions for this field + * @param string $section config section, default = 'site' + * + * @return void + */ + + function input($setting, $title, $instructions, $section='site') + { + $this->out->input($setting, $title, $this->value($setting, $section), $instructions); + } + + /** + * Utility to simplify getting the posted-or-stored setting value + * + * @param string $setting Name of the setting + * @param string $main configuration section, default = 'site' + * + * @return string param value if posted, or current config value + */ + + function value($setting, $main='site') + { + $value = $this->out->trimmed($setting); + if (empty($value)) { + $value = common_config($main, $setting); + } + return $value; + } + +} diff --git a/lib/adminpanelaction.php b/lib/adminpanelaction.php index 33b210da34..e0c253ccf1 100644 --- a/lib/adminpanelaction.php +++ b/lib/adminpanelaction.php @@ -224,6 +224,33 @@ class AdminPanelAction extends Action $this->clientError(_('saveSettings() not implemented.')); return; } + + /** + * Delete a design setting + * + * // XXX: Maybe this should go in Design? --Z + * + * @return mixed $result false if something didn't work + */ + + function deleteSetting($section, $setting) + { + $config = new Config(); + + $config->section = $section; + $config->setting = $setting; + + if ($config->find(true)) { + $result = $config->delete(); + if (!$result) { + common_log_db_error($config, 'DELETE', __FILE__); + $this->clientError(_("Unable to delete design setting.")); + return null; + } + } + + return $result; + } } /** diff --git a/lib/form.php b/lib/form.php index 868c986b93..f6501dc6da 100644 --- a/lib/form.php +++ b/lib/form.php @@ -181,4 +181,14 @@ class Form extends Widget { return 'form'; } + + function li() + { + $this->out->elementStart('li'); + } + + function unli() + { + $this->out->elementEnd('li'); + } } From 4d589e4c2d5c815fb798a6642f4d676b9fda8f7b Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 19 Nov 2009 07:40:03 +0000 Subject: [PATCH 31/38] Updated markup and style for design admin fieldsets --- actions/designadminpanel.php | 6 +++--- theme/base/css/display.css | 3 +-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/actions/designadminpanel.php b/actions/designadminpanel.php index 156c3f1ab5..7c71c032ae 100644 --- a/actions/designadminpanel.php +++ b/actions/designadminpanel.php @@ -408,7 +408,7 @@ class DesignAdminPanelForm extends AdminForm function formData() { - $this->out->elementStart('fieldset', array('id' => 'settings_logo')); + $this->out->elementStart('fieldset', array('id' => 'settings_design_logo')); $this->out->element('legend', null, _('Change logo')); $this->out->elementStart('ul', 'form_data'); @@ -420,7 +420,7 @@ class DesignAdminPanelForm extends AdminForm $this->out->elementEnd('ul'); $this->out->elementEnd('fieldset'); - $this->out->elementStart('fieldset', array('id' => 'settings_theme')); + $this->out->elementStart('fieldset', array('id' => 'settings_design_theme')); $this->out->element('legend', null, _('Change theme')); $this->out->elementStart('ul', 'form_data'); @@ -458,7 +458,7 @@ class DesignAdminPanelForm extends AdminForm $this->out->elementEnd('ul'); $this->out->elementEnd('fieldset'); - $this->out->elementStart('fieldset', array('id' => 'settings_avatar')); + $this->out->elementStart('fieldset', array('id' => 'settings_design_avatar')); $this->out->element('legend', null, _('Avatar Settings')); $this->out->elementStart('ul', 'form_data'); diff --git a/theme/base/css/display.css b/theme/base/css/display.css index e5f5df68cc..85683a91d1 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -172,8 +172,7 @@ font-weight:bold; #form_password_recover legend, #form_password_change legend, .form_entity_block legend, -#form_filter_bytag legend, -#settings_design_theme legend { +#form_filter_bytag legend { display:none; } From 08165c8f037d9530995a9b312999fa6cc0f0cc97 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 19 Nov 2009 01:46:14 -0800 Subject: [PATCH 32/38] Site admin panel mostly done. Still need to add CC license chooser. --- actions/siteadminpanel.php | 86 ++++++++++++++++++++++++++++++++++++-- 1 file changed, 83 insertions(+), 3 deletions(-) diff --git a/actions/siteadminpanel.php b/actions/siteadminpanel.php index 965afb685c..b48be19a07 100644 --- a/actions/siteadminpanel.php +++ b/actions/siteadminpanel.php @@ -91,10 +91,12 @@ class SiteadminpanelAction extends AdminPanelAction function saveSettings() { static $settings = array('site' => array('name', 'broughtby', 'broughtbyurl', - 'email', 'timezone', 'language'), + 'email', 'timezone', 'language', + 'ssl', 'sslserver', 'site', 'path', + 'textlimit', 'dupelimit'), 'snapshot' => array('run', 'reporturl', 'frequency')); - static $booleans = array('site' => array('private')); + static $booleans = array('site' => array('private', 'inviteonly', 'closed', 'fancy')); $values = array(); @@ -190,6 +192,30 @@ class SiteadminpanelAction extends AdminPanelAction $this->clientError(_("Snapshot frequency must be a number.")); } + // Validate SSL setup + + if (in_array($values['site']['ssl'], array('sometimes', 'always'))) { + if (empty($values['site']['sslserver'])) { + $this->clientError(_("You must set an SSL sever when enabling SSL.")); + } + } + + if (mb_strlen($values['site']['sslserver']) > 255) { + $this->clientError(_("Invalid SSL server. Max length is 255 characters.")); + } + + // Validate text limit + + if (!Validate::number($values['site']['textlimit'], array('min' => 140))) { + $this->clientError(_("Minimum text limit is 140c.")); + } + + // Validate dupe limit + + if (!Validate::number($values['site']['dupelimit'], array('min' => 1))) { + $this->clientError(_("Dupe limit must 1 or more seconds.")); + } + } } @@ -277,12 +303,41 @@ class SiteAdminPanelForm extends AdminForm false, $this->value('language')); $this->unli(); - $this->li(); + $this->li(); + $this->input('locale_path', _('Path to locales'), _('Directory path to locales')); + $this->unli(); + + $this->li(); + $this->input('server', _('Server'), _('Site\'s server hostname.')); + $this->unli(); + + $this->li(); + $this->input('path', _('Path'), _('Site path')); + $this->unli(); + + $this->li(); + $this->out->checkbox('fancy', _('Fancy URLs'), + (bool) $this->value('fancy'), + _('Use fancy (more readable and memorable) URLs?')); + $this->unli(); + + $this->li(); $this->out->checkbox('private', _('Private'), (bool) $this->value('private'), _('Prohibit anonymous users (not logged in) from viewing site?')); + $this->unli(); + $this->li(); + $this->out->checkbox('inviteonly', _('Invite only'), + (bool) $this->value('inviteonly'), + _('Make registration invitation only.')); + $this->unli(); + + $this->li(); + $this->out->checkbox('closed', _('Closed'), + (bool) $this->value('closed'), + _('Disable new registrations.')); $this->unli(); $this->li(); @@ -312,6 +367,31 @@ class SiteAdminPanelForm extends AdminForm $this->unli(); + $this->li(); + + $ssl = array('never' => _('Never'), + 'sometimes' => _('Sometimes'), + 'always' => _('Always')); + + $this->out->dropdown('ssl', _('Use SSL'), + $ssl, _('When to use SSL'), + false, $this->value('ssl', 'site')); + + $this->unli(); + + $this->li(); + $this->input('sslserver', _('SSL Server'), + _('Server to direct SSL requests to')); + $this->unli(); + + $this->li(); + $this->input('textlimit', _('Text limit'), _('Maximum number of characters for notices.')); + $this->unli(); + + $this->li(); + $this->input('dupelimit', _('Dupe limit'), _('How long users must wait (in seconds) to post the same thing again.')); + $this->unli(); + $this->out->elementEnd('ul'); } From 409ce3556d07f66e5a65e035f9d52b8421441911 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Thu, 19 Nov 2009 01:56:29 -0800 Subject: [PATCH 33/38] Added locales_path to site admin panel --- actions/siteadminpanel.php | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/actions/siteadminpanel.php b/actions/siteadminpanel.php index b48be19a07..ce6d3f5446 100644 --- a/actions/siteadminpanel.php +++ b/actions/siteadminpanel.php @@ -93,7 +93,7 @@ class SiteadminpanelAction extends AdminPanelAction static $settings = array('site' => array('name', 'broughtby', 'broughtbyurl', 'email', 'timezone', 'language', 'ssl', 'sslserver', 'site', 'path', - 'textlimit', 'dupelimit'), + 'textlimit', 'dupelimit', 'locale_path'), 'snapshot' => array('run', 'reporturl', 'frequency')); static $booleans = array('site' => array('private', 'inviteonly', 'closed', 'fancy')); @@ -216,6 +216,14 @@ class SiteadminpanelAction extends AdminPanelAction $this->clientError(_("Dupe limit must 1 or more seconds.")); } + // Validate locales path + + // XXX: What else do we need to validate for lacales path here? --Z + + if (!empty($values['site']['locale_path']) && !is_readable($values['site']['locale_path'])) { + $this->clientError(sprintf(_("Locales directory not readable: %s"), $values['site']['locale_path'])); + } + } } From 1e5bb7fa68ea8b843d4d93e473d41694ee95dbe4 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 19 Nov 2009 10:34:43 +0000 Subject: [PATCH 34/38] Added fieldsets for site admin page --- actions/siteadminpanel.php | 52 +++++++++++++++++++++++++++----------- 1 file changed, 37 insertions(+), 15 deletions(-) diff --git a/actions/siteadminpanel.php b/actions/siteadminpanel.php index ce6d3f5446..916b9ebfb0 100644 --- a/actions/siteadminpanel.php +++ b/actions/siteadminpanel.php @@ -270,15 +270,19 @@ class SiteAdminPanelForm extends AdminForm function formData() { + $this->out->elementStart('fieldset', array('id' => 'settings_admin_general')); + $this->out->element('legend', null, _('General')); $this->out->elementStart('ul', 'form_data'); $this->li(); $this->input('name', _('Site name'), _('The name of your site, like "Yourcompany Microblog"')); $this->unli(); + $this->li(); $this->input('broughtby', _('Brought by'), _('Text used for credits link in footer of each page')); $this->unli(); + $this->li(); $this->input('broughtbyurl', _('Brought by URL'), _('URL used for credits link in footer of each page')); @@ -286,9 +290,13 @@ class SiteAdminPanelForm extends AdminForm $this->li(); $this->input('email', _('Email'), _('contact email address for your site')); - $this->unli(); + $this->out->elementEnd('ul'); + $this->out->elementEnd('fieldset'); + $this->out->elementStart('fieldset', array('id' => 'settings_admin_local')); + $this->out->element('legend', null, _('Local')); + $this->out->elementStart('ul', 'form_data'); $timezones = array(); foreach (DateTimeZone::listIdentifiers() as $k => $v) { @@ -298,24 +306,26 @@ class SiteAdminPanelForm extends AdminForm asort($timezones); $this->li(); - $this->out->dropdown('timezone', _('Default timezone'), $timezones, _('Default timezone for the site; usually UTC.'), true, $this->value('timezone')); - $this->unli(); - $this->li(); + $this->li(); $this->out->dropdown('language', _('Language'), get_nice_language_list(), _('Default site language'), false, $this->value('language')); - $this->unli(); $this->li(); $this->input('locale_path', _('Path to locales'), _('Directory path to locales')); $this->unli(); + $this->out->elementEnd('ul'); + $this->out->elementEnd('fieldset'); + $this->out->elementStart('fieldset', array('id' => 'settings_admin_urls')); + $this->out->element('legend', null, _('URLs')); + $this->out->elementStart('ul', 'form_data'); $this->li(); $this->input('server', _('Server'), _('Site\'s server hostname.')); $this->unli(); @@ -329,7 +339,12 @@ class SiteAdminPanelForm extends AdminForm (bool) $this->value('fancy'), _('Use fancy (more readable and memorable) URLs?')); $this->unli(); + $this->out->elementEnd('ul'); + $this->out->elementEnd('fieldset'); + $this->out->elementStart('fieldset', array('id' => 'settings_admin_access')); + $this->out->element('legend', null, _('Access')); + $this->out->elementStart('ul', 'form_data'); $this->li(); $this->out->checkbox('private', _('Private'), (bool) $this->value('private'), @@ -347,36 +362,39 @@ class SiteAdminPanelForm extends AdminForm (bool) $this->value('closed'), _('Disable new registrations.')); $this->unli(); + $this->out->elementEnd('ul'); + $this->out->elementEnd('fieldset'); + $this->out->elementStart('fieldset', array('id' => 'settings_admin_snapshots')); + $this->out->element('legend', null, _('Snapshots')); + $this->out->elementStart('ul', 'form_data'); $this->li(); - $snapshot = array('web' => _('Randomly during Web hit'), 'cron' => _('In a scheduled job'), 'never' => _('Never')); - $this->out->dropdown('run', _('Data snapshots'), $snapshot, _('When to send statistical data to status.net servers'), false, $this->value('run', 'snapshot')); - $this->unli(); - $this->li(); + $this->li(); $this->input('frequency', _('Frequency'), _('Snapshots will be sent once every N Web hits'), 'snapshot'); - $this->unli(); $this->li(); - $this->input('reporturl', _('Report URL'), _('Snapshots will be sent to this URL'), 'snapshot'); - $this->unli(); + $this->out->elementEnd('ul'); + $this->out->elementEnd('fieldset'); + $this->out->elementStart('fieldset', array('id' => 'settings_admin_ssl')); + $this->out->element('legend', null, _('SSL')); + $this->out->elementStart('ul', 'form_data'); $this->li(); - $ssl = array('never' => _('Never'), 'sometimes' => _('Sometimes'), 'always' => _('Always')); @@ -384,14 +402,18 @@ class SiteAdminPanelForm extends AdminForm $this->out->dropdown('ssl', _('Use SSL'), $ssl, _('When to use SSL'), false, $this->value('ssl', 'site')); - $this->unli(); $this->li(); $this->input('sslserver', _('SSL Server'), _('Server to direct SSL requests to')); $this->unli(); + $this->out->elementEnd('ul'); + $this->out->elementEnd('fieldset'); + $this->out->elementStart('fieldset', array('id' => 'settings_admin_limits')); + $this->out->element('legend', null, _('Limits')); + $this->out->elementStart('ul', 'form_data'); $this->li(); $this->input('textlimit', _('Text limit'), _('Maximum number of characters for notices.')); $this->unli(); @@ -399,8 +421,8 @@ class SiteAdminPanelForm extends AdminForm $this->li(); $this->input('dupelimit', _('Dupe limit'), _('How long users must wait (in seconds) to post the same thing again.')); $this->unli(); - $this->out->elementEnd('ul'); + $this->out->elementEnd('fieldset'); } /** From fae0f36b4d1e43e42637bced0b655ee6a25d6226 Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 19 Nov 2009 11:27:05 +0000 Subject: [PATCH 35/38] Updated .form_settings fieldset fieldset styles --- theme/base/css/display.css | 16 +++++++++++++++- theme/default/css/display.css | 11 ++++++++++- theme/identica/css/display.css | 11 ++++++++++- 3 files changed, 35 insertions(+), 3 deletions(-) diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 85683a91d1..7b7fd6269d 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -107,6 +107,20 @@ clear:both; .form_settings fieldset { margin-bottom:29px; } +.form_settings fieldset fieldset { +margin-bottom:41px; +padding:3% 1.795% 1.795% 3%; +border-radius:11px; +-moz-border-radius:11px; +-webkit-border-radius:11px; +border-width:1px; +border-style:solid; +} +.form_settings fieldset fieldset legend { +line-height:0; +} + + .form_settings input.remove { margin-left:11px; } @@ -1343,7 +1357,7 @@ float:left; } #settings_design_color .form_data { width:400px; -margin-right:28px; +margin-right:1%; } #settings_design_color .form_data li { diff --git a/theme/default/css/display.css b/theme/default/css/display.css index a4f03fbf19..f4af07081c 100644 --- a/theme/default/css/display.css +++ b/theme/default/css/display.css @@ -28,10 +28,19 @@ input, textarea, select, .entity_remote_subscribe { border-color:#AAAAAA; } + +.form_settings fieldset fieldset { +background:rgba(240, 240, 240, 0.2); +box-shadow:3px 3px 7px rgba(194, 194, 194, 0.3); +-moz-box-shadow:3px 3px 7px rgba(194, 194, 194, 0.3); +-webkit-box-shadow:3px 3px 7px rgba(194, 194, 194, 0.3); +} + #filter_tags ul li, .entity_send-a-message .form_notice, .pagination .nav_prev a, -.pagination .nav_next a { +.pagination .nav_next a, +.form_settings fieldset fieldset { border-color:#DDDDDD; } diff --git a/theme/identica/css/display.css b/theme/identica/css/display.css index eb21ea65b5..ff7311302d 100644 --- a/theme/identica/css/display.css +++ b/theme/identica/css/display.css @@ -28,10 +28,19 @@ input, textarea, select, .entity_remote_subscribe { border-color:#AAAAAA; } + +.form_settings fieldset fieldset { +background:rgba(240, 240, 240, 0.2); +box-shadow:3px 3px 7px rgba(194, 194, 194, 0.3); +-moz-box-shadow:3px 3px 7px rgba(194, 194, 194, 0.3); +-webkit-box-shadow:3px 3px 7px rgba(194, 194, 194, 0.3); +} + #filter_tags ul li, .entity_send-a-message .form_notice, .pagination .nav_prev a, -.pagination .nav_next a { +.pagination .nav_next a, +.form_settings fieldset fieldset { border-color:#DDDDDD; } From 643318e98cea3bd1d0fddab7acded86319e5df8c Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 19 Nov 2009 11:27:49 +0000 Subject: [PATCH 36/38] Updated form markup for email settings --- actions/emailsettings.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/actions/emailsettings.php b/actions/emailsettings.php index 67b991cdc8..761aaa8f31 100644 --- a/actions/emailsettings.php +++ b/actions/emailsettings.php @@ -95,7 +95,7 @@ class EmailsettingsAction extends AccountSettingsAction 'class' => 'form_settings', 'action' => common_local_url('emailsettings'))); - + $this->elementStart('fieldset'); $this->elementStart('fieldset', array('id' => 'settings_email_address')); $this->element('legend', null, _('Address')); $this->hidden('token', common_session_token()); @@ -194,6 +194,7 @@ class EmailsettingsAction extends AccountSettingsAction $this->elementEnd('ul'); $this->submit('save', _('Save')); $this->elementEnd('fieldset'); + $this->elementEnd('fieldset'); $this->elementEnd('form'); } From 209bc0456991b0e5bb9a7ecdbb3f72ecdb4bc90c Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 19 Nov 2009 12:48:17 +0000 Subject: [PATCH 37/38] Updated layout for notice info and options --- theme/base/css/display.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 7b7fd6269d..485479d15d 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -952,7 +952,7 @@ clear:left; float:left; font-size:0.95em; margin-left:59px; -width:50%; +max-width:74%; } #showstream .notice div.entry-content, #shownotice .notice div.entry-content { @@ -974,7 +974,7 @@ position:relative; font-size:0.95em; width:90px; float:right; -margin-right:11px; +margin-right:7px; } .notice-options a { From 269781280903d80141788225ec858fbf6501971d Mon Sep 17 00:00:00 2001 From: Sarven Capadisli Date: Thu, 19 Nov 2009 13:08:13 +0000 Subject: [PATCH 38/38] Notice option alignment --- theme/base/css/display.css | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/theme/base/css/display.css b/theme/base/css/display.css index 485479d15d..d5917953ff 100644 --- a/theme/base/css/display.css +++ b/theme/base/css/display.css @@ -974,7 +974,6 @@ position:relative; font-size:0.95em; width:90px; float:right; -margin-right:7px; } .notice-options a { @@ -984,18 +983,12 @@ float:left; .notice-options .notice_reply, .notice-options .form_favor, .notice-options .form_disfavor { -position:absolute; -top:0; +float:left; +margin-left:18px; } .notice-options .form_favor, .notice-options .form_disfavor { -left:0; -} -.notice-options .notice_reply { -left:29px; -} -.notice-options .notice_delete { -right:0; +margin-left:0; } .notice-options input, .notice-options a {