diff --git a/classes/Fave.php b/classes/Fave.php index 059b339cd2..9922ae45c5 100644 --- a/classes/Fave.php +++ b/classes/Fave.php @@ -148,7 +148,7 @@ class Fave extends Memcached_DataObject $act->title = _("Favor"); // TRANS: Ntofication given when a user marks a notice as favorite. // TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. - $act->content = sprintf(_("%1$s marked notice %2$s as a favorite."), + $act->content = sprintf(_('%1$s marked notice %2$s as a favorite.'), $profile->getBestName(), $notice->uri); diff --git a/classes/Notice.php b/classes/Notice.php index a8ec0529f2..2f8c7d5d58 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -1117,7 +1117,7 @@ class Notice extends Memcached_DataObject common_log_db_error($reply, 'INSERT', __FILE__); // TRANS: Server exception thrown when a reply cannot be saved. // TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. - throw new ServerException(sprintf(_("Could not save reply for %1$d, %2$d."), $this->id, $mentioned->id)); + throw new ServerException(sprintf(_('Could not save reply for %1$d, %2$d.'), $this->id, $mentioned->id)); } else { $replied[$mentioned->id] = 1; self::blow('reply:stream:%d', $mentioned->id); diff --git a/classes/Subscription.php b/classes/Subscription.php index b4dbd84c98..e9ad2a5a20 100644 --- a/classes/Subscription.php +++ b/classes/Subscription.php @@ -255,7 +255,7 @@ class Subscription extends Memcached_DataObject $act->title = _("Follow"); // TRANS: Notification given when one person starts following another. // TRANS: %1$s is the subscriber, %2$s is the subscribed. - $act->content = sprintf(_("%1$s is now following %2$s."), + $act->content = sprintf(_('%1$s is now following %2$s.'), $subscriber->getBestName(), $subscribed->getBestName()); diff --git a/lib/usernoprofileexception.php b/lib/usernoprofileexception.php index e0186fef97..954d31b0d1 100644 --- a/lib/usernoprofileexception.php +++ b/lib/usernoprofileexception.php @@ -57,7 +57,7 @@ class UserNoProfileException extends ServerException // TRANS: Exception text shown when no profile can be found for a user. // TRANS: %1$s is a user nickname, $2$d is a user ID (number). - $message = sprintf(_("User %1$s (%2$d) has no profile record."), + $message = sprintf(_('User %1$s (%2$d) has no profile record.'), $user->nickname, $user->id); parent::__construct($message); diff --git a/locale/af/LC_MESSAGES/statusnet.po b/locale/af/LC_MESSAGES/statusnet.po index 04dbe3806b..520bef7f59 100644 --- a/locale/af/LC_MESSAGES/statusnet.po +++ b/locale/af/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:35+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:06+0000\n" "Language-Team: Afrikaans \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: af\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -3999,7 +3999,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4008,7 +4008,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4016,7 +4016,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Herhaling van %s" @@ -4867,6 +4867,13 @@ msgstr "Outeur(s)" msgid "Favor" msgstr "Gunstelinge" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "Hierdie kennisgewing is nie 'n gunsteling nie!" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5044,6 +5051,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "" +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Kon nie die profiel stoor nie." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5124,6 +5138,13 @@ msgstr "" msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%s volg niemand nie." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7220,6 +7241,13 @@ msgstr "Deblokkeer hierdie gebruiker" msgid "Unsubscribe" msgstr "" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Hierdie gebruiker het nie 'n profiel nie." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Wysig Avatar" diff --git a/locale/ar/LC_MESSAGES/statusnet.po b/locale/ar/LC_MESSAGES/statusnet.po index b1cb14da51..a93144a506 100644 --- a/locale/ar/LC_MESSAGES/statusnet.po +++ b/locale/ar/LC_MESSAGES/statusnet.po @@ -11,19 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:39+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:08+0000\n" "Language-Team: Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ar\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural=(n == 0) ? 0 : ( (n == 1) ? 1 : ( (n == " "2) ? 2 : ( (n%100 >= 3 && n%100 <= 10) ? 3 : ( (n%100 >= 11 && n%100 <= " "99) ? 4 : 5 ) ) ) );\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -3966,7 +3966,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3980,7 +3980,7 @@ msgstr "" "[انضم الآن](%%%%action.register%%%%) لتتابع إشعارت **%s** وغيره! ([اقرأ " "المزيد](%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3991,7 +3991,7 @@ msgstr "" "wikipedia.org/wiki/Micro-blogging) المبنية على البرنامج الحر [StatusNet]" "(http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "تكرار ل%s" @@ -4819,6 +4819,13 @@ msgstr "المؤلف(ون)" msgid "Favor" msgstr "فضّل" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "لقد أضاف %s (@%s) إشعارك إلى مفضلاته" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -4992,6 +4999,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "مشكلة أثناء حفظ الإشعار." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "تعذر تحديث المجموعة المحلية." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5065,6 +5079,13 @@ msgstr "تعذّر حفظ الاشتراك." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s يستمع الآن إلى إشعاراتك على %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7192,6 +7213,13 @@ msgstr "ألغِ الاشتراك مع هذا المستخدم" msgid "Unsubscribe" msgstr "ألغِ الاشتراك" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "ليس للمستخدم ملف شخصي." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "عدّل الأفتار" diff --git a/locale/arz/LC_MESSAGES/statusnet.po b/locale/arz/LC_MESSAGES/statusnet.po index 28941399c1..403ea6b270 100644 --- a/locale/arz/LC_MESSAGES/statusnet.po +++ b/locale/arz/LC_MESSAGES/statusnet.po @@ -11,19 +11,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:40+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:09+0000\n" "Language-Team: Egyptian Spoken Arabic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: arz\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=6; plural= n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " "&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -3993,7 +3993,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4006,7 +4006,7 @@ msgstr "" "الآن](%%action.register%%) لتشارك اشعاراتك مع أصدقائك وعائلتك وزملائك! " "([اقرأ المزيد](%%doc.help%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4016,7 +4016,7 @@ msgstr "" "هنا %%site.name%%، خدمه [التدوين المُصغّر](http://en.wikipedia.org/wiki/Micro-" "blogging) المبنيه على البرنامج الحر [StatusNet](http://status.net/)." -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "تكرارات %s" @@ -4855,6 +4855,13 @@ msgstr "المؤلف/ين" msgid "Favor" msgstr "فضّل" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "أرسل لى بريدًا إلكرتونيًا عندما يضيف أحدهم إشعارى مفضله." + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5029,6 +5036,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "مشكله أثناء حفظ الإشعار." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "تعذّر حفظ الاشتراك." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5101,6 +5115,13 @@ msgstr "تعذّر حفظ الاشتراك." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "هؤلاء هم الأشخاص الذين يستمعون إلى إشعاراتك." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7196,6 +7217,13 @@ msgstr "ألغِ الاشتراك مع هذا المستخدم" msgid "Unsubscribe" msgstr "ألغِ الاشتراك" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "ليس للمستخدم ملف شخصى." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "عدّل الأفتار" diff --git a/locale/bg/LC_MESSAGES/statusnet.po b/locale/bg/LC_MESSAGES/statusnet.po index 9d810ec08a..fbc7900672 100644 --- a/locale/bg/LC_MESSAGES/statusnet.po +++ b/locale/bg/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:42+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:10+0000\n" "Language-Team: Bulgarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: bg\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4035,7 +4035,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4044,7 +4044,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4052,7 +4052,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Повторения на %s" @@ -4898,6 +4898,13 @@ msgstr "Автор(и)" msgid "Favor" msgstr "Любимо" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) отбеляза бележката ви като любима" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5080,6 +5087,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "Проблем при записване на бележката." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Грешка при запазване на етикетите." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5155,6 +5169,13 @@ msgstr "Грешка при добавяне на нов абонамент." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s вече получава бележките ви в %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7234,6 +7255,13 @@ msgstr "Отписване от този потребител" msgid "Unsubscribe" msgstr "Отписване" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Потребителят няма профил." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Редактиране на аватара" diff --git a/locale/br/LC_MESSAGES/statusnet.po b/locale/br/LC_MESSAGES/statusnet.po index c68e172c60..0add952aa7 100644 --- a/locale/br/LC_MESSAGES/statusnet.po +++ b/locale/br/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:43+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:11+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -2290,11 +2290,11 @@ msgstr "Aotre-implijout" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" -msgstr "" +msgstr "Aotre-implijout al lec'hienn StatusNet-mañ" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." -msgstr "" +msgstr "Diuzadenn aotre-implijout direizh" #: actions/licenseadminpanel.php:149 msgid "" @@ -2308,23 +2308,23 @@ msgstr "" #: actions/licenseadminpanel.php:168 msgid "Invalid license URL." -msgstr "" +msgstr "Direizh eo URL an aotre-implijout" #: actions/licenseadminpanel.php:171 msgid "Invalid license image URL." -msgstr "" +msgstr "Direizh eo URL skeudenn an aotre-implijout" #: actions/licenseadminpanel.php:179 msgid "License URL must be blank or a valid URL." -msgstr "" +msgstr "Goullo pe reizh e rank bezañ URL an aotre-implijout" #: actions/licenseadminpanel.php:187 msgid "License image must be blank or valid URL." -msgstr "" +msgstr "Goullo pe reizh e rank bezañ URL skeudenn an aotre-implijout" #: actions/licenseadminpanel.php:239 msgid "License selection" -msgstr "" +msgstr "Diuzadenn un aotre-implijout" #: actions/licenseadminpanel.php:245 msgid "Private" @@ -2336,19 +2336,19 @@ msgstr "Pep gwir miret strizh." #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "Creative Commons" #: actions/licenseadminpanel.php:252 msgid "Type" -msgstr "" +msgstr "Seurt" #: actions/licenseadminpanel.php:254 msgid "Select license" -msgstr "" +msgstr "Dibab un aotre-implijout" #: actions/licenseadminpanel.php:268 msgid "License details" -msgstr "" +msgstr "Munudoù an aotre-implijout" #: actions/licenseadminpanel.php:274 msgid "Owner" @@ -2356,7 +2356,7 @@ msgstr "Perc'henn" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." -msgstr "" +msgstr "Anv perc'henn danvez la lec'hienn (ma c'heller lakaat e pleustr)." #: actions/licenseadminpanel.php:283 msgid "License Title" @@ -2364,27 +2364,27 @@ msgstr "Titl an aotre-implijout" #: actions/licenseadminpanel.php:284 msgid "The title of the license." -msgstr "" +msgstr "Titl an aotre-implijout" #: actions/licenseadminpanel.php:292 msgid "License URL" -msgstr "" +msgstr "URL an aotre-implijout" #: actions/licenseadminpanel.php:293 msgid "URL for more information about the license." -msgstr "" +msgstr "URL lec'h ma c'heller kaout titouroù diwar-benn an aotre-implijout." #: actions/licenseadminpanel.php:300 msgid "License Image URL" -msgstr "" +msgstr "URL skeudenn an aotre-implijout" #: actions/licenseadminpanel.php:301 msgid "URL for an image to display with the license." -msgstr "" +msgstr "URL ur skeudenn da ziskouez gant an aotre-implijout." #: actions/licenseadminpanel.php:319 msgid "Save license settings" -msgstr "" +msgstr "Enrollañ arventennoù an aotre-implijout" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." @@ -3987,7 +3987,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3998,7 +3998,7 @@ msgstr "" "%%site.name%% a zo ur servij [micro-blogging](http://br.wikipedia.org/wiki/" "Microblog) diazezet war ar meziant frank [StatusNet](http://status.net/)." -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4008,7 +4008,7 @@ msgstr "" "%%site.name%% a zo ur servij [micro-blogging](http://br.wikipedia.org/wiki/" "Microblog) diazezet war ar meziant frank [StatusNet](http://status.net/)." -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Adkemeret eus %s" @@ -4848,6 +4848,13 @@ msgstr "Aozer(ien)" msgid "Favor" msgstr "Pennrolloù" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "Kas din ur postel pa lak unan bennak unan eus va alioù evel pennroll." + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5021,6 +5028,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "Ur gudenn 'zo bet pa veze enrollet boest degemer ar strollad." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Dibosupl eo enrollañ titouroù ar strollad lec'hel." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5092,6 +5106,13 @@ msgstr "Dibosupl eo dilemel ar c'houmanant." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "Ne heuilh %s den ebet." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -6794,7 +6815,7 @@ msgstr "e" #: lib/noticelist.php:512 msgid "web" -msgstr "" +msgstr "web" #: lib/noticelist.php:578 msgid "in context" @@ -7153,6 +7174,13 @@ msgstr "En em zigoumanantiñ eus an implijer-mañ" msgid "Unsubscribe" msgstr "Digoumanantiñ" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "An implijer-mañ n'eus profil ebet dezhañ." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Kemmañ an Avatar" diff --git a/locale/ca/LC_MESSAGES/statusnet.po b/locale/ca/LC_MESSAGES/statusnet.po index 5513129bdb..29f7b082a3 100644 --- a/locale/ca/LC_MESSAGES/statusnet.po +++ b/locale/ca/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:45+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:12+0000\n" "Language-Team: Catalan \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ca\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4101,7 +4101,7 @@ msgstr "" "Sigueu el primer en [enviar sobre aquest tema](%%%%action.newnotice%%%%?" "status_textarea=%s)!" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4116,7 +4116,7 @@ msgstr "" "seguir els avisos de **%s** i molt més! ([Més informació...](%%%%doc.help%%%" "%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4127,7 +4127,7 @@ msgstr "" "ca.wikipedia.org/wiki/Microblogging) basat en l'eina lliure [StatusNet]" "(http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Repetició de %s" @@ -4991,6 +4991,13 @@ msgstr "Autoria" msgid "Favor" msgstr "Preferit" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) ha afegit el vostre avís com a preferit" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5169,6 +5176,13 @@ msgstr "S'ha proporcionat un tipus incorrecte per a saveKnownGroups" msgid "Problem saving group inbox." msgstr "S'ha produït un problema en desar la safata d'entrada del grup." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "No s'ha pogut desar la informació del grup local." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5242,6 +5256,13 @@ msgstr "No s'ha pogut eliminar la subscripció." msgid "Follow" msgstr "Segueix" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s ara està escoltant els teus avisos a %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7436,6 +7457,13 @@ msgstr "Cancel·la la subscripció d'aquest usuari" msgid "Unsubscribe" msgstr "Cancel·la la subscripció" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "L'usuari no té perfil." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Edita l'avatar" diff --git a/locale/cs/LC_MESSAGES/statusnet.po b/locale/cs/LC_MESSAGES/statusnet.po index 32356d21dc..ffcdb38579 100644 --- a/locale/cs/LC_MESSAGES/statusnet.po +++ b/locale/cs/LC_MESSAGES/statusnet.po @@ -10,18 +10,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:46+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:13+0000\n" "Language-Team: Czech \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: cs\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n >= 2 && n <= 4) ? 1 : " "2 );\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4055,7 +4055,7 @@ msgstr "" "Můžete se pokusit uživatele %1$s postrčit nebo [jim něco poslat](%%%%action." "newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4068,7 +4068,7 @@ msgstr "" "status.net/). [Zaregistrujte se](%%action.register%%) a sledujte oznámení od " "**%s**a mnoha dalších! ([Čtěte více](%%doc.help%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4079,7 +4079,7 @@ msgstr "" "faq#mikroblog) službě založené na Free Software nástroji [StatusNet](http://" "status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Opakování %s" @@ -4934,6 +4934,13 @@ msgstr "Autoři" msgid "Favor" msgstr "Oblíbit" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) přidal vaše oznámení jako oblíbené" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5109,6 +5116,13 @@ msgstr "saveKnownGroups obdrželo špatný typ." msgid "Problem saving group inbox." msgstr "Problém při ukládání skupinového inboxu" +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Nelze uložit místní info skupiny." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5180,6 +5194,13 @@ msgstr "Nelze smazat odebírání" msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s od teď naslouchá tvým sdělením na %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7366,6 +7387,13 @@ msgstr "Odhlásit se od tohoto uživatele" msgid "Unsubscribe" msgstr "Odhlásit" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Uživatel nemá profil." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Upravit avatar" diff --git a/locale/de/LC_MESSAGES/statusnet.po b/locale/de/LC_MESSAGES/statusnet.po index 11af5e1f86..b6889826f5 100644 --- a/locale/de/LC_MESSAGES/statusnet.po +++ b/locale/de/LC_MESSAGES/statusnet.po @@ -19,17 +19,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:47+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:14+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4125,7 +4125,7 @@ msgstr "" "Du kannst %1$s in seinem Profil einen Stups geben oder [ihm etwas posten](%%%" "%action.newnotice%%%%?status_textarea=%s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4139,7 +4139,7 @@ msgstr "" "um **%s**'s und vielen anderen zu folgen! ([Mehr Informationen](%%%%doc.help%" "%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4150,7 +4150,7 @@ msgstr "" "wikipedia.org/wiki/Mikroblogging)-Dienst basierend auf der freien Software " "[StatusNet](http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Wiederholung von %s" @@ -5013,6 +5013,13 @@ msgstr "Autor(en)" msgid "Favor" msgstr "Zu Favoriten hinzufügen" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) hat deine Nachricht als Favorit gespeichert" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5192,6 +5199,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "Problem bei Speichern der Nachricht." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Konnte die lokale Gruppen Information nicht speichern." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5268,6 +5282,13 @@ msgstr "Konnte Abonnement nicht löschen." msgid "Follow" msgstr "Folgen" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s ist der Gruppe „%2$s“ beigetreten." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7458,6 +7479,13 @@ msgstr "Lösche dein Abonnement von diesem Benutzer" msgid "Unsubscribe" msgstr "Abbestellen" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Benutzer hat kein Profil." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Avatar bearbeiten" diff --git a/locale/en_GB/LC_MESSAGES/statusnet.po b/locale/en_GB/LC_MESSAGES/statusnet.po index b4396b1776..4611c6961b 100644 --- a/locale/en_GB/LC_MESSAGES/statusnet.po +++ b/locale/en_GB/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:49+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:15+0000\n" "Language-Team: British English \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: en-gb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4062,7 +4062,7 @@ msgstr "" "You can try to nudge %1$s or [post something to them](%%%%action.newnotice%%%" "%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4075,7 +4075,7 @@ msgstr "" "tool. [Join now](%%action.register%%) to share notices about yourself with " "friends, family, and colleagues! ([Read more](%%doc.help%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4086,7 +4086,7 @@ msgstr "" "wikipedia.org/wiki/Micro-blogging) service based on the Free Software " "[StatusNet](http://status.net/) tool. " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Repeat of %s" @@ -4937,6 +4937,13 @@ msgstr "" msgid "Favor" msgstr "Favour" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) added your notice as a favorite" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5110,6 +5117,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "Problem saving group inbox." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Could not save local group info." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5185,6 +5199,13 @@ msgstr "Could not delete subscription." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s is now listening to your notices on %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7278,6 +7299,13 @@ msgstr "Unsubscribe from this user" msgid "Unsubscribe" msgstr "Unsubscribe" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "User has no profile." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Edit Avatar" diff --git a/locale/eo/LC_MESSAGES/statusnet.po b/locale/eo/LC_MESSAGES/statusnet.po index 8f9bd5cc72..df248608a0 100644 --- a/locale/eo/LC_MESSAGES/statusnet.po +++ b/locale/eo/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:49+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:16+0000\n" "Language-Team: Esperanto \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: eo\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4038,7 +4038,7 @@ msgstr "" "Vi povas provi [puŝeti %1$s] aŭ [afiŝi ion al li](%%%%action.newnotice%%%%?" "status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4051,7 +4051,7 @@ msgstr "" "(http://status.net/). [Aniĝu](%%action.register%%) por sekvi avizojn de **%" "s** kaj multe pli! ([Pli](%%doc.help%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4062,7 +4062,7 @@ msgstr "" "wiki/Micro-blogging) servo surbaze de ilaro de Libera Molvaro [StatusNet]" "(http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Ripeto de %s" @@ -4903,6 +4903,13 @@ msgstr "Aŭtoro(j)" msgid "Favor" msgstr "Ŝati" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) ŝatis vian avizon" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5076,6 +5083,13 @@ msgstr "Fuŝa tipo donita al saveKnownGroups" msgid "Problem saving group inbox." msgstr "Malsukcesis konservi grupan alvenkeston." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Malsukcesis lokan grupan informon." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5147,6 +5161,13 @@ msgstr "Malsukcesis forigi abonon." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s nun rigardas viajn avizojn ĉe %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7332,6 +7353,13 @@ msgstr "Malaboni la uzanton" msgid "Unsubscribe" msgstr "Malaboni" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "La uzanto ne havas profilon." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Redakti vizaĝbildon" diff --git a/locale/es/LC_MESSAGES/statusnet.po b/locale/es/LC_MESSAGES/statusnet.po index c99b33d9c4..34fe75ae52 100644 --- a/locale/es/LC_MESSAGES/statusnet.po +++ b/locale/es/LC_MESSAGES/statusnet.po @@ -16,17 +16,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:50+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:17+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4109,7 +4109,7 @@ msgstr "" "Puedes intentar darle un toque a %1$s o [publicar algo a su atención](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4123,7 +4123,7 @@ msgstr "" "register%%%%) para seguir los avisos de **%s** y de muchas personas más! " "([Más información](%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4134,7 +4134,7 @@ msgstr "" "(http://en.wikipedia.org/wiki/Micro-blogging), basado en la herramienta de " "software libre [StatusNet](http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Repetición de %s" @@ -4998,6 +4998,13 @@ msgstr "Autor(es)" msgid "Favor" msgstr "Aceptar" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) agregó tu mensaje a los favoritos" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5174,6 +5181,13 @@ msgstr "Mal tipo proveído a saveKnownGroups" msgid "Problem saving group inbox." msgstr "Hubo un problema al guarda la bandeja de entrada del grupo." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "No se ha podido guardar la información del grupo local." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5247,6 +5261,13 @@ msgstr "No se pudo eliminar la suscripción." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s ahora está escuchando tus avisos en %2$s" + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7449,6 +7470,13 @@ msgstr "Desuscribirse de este usuario" msgid "Unsubscribe" msgstr "Cancelar suscripción" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "El usuario no tiene un perfil." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Editar imagen" diff --git a/locale/fa/LC_MESSAGES/statusnet.po b/locale/fa/LC_MESSAGES/statusnet.po index f5d8f300d4..8428a42ded 100644 --- a/locale/fa/LC_MESSAGES/statusnet.po +++ b/locale/fa/LC_MESSAGES/statusnet.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:51+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:18+0000\n" "Last-Translator: Ahmad Sufi Mahmudi\n" "Language-Team: Persian \n" "MIME-Version: 1.0\n" @@ -23,9 +23,9 @@ msgstr "" "X-Language-Code: fa\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4069,7 +4069,7 @@ msgstr "" "اولین کسی باشید که در [این موضوع](%%%%action.newnotice%%%%?status_textarea=%" "s) پیام می‌فرستد." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4083,7 +4083,7 @@ msgstr "" "،دارد. ]اکنون بپیوندید[(%%%%action.register%%%%) تا پیام‌های **%s** و بلکه " "بیش‌تر را دنبال کنید! (]بیش‌تر بخوانید[(%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4094,7 +4094,7 @@ msgstr "" "wikipedia.org/wiki/%D9%85%DB%8C%DA%A9%D8%B1%D9%88%D8%A8%D9%84%D8%A7%DA%AF%DB%" "8C%D9%86%DA%AF) بر پایهٔ نرم‌افزار آزاد [StatusNet](http://status.net/) ،دارد. " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "تکرار %s" @@ -4944,6 +4944,13 @@ msgstr "مؤلف(ها)" msgid "Favor" msgstr "برگزیده‌کردن" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "پیام شما را به برگزیده‌های خود اضافه کرد %s (@%s)" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5123,6 +5130,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "هنگام ذخیرهٔ صندوق ورودی گروه مشکلی رخ داد." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "نمی‌توان اطلاعات گروه محلی را ذخیره کرد." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5196,6 +5210,13 @@ msgstr "نمی‌توان اشتراک را ذخیره کرد." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s اکنون پیام‌های شما را در %2$s دنبال می‌کند." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7382,6 +7403,13 @@ msgstr "لغو مشترک‌شدن از این کاربر" msgid "Unsubscribe" msgstr "لغو اشتراک" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "کاربر هیچ نمایه‌ای ندارد." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "ویرایش اواتور" diff --git a/locale/fi/LC_MESSAGES/statusnet.po b/locale/fi/LC_MESSAGES/statusnet.po index 933028780a..a10325fc6a 100644 --- a/locale/fi/LC_MESSAGES/statusnet.po +++ b/locale/fi/LC_MESSAGES/statusnet.po @@ -14,17 +14,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:52+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:19+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4138,7 +4138,7 @@ msgstr "" "Ole ensimmäinen joka [lähettää päivityksen tästä aiheesta](%%%%action." "newnotice%%%%?status_textarea=%s)!" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4147,7 +4147,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4157,7 +4157,7 @@ msgstr "" "Käyttäjällä **%s** on käyttäjätili palvelussa %%%%site.name%%%%, joka on " "[mikroblogauspalvelu](http://en.wikipedia.org/wiki/Micro-blogging)" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, fuzzy, php-format msgid "Repeat of %s" msgstr "Vastaukset käyttäjälle %s" @@ -5022,6 +5022,13 @@ msgstr "" msgid "Favor" msgstr "Lisää suosikiksi" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "Lähetä sähköpostia, jos joku lisää päivitykseni suosikiksi." + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5203,6 +5210,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "Ongelma päivityksen tallentamisessa." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Tilausta ei onnistuttu tallentamaan." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5278,6 +5292,13 @@ msgstr "Tilausta ei onnistuttu tallentamaan." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s seuraa nyt päivityksiäsi palvelussa %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7395,6 +7416,13 @@ msgstr "Peruuta tämän käyttäjän tilaus" msgid "Unsubscribe" msgstr "Peruuta tilaus" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Käyttäjällä ei ole profiilia." + #: lib/userprofile.php:117 #, fuzzy msgid "Edit Avatar" diff --git a/locale/fr/LC_MESSAGES/statusnet.po b/locale/fr/LC_MESSAGES/statusnet.po index 5f5ef01a4e..cf09b012bc 100644 --- a/locale/fr/LC_MESSAGES/statusnet.po +++ b/locale/fr/LC_MESSAGES/statusnet.po @@ -20,17 +20,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:53+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:20+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4140,7 +4140,7 @@ msgstr "" "Vous pouvez essayer de faire un clin d’œil à %1$s ou de [poster quelque " "chose à son intention](%%%%action.newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4154,7 +4154,7 @@ msgstr "" "register%%%%) pour suivre les avis de **%s** et bien plus ! ([En lire plus](%" "%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4165,7 +4165,7 @@ msgstr "" "wikipedia.org/wiki/Microblog) basé sur le logiciel libre [StatusNet](http://" "status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Reprises de %s" @@ -5036,6 +5036,13 @@ msgstr "Auteur(s)" msgid "Favor" msgstr "Ajouter à mes favoris" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) a ajouté un de vos avis à ses favoris" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5211,6 +5218,13 @@ msgstr "Le type renseigné pour saveKnownGroups n’est pas valable" msgid "Problem saving group inbox." msgstr "Problème lors de l’enregistrement de la boîte de réception du groupe." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Impossible d’enregistrer les informations du groupe local." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5286,6 +5300,13 @@ msgstr "Impossible de supprimer l’abonnement" msgid "Follow" msgstr "Suivre" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s a rejoint le groupe %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7497,6 +7518,13 @@ msgstr "Ne plus suivre cet utilisateur" msgid "Unsubscribe" msgstr "Désabonnement" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Aucun profil ne correspond à cet utilisateur." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Modifier l’avatar" diff --git a/locale/ga/LC_MESSAGES/statusnet.po b/locale/ga/LC_MESSAGES/statusnet.po index 056dde849f..b2ca157b27 100644 --- a/locale/ga/LC_MESSAGES/statusnet.po +++ b/locale/ga/LC_MESSAGES/statusnet.po @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:21+0000\n" "Language-Team: Irish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ga\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=5; plural=(n == 1) ? 0 : ( (n == 2) ? 1 : ( (n < 7) ? " "2 : ( (n < 11) ? 3 : 4 ) ) );\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4168,7 +4168,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4181,7 +4181,7 @@ msgstr "" "(http://status.net/). [Únete agora](%%action.register%%) para compartir " "chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4193,7 +4193,7 @@ msgstr "" "(http://status.net/). [Únete agora](%%action.register%%) para compartir " "chíos cos teus amigos, colegas e familia! ([Ler mais](%%doc.help%%))" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, fuzzy, php-format msgid "Repeat of %s" msgstr "Replies to %s" @@ -5057,6 +5057,13 @@ msgstr "" msgid "Favor" msgstr "Gostame" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "Enviar un correo cando alguen enganda un chío meu coma favorito." + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5240,6 +5247,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "Aconteceu un erro ó gardar o chío." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Non se pode gardar a subscrición." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5315,6 +5329,13 @@ msgstr "Non se pode gardar a subscrición." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s está a escoitar os teus chíos %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7538,6 +7559,13 @@ msgstr "Desuscribir de %s" msgid "Unsubscribe" msgstr "Eliminar subscrición" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "O usuario non ten perfil." + #: lib/userprofile.php:117 #, fuzzy msgid "Edit Avatar" diff --git a/locale/gl/LC_MESSAGES/statusnet.po b/locale/gl/LC_MESSAGES/statusnet.po index 3fe875f47f..f447ea3c9a 100644 --- a/locale/gl/LC_MESSAGES/statusnet.po +++ b/locale/gl/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:55+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:22+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -1133,7 +1133,7 @@ msgstr "Deseño" #: actions/designadminpanel.php:74 msgid "Design settings for this StatusNet site" -msgstr "" +msgstr "Configuración de deseño para este sitio StatusNet" #: actions/designadminpanel.php:331 msgid "Invalid logo URL." @@ -1910,7 +1910,7 @@ msgstr "Bloquear" #: actions/groupmembers.php:403 msgctxt "TOOLTIP" msgid "Block this user" -msgstr "" +msgstr "Bloquear este usuario" #: actions/groupmembers.php:498 msgid "Make user an admin of the group" @@ -2361,105 +2361,107 @@ msgstr "%1$s deixou o grupo %2$s" #: actions/licenseadminpanel.php:56 msgctxt "TITLE" msgid "License" -msgstr "" +msgstr "Licenza" #: actions/licenseadminpanel.php:67 msgid "License for this StatusNet site" -msgstr "" +msgstr "Licenza deste sitio StatusNet" #: actions/licenseadminpanel.php:139 msgid "Invalid license selection." -msgstr "" +msgstr "A selección de licenza non é válida." #: actions/licenseadminpanel.php:149 msgid "" "You must specify the owner of the content when using the All Rights Reserved " "license." msgstr "" +"Cómpre especificar o propietario dos contidos ao empregar a licenza \"Todos " +"os dereitos reservados\"." #: actions/licenseadminpanel.php:156 msgid "Invalid license title. Max length is 255 characters." -msgstr "" +msgstr "Título de licenza incorrecto. A extensión máxima é de 255 caracteres." #: actions/licenseadminpanel.php:168 msgid "Invalid license URL." -msgstr "" +msgstr "Enderezo URL de licenza incorrecto." #: actions/licenseadminpanel.php:171 msgid "Invalid license image URL." -msgstr "" +msgstr "Enderezo URL de imaxe de licenza incorrecto." #: actions/licenseadminpanel.php:179 msgid "License URL must be blank or a valid URL." -msgstr "" +msgstr "O enderezo URL da licenza debe quedar baleiro ou ser válido." #: actions/licenseadminpanel.php:187 msgid "License image must be blank or valid URL." -msgstr "" +msgstr "O enderezo URL da imaxe da licenza debe quedar baleiro ou ser válido." #: actions/licenseadminpanel.php:239 msgid "License selection" -msgstr "" +msgstr "Selección da licenza" #: actions/licenseadminpanel.php:245 msgid "Private" -msgstr "" +msgstr "Privado" #: actions/licenseadminpanel.php:246 msgid "All Rights Reserved" -msgstr "" +msgstr "Todos os dereitos reservados" #: actions/licenseadminpanel.php:247 msgid "Creative Commons" -msgstr "" +msgstr "Creative Commons" #: actions/licenseadminpanel.php:252 msgid "Type" -msgstr "" +msgstr "Tipo" #: actions/licenseadminpanel.php:254 msgid "Select license" -msgstr "" +msgstr "Seleccionar unha licenza" #: actions/licenseadminpanel.php:268 msgid "License details" -msgstr "" +msgstr "Detalles da licenza" #: actions/licenseadminpanel.php:274 msgid "Owner" -msgstr "" +msgstr "Propietario" #: actions/licenseadminpanel.php:275 msgid "Name of the owner of the site's content (if applicable)." -msgstr "" +msgstr "Nome do propietario dos contidos deste sitio (se procede)." #: actions/licenseadminpanel.php:283 msgid "License Title" -msgstr "" +msgstr "Título da licenza" #: actions/licenseadminpanel.php:284 msgid "The title of the license." -msgstr "" +msgstr "O título da licenza." #: actions/licenseadminpanel.php:292 msgid "License URL" -msgstr "" +msgstr "URL da licenza" #: actions/licenseadminpanel.php:293 msgid "URL for more information about the license." -msgstr "" +msgstr "URL para obter máis información sobre a licenza." #: actions/licenseadminpanel.php:300 msgid "License Image URL" -msgstr "" +msgstr "URL da imaxe da licenza" #: actions/licenseadminpanel.php:301 msgid "URL for an image to display with the license." -msgstr "" +msgstr "URL dunha imaxe a mostrar coa licenza." #: actions/licenseadminpanel.php:319 msgid "Save license settings" -msgstr "" +msgstr "Gardar a configuración de licenza" #: actions/login.php:102 actions/otp.php:62 actions/register.php:144 msgid "Already logged in." @@ -2702,7 +2704,7 @@ msgstr "Aplicacións conectadas" #: actions/oauthconnectionssettings.php:83 msgid "You have allowed the following applications to access your account." -msgstr "" +msgstr "Permitiulle o acceso á súa conta ás seguintes aplicacións." #: actions/oauthconnectionssettings.php:175 msgid "You are not a user of that application." @@ -2895,7 +2897,7 @@ msgstr "Rutas" #: actions/pathsadminpanel.php:70 msgid "Path and server settings for this StatusNet site" -msgstr "" +msgstr "Configuración do servidor e das rutas para este sitio StatusNet" #: actions/pathsadminpanel.php:157 #, php-format @@ -3765,7 +3767,7 @@ msgstr "Sesións" #: actions/sessionsadminpanel.php:65 msgid "Session settings for this StatusNet site" -msgstr "" +msgstr "Configuración de sesión para este sitio StatusNet" #: actions/sessionsadminpanel.php:175 msgid "Handle sessions" @@ -4111,7 +4113,7 @@ msgstr "" "Pode probar a facerlle un aceno a %1$s ou [publicar algo dirixido a el ou " "ela](%%%%action.newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4125,7 +4127,7 @@ msgstr "" "[Únase agora](%%%%action.register%%%%) para seguir as notas de **%s** e de " "moita máis xente! ([Máis información](%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4136,7 +4138,7 @@ msgstr "" "blogue curtas](http://en.wikipedia.org/wiki/Microblogging) (en inglés) " "baseado na ferramenta de software libre [StatusNet](http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Repeticións de %s" @@ -4715,7 +4717,7 @@ msgstr "Usuario" #: actions/useradminpanel.php:71 msgid "User settings for this StatusNet site" -msgstr "" +msgstr "Configuración de usuario para este sitio StatusNet" #: actions/useradminpanel.php:150 msgid "Invalid bio limit. Must be numeric." @@ -4778,7 +4780,7 @@ msgstr "Permitir ou non que os usuarios poidan invitar a novos usuarios." #: actions/useradminpanel.php:295 msgid "Save user settings" -msgstr "" +msgstr "Gardar a configuración do usuario" #: actions/userauthorization.php:105 msgid "Authorize subscription" @@ -5000,6 +5002,13 @@ msgstr "Autores" msgid "Favor" msgstr "Marcar como favorito" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) marcou a súa nota como favorita" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5062,7 +5071,7 @@ msgstr "Non se puido deixar o grupo." #: classes/Group_member.php:76 #, php-format msgid "Profile ID %s is invalid." -msgstr "" +msgstr "A identificación do perfil, %s, é incorrecta." #. TRANS: Exception thrown providing an invalid group ID. #. TRANS: %s is the invalid group ID. @@ -5081,7 +5090,7 @@ msgstr "Unirse" #: classes/Group_member.php:117 #, php-format msgid "%1$s has joined group %2$s." -msgstr "" +msgstr "%1$s uniuse ao grupo %2$s." #. TRANS: Server exception thrown when updating a local group fails. #: classes/Local_group.php:42 @@ -5176,6 +5185,13 @@ msgstr "O tipo dado para saveKnownGroups era incorrecto" msgid "Problem saving group inbox." msgstr "Houbo un problema ao gardar a caixa de entrada do grupo." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Non se puido gardar a información do grupo local." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5247,7 +5263,14 @@ msgstr "Non se puido borrar a subscrición." #. TRANS: Activity tile when subscribing to another person. #: classes/Subscription.php:255 msgid "Follow" -msgstr "" +msgstr "Seguir" + +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s uniuse ao grupo %2$s." #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. @@ -5700,7 +5723,7 @@ msgstr "Configuración das instantáneas" #. TRANS: Menu item title/tooltip #: lib/adminpanelaction.php:401 msgid "Set site license" -msgstr "" +msgstr "Definir a licenza do sitio" #. TRANS: Client error 401. #: lib/apiauth.php:111 @@ -5849,7 +5872,7 @@ msgstr "Revogar" #: lib/atom10feed.php:112 msgid "author element must contain a name element." -msgstr "" +msgstr "o elemento \"autor\" debe conter un nome." #. TRANS: DT element label in attachment list. #: lib/attachmentlist.php:85 @@ -6376,7 +6399,7 @@ msgstr "Amigo dun amigo" #: lib/feedlist.php:66 msgid "Feeds" -msgstr "" +msgstr "Fontes de novas" #: lib/galleryaction.php:121 msgid "Filter tags" @@ -7448,6 +7471,13 @@ msgstr "Cancelar a subscrición a este usuario" msgid "Unsubscribe" msgstr "Cancelar a subscrición" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "O usuario non ten perfil." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Modificar o avatar" @@ -7569,14 +7599,13 @@ msgstr "%s non é unha cor correcta! Use 3 ou 6 caracteres hexadecimais." #: scripts/restoreuser.php:82 #, php-format msgid "Backup file for user %s (%s)" -msgstr "" +msgstr "Ficheiro de reserva para o usuario %s (%s)" #: scripts/restoreuser.php:88 -#, fuzzy msgid "No user specified; using backup user." -msgstr "Non se especificou ningunha ID de usuario." +msgstr "Non se especificou ningún usuario; emprégase o usuario de reserva." #: scripts/restoreuser.php:94 #, php-format msgid "%d entries in backup." -msgstr "" +msgstr "%d entradas na reserva." diff --git a/locale/hsb/LC_MESSAGES/statusnet.po b/locale/hsb/LC_MESSAGES/statusnet.po index 3ffc1df02d..a0f71db530 100644 --- a/locale/hsb/LC_MESSAGES/statusnet.po +++ b/locale/hsb/LC_MESSAGES/statusnet.po @@ -11,18 +11,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:56+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:23+0000\n" "Language-Team: Upper Sorbian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hsb\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : (n%100==3 || " "n%100==4) ? 2 : 3)\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -3937,7 +3937,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3946,7 +3946,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3954,7 +3954,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, fuzzy, php-format msgid "Repeat of %s" msgstr "Wospjetowany wot" @@ -4783,6 +4783,13 @@ msgstr "Awtorojo" msgid "Favor" msgstr "Fawority" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) je twoju zdźělenku jako faworit přidał" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -4958,6 +4965,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "" +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Informacije wo lokalnej skupinje njedachu so składować." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5030,6 +5044,13 @@ msgstr "Abonoment njeda so zhašeć ." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, php-format +msgid "%1$s is now following %2$s." +msgstr "" + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7094,6 +7115,13 @@ msgstr "Tutoho wužiwarja wotskazać" msgid "Unsubscribe" msgstr "Wotskazać" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Wužiwar nima profil." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Awatar wobdźěłać" diff --git a/locale/hu/LC_MESSAGES/statusnet.po b/locale/hu/LC_MESSAGES/statusnet.po index 6b66ae58a6..1f170ac334 100644 --- a/locale/hu/LC_MESSAGES/statusnet.po +++ b/locale/hu/LC_MESSAGES/statusnet.po @@ -12,13 +12,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:56+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:24+0000\n" "Language-Team: Hungarian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: hu\n" "X-Message-Group: #out-statusnet-core\n" @@ -3938,7 +3938,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3952,7 +3952,7 @@ msgstr "" "register%%%%) és kövesd nyomon **%s** pletykáit - és még rengeteg mást! " "([Tudj meg többet](%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3963,7 +3963,7 @@ msgstr "" "wiki/Mikroblog#Mikroblog) ír egy webhelyen, ami a szabad [StatusNet](http://" "status.net/) szoftverre épült. " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "%s ismétlése" @@ -4771,6 +4771,13 @@ msgstr "Szerző(k)" msgid "Favor" msgstr "Kedvelem" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) az általad küldött hírt hozzáadta a kedvenceihez" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -4940,6 +4947,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "" +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Nem sikerült menteni a profilt." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5011,6 +5025,13 @@ msgstr "" msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s feliratkozott a híreidre a %2$s webhelyen." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7101,6 +7122,13 @@ msgstr "" msgid "Unsubscribe" msgstr "" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "A felhasználónak nincs profilja." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "" diff --git a/locale/ia/LC_MESSAGES/statusnet.po b/locale/ia/LC_MESSAGES/statusnet.po index df8ad6106d..3abd8fce2f 100644 --- a/locale/ia/LC_MESSAGES/statusnet.po +++ b/locale/ia/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:55:58+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:25+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4091,7 +4091,7 @@ msgstr "" "Tu pote tentar dar un pulsata a %1$s o [publicar un nota a su attention](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4105,7 +4105,7 @@ msgstr "" "pro sequer le notas de **%s** e multe alteres! ([Lege plus](%%%%doc.help%%%" "%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4116,7 +4116,7 @@ msgstr "" "(http://en.wikipedia.org/wiki/Microblog) a base del software libere " "[StatusNet](http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Repetition de %s" @@ -4976,6 +4976,13 @@ msgstr "Autor(es)" msgid "Favor" msgstr "Favorir" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) ha addite tu nota como favorite" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5151,6 +5158,13 @@ msgstr "Mal typo fornite a saveKnownGroups" msgid "Problem saving group inbox." msgstr "Problema salveguardar le cassa de entrata del gruppo." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Non poteva salveguardar le informationes del gruppo local." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5224,6 +5238,13 @@ msgstr "Non poteva deler subscription." msgid "Follow" msgstr "Sequer" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s se ha jungite al gruppo %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7420,6 +7441,13 @@ msgstr "Cancellar subscription a iste usator" msgid "Unsubscribe" msgstr "Cancellar subscription" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Le usator non ha un profilo." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Modificar avatar" diff --git a/locale/is/LC_MESSAGES/statusnet.po b/locale/is/LC_MESSAGES/statusnet.po index 66793c4fde..2e413d299b 100644 --- a/locale/is/LC_MESSAGES/statusnet.po +++ b/locale/is/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:02+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:26+0000\n" "Language-Team: Icelandic \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: is\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4143,7 +4143,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4152,7 +4152,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4160,7 +4160,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, fuzzy, php-format msgid "Repeat of %s" msgstr "Svör við %s" @@ -5025,6 +5025,13 @@ msgstr "" msgid "Favor" msgstr "Uppáhald" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "Senda mér tölvupóst þegar einhver setur babl í mér í uppáhald hjá sér." + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5207,6 +5214,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "Vandamál komu upp við að vista babl." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Gat ekki vistað áskrift." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5282,6 +5296,13 @@ msgstr "Gat ekki vistað áskrift." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s er að hlusta á bablið þitt á %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7384,6 +7405,13 @@ msgstr "Hætta sem áskrifandi að þessum notanda" msgid "Unsubscribe" msgstr "Fara úr áskrift" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Notandi hefur enga persónulega síðu." + #: lib/userprofile.php:117 #, fuzzy msgid "Edit Avatar" diff --git a/locale/it/LC_MESSAGES/statusnet.po b/locale/it/LC_MESSAGES/statusnet.po index 929f885efc..2b34725840 100644 --- a/locale/it/LC_MESSAGES/statusnet.po +++ b/locale/it/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:03+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:27+0000\n" "Language-Team: Italian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: it\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4082,7 +4082,7 @@ msgstr "" "[Scrivi qualche cosa](%%%%action.newnotice%%%%?status_textarea=%s) su questo " "argomento!" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4096,7 +4096,7 @@ msgstr "" "i messaggi di **%s** e di molti altri! ([Maggiori informazioni](%%%%doc.help%" "%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4107,7 +4107,7 @@ msgstr "" "it.wikipedia.org/wiki/Microblogging) basato sul software libero [StatusNet]" "(http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Ripetizione di %s" @@ -4967,6 +4967,13 @@ msgstr "Autori" msgid "Favor" msgstr "Preferisci" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) ha aggiunto il tuo messaggio tra i suoi preferiti" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5144,6 +5151,13 @@ msgstr "Fornito un tipo errato per saveKnownGroups" msgid "Problem saving group inbox." msgstr "Problema nel salvare la casella della posta del gruppo." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Impossibile salvare le informazioni del gruppo locale." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5218,6 +5232,13 @@ msgstr "Impossibile salvare l'abbonamento." msgid "Follow" msgstr "Segui" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "L'utente %1$s è entrato nel gruppo %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7417,6 +7438,13 @@ msgstr "Annulla l'abbonamento da questo utente" msgid "Unsubscribe" msgstr "Disabbonati" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "L'utente non ha un profilo." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Modifica immagine" diff --git a/locale/ja/LC_MESSAGES/statusnet.po b/locale/ja/LC_MESSAGES/statusnet.po index c94c24a7bc..6527d62a3f 100644 --- a/locale/ja/LC_MESSAGES/statusnet.po +++ b/locale/ja/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:04+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:28+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4094,7 +4094,7 @@ msgstr "" "最初の [このトピック投稿](%%%%action.newnotice%%%%?status_textarea=%s) をして" "ください!" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4108,7 +4108,7 @@ msgstr "" "%%%%)して、**%s** のつぶやきなどをフォローしましょう! ([もっと読む](%%%%doc." "help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4119,7 +4119,7 @@ msgstr "" "[StatusNet](http://status.net/)を基にした[マイクロブロギング](http://en." "wikipedia.org/wiki/Micro-blogging) サービス。" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "%s の繰り返し" @@ -4983,6 +4983,13 @@ msgstr "作者" msgid "Favor" msgstr "お気に入り" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) はお気に入りとしてあなたのつぶやきを加えました" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5162,6 +5169,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "グループ受信箱を保存する際に問題が発生しました。" +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "フォローを保存できません。" + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5234,6 +5248,13 @@ msgstr "フォローを保存できません。" msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s は %2$s であなたのつぶやきを聞いています。" + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7373,6 +7394,13 @@ msgstr "この利用者からのフォローを解除する" msgid "Unsubscribe" msgstr "フォロー解除" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "ユーザはプロフィールをもっていません。" + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "アバターを編集する" diff --git a/locale/ka/LC_MESSAGES/statusnet.po b/locale/ka/LC_MESSAGES/statusnet.po index 9290a8a02c..cf125941cb 100644 --- a/locale/ka/LC_MESSAGES/statusnet.po +++ b/locale/ka/LC_MESSAGES/statusnet.po @@ -9,17 +9,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:05+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:29+0000\n" "Language-Team: Georgian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ka\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4038,7 +4038,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4047,7 +4047,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4055,7 +4055,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "" @@ -4916,6 +4916,13 @@ msgstr "ავტორი(ები)" msgid "Favor" msgstr "რჩეული" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s-მა (@%s) დაამატა თქვენი შეტყობინება თავის რჩეულებში" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5094,6 +5101,13 @@ msgstr "saveKnownGroups-სათვის არასწორი ტიპი msgid "Problem saving group inbox." msgstr "პრობლემა ჯგუფის ინდექსის შენახვისას." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "ჯგუფის ლოკალური ინფორმაციის დამახსოვრება ვერ მოხერხდა." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5168,6 +5182,13 @@ msgstr "გამოწერის წაშლა ვერ მოხერხ msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s ამიერიდან ყურს უგდებს თქვენს შეტყობინებებს %2$s-ზე." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7298,6 +7319,13 @@ msgstr "ამ მომხმარებლის გამოწერის msgid "Unsubscribe" msgstr "გამოწერის გაუქმება" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "მომხმარებელს პროფილი არ გააჩნია." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "ავატარის რედაქტირება" diff --git a/locale/ko/LC_MESSAGES/statusnet.po b/locale/ko/LC_MESSAGES/statusnet.po index ed9c69574c..145f1a51a4 100644 --- a/locale/ko/LC_MESSAGES/statusnet.po +++ b/locale/ko/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:06+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:31+0000\n" "Language-Team: Korean \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ko\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4014,7 +4014,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4023,7 +4023,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4033,7 +4033,7 @@ msgstr "" "**%s**는 %%%%site.name%%%% [마이크로블로깅](http://en.wikipedia.org/wiki/" "Micro-blogging) 서비스에 계정을 갖고 있습니다." -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, fuzzy, php-format msgid "Repeat of %s" msgstr "%s에 답신" @@ -4877,6 +4877,13 @@ msgstr "작성자" msgid "Favor" msgstr "좋아합니다" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "누군가 내 글을 좋아하는 게시글로 추가했을 때, 메일을 보냅니다." + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5057,6 +5064,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "통지를 저장하는데 문제가 발생했습니다." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "새 그룹을 만들 수 없습니다." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5131,6 +5145,13 @@ msgstr "구독을 저장할 수 없습니다." msgid "Follow" msgstr "팔로우" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s님이 귀하의 알림 메시지를 %2$s에서 듣고 있습니다." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7189,6 +7210,13 @@ msgstr "이 사용자로부터 구독취소합니다." msgid "Unsubscribe" msgstr "구독 해제" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "이용자가 프로필을 가지고 있지 않습니다." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "아바타 편집" diff --git a/locale/mk/LC_MESSAGES/statusnet.po b/locale/mk/LC_MESSAGES/statusnet.po index 17baeffeec..248ae86b37 100644 --- a/locale/mk/LC_MESSAGES/statusnet.po +++ b/locale/mk/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:07+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:32+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4108,7 +4108,7 @@ msgstr "" "Можете да го подбуцнете корисникот %1$s или [му испратите нешто](%%%%action." "newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4122,7 +4122,7 @@ msgstr "" "register%%%%) за да можете да ги следите забелешките на **%s** и многу " "повеќе! ([Прочитајте повеќе](%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4133,7 +4133,7 @@ msgstr "" "(http://mk.wikipedia.org/wiki/Микроблогирање) заснована на слободната " "програмска алатка [StatusNet](http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Повторувања на %s" @@ -4998,6 +4998,13 @@ msgstr "Автор(и)" msgid "Favor" msgstr "Бендисај" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) бендиса Ваша забелешка" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5174,6 +5181,13 @@ msgstr "На saveKnownGroups му е уакажан грешен тип" msgid "Problem saving group inbox." msgstr "Проблем при зачувувањето на групното приемно сандаче." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Не можев да ги зачувам информациите за локалните групи." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5250,6 +5264,13 @@ msgstr "Не можам да ја избришам претплатата." msgid "Follow" msgstr "Следи" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s се зачлени во групата %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7446,6 +7467,13 @@ msgstr "Откажи претплата од овој корсиник" msgid "Unsubscribe" msgstr "Откажи ја претплатата" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Корисникот нема профил." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Уреди аватар" diff --git a/locale/nb/LC_MESSAGES/statusnet.po b/locale/nb/LC_MESSAGES/statusnet.po index 26eb32056d..3605a78e89 100644 --- a/locale/nb/LC_MESSAGES/statusnet.po +++ b/locale/nb/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:10+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:35+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4056,7 +4056,7 @@ msgstr "" "Vær den første til å [poste om dette emnet](%%%%action.newnotice%%%%?" "status_textarea=%s)!" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4069,7 +4069,7 @@ msgstr "" "[StatusNet](http://status.net/). [Bli med nå](%%%%action.register%%%%) for å " "følge **%s** og mange flere sine notiser. ([Les mer](%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4080,7 +4080,7 @@ msgstr "" "no.wikipedia.org/wiki/Mikroblogg) basert på det frie programvareverktøyet " "[StatusNet](http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Repetisjon av %s" @@ -4923,6 +4923,13 @@ msgstr "Forfatter(e)" msgid "Favor" msgstr "Favoritter" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s /@%s) la din notis til som en favoritt" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5094,6 +5101,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "Problem ved lagring av gruppeinnboks." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Kunne ikke lagre lokal gruppeinformasjon." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5169,6 +5183,13 @@ msgstr "Kunne ikke slette favoritt." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s lytter nå til dine notiser på %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7338,6 +7359,13 @@ msgstr "Abonner på denne brukeren" msgid "Unsubscribe" msgstr "Abonner" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Brukeren har ingen profil." + #: lib/userprofile.php:117 #, fuzzy msgid "Edit Avatar" diff --git a/locale/nl/LC_MESSAGES/statusnet.po b/locale/nl/LC_MESSAGES/statusnet.po index bf0be6d0c9..93a3239f28 100644 --- a/locale/nl/LC_MESSAGES/statusnet.po +++ b/locale/nl/LC_MESSAGES/statusnet.po @@ -12,17 +12,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:08+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:33+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4131,7 +4131,7 @@ msgstr "" "U kunt proberen %1$s te porren of [een bericht aan die gebruiker sturen](%%%%" "action.newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4145,7 +4145,7 @@ msgstr "" "abonneren op de mededelingen van **%s** en nog veel meer! [Meer lezen...](%%%" "%doc.help%%%%)" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4156,7 +4156,7 @@ msgstr "" "(http://en.wikipedia.org/wiki/Micro-blogging) gebaseerd op de Vrije Software " "[StatusNet](http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Herhaald van %s" @@ -5028,6 +5028,13 @@ msgstr "Auteur(s)" msgid "Favor" msgstr "Aan favorieten toevoegen" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) heeft uw mededeling als favoriet toegevoegd" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5212,6 +5219,13 @@ msgstr "" "Er is een probleem opgetreden bij het opslaan van het Postvak IN van de " "groep." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Het was niet mogelijk de lokale groepsinformatie op te slaan." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5288,6 +5302,13 @@ msgstr "Kon abonnement niet verwijderen." msgid "Follow" msgstr "Volgen" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s is lid geworden van de groep %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7493,6 +7514,13 @@ msgstr "Uitschrijven van deze gebruiker" msgid "Unsubscribe" msgstr "Abonnement opheffen" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Deze gebruiker heeft geen profiel." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Avatar bewerken" diff --git a/locale/nn/LC_MESSAGES/statusnet.po b/locale/nn/LC_MESSAGES/statusnet.po index 4469e27768..30065f00e0 100644 --- a/locale/nn/LC_MESSAGES/statusnet.po +++ b/locale/nn/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:09+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:34+0000\n" "Language-Team: Norwegian Nynorsk \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nn\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4121,7 +4121,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4130,7 +4130,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4140,7 +4140,7 @@ msgstr "" "**%s** har ein konto på %%%%site.name%%%%, ei [mikroblogging](http://en." "wikipedia.org/wiki/Micro-blogging)-teneste" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, fuzzy, php-format msgid "Repeat of %s" msgstr "Svar til %s" @@ -5002,6 +5002,14 @@ msgstr "" msgid "Favor" msgstr "Tjeneste" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "" +"Send meg ein epost når nokon legg til ein av mine notisar som favoritt." + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5181,6 +5189,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "Eit problem oppstod ved lagring av notis." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Kunne ikkje lagra abonnement." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5256,6 +5271,13 @@ msgstr "Kunne ikkje lagra abonnement." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s høyrer no på notisane dine på %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7359,6 +7381,13 @@ msgstr "Fjern tinging fra denne brukaren" msgid "Unsubscribe" msgstr "Fjern tinging" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Brukaren har inga profil." + #: lib/userprofile.php:117 #, fuzzy msgid "Edit Avatar" diff --git a/locale/pl/LC_MESSAGES/statusnet.po b/locale/pl/LC_MESSAGES/statusnet.po index 533f037b7c..9a4e2b64de 100644 --- a/locale/pl/LC_MESSAGES/statusnet.po +++ b/locale/pl/LC_MESSAGES/statusnet.po @@ -11,8 +11,8 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:11+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:36+0000\n" "Last-Translator: Piotr Drąg \n" "Language-Team: Polish \n" "MIME-Version: 1.0\n" @@ -20,11 +20,11 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n == 1) ? 0 : ( (n%10 >= 2 && n%10 <= 4 && " "(n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pl\n" "X-Message-Group: #out-statusnet-core\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4077,7 +4077,7 @@ msgstr "" "Można spróbować szturchnąć użytkownika %1$s lub [wysłać mu coś](%%%%action." "newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4091,7 +4091,7 @@ msgstr "" "obserwować wpisy użytkownika **%s** i wiele więcej. ([Przeczytaj więcej](%%%%" "doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4102,7 +4102,7 @@ msgstr "" "pl.wikipedia.org/wiki/Mikroblog) opartej na wolnym narzędziu [StatusNet]" "(http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Powtórzenia %s" @@ -4963,6 +4963,13 @@ msgstr "Autorzy" msgid "Favor" msgstr "Dodaj do ulubionych" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "Użytkownik %s (@%s) dodał twój wpis jako ulubiony" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5141,6 +5148,13 @@ msgstr "Podano błędne dane do saveKnownGroups" msgid "Problem saving group inbox." msgstr "Problem podczas zapisywania skrzynki odbiorczej grupy." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Nie można zapisać informacji o lokalnej grupie." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5213,6 +5227,13 @@ msgstr "Nie można usunąć subskrypcji." msgid "Follow" msgstr "Obserwuj" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "Użytkownik %1$s dołączył do grupy %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7415,6 +7436,13 @@ msgstr "Zrezygnuj z subskrypcji tego użytkownika" msgid "Unsubscribe" msgstr "Zrezygnuj z subskrypcji" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Użytkownik nie posiada profilu." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Zmodyfikuj awatar" diff --git a/locale/pt/LC_MESSAGES/statusnet.po b/locale/pt/LC_MESSAGES/statusnet.po index 48ff136b50..03e01a88d4 100644 --- a/locale/pt/LC_MESSAGES/statusnet.po +++ b/locale/pt/LC_MESSAGES/statusnet.po @@ -13,17 +13,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:12+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:36+0000\n" "Language-Team: Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4086,7 +4086,7 @@ msgstr "" "Pode tentar dar um toque em %1$s ou [endereçar-lhe uma nota](%%%%action." "newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4100,7 +4100,7 @@ msgstr "" "register%%) para seguir as notas de **%s** e de muitos mais! ([Saber mais](%%" "doc.help%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4111,7 +4111,7 @@ msgstr "" "(http://en.wikipedia.org/wiki/Micro-blogging) baseado no programa de " "Software Livre [StatusNet](http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Repetições de %s" @@ -4969,6 +4969,13 @@ msgstr "Autores" msgid "Favor" msgstr "Eleger como favorita" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) adicionou a sua nota às favoritas." + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5145,6 +5152,13 @@ msgstr "O tipo fornecido ao método saveKnownGroups é incorrecto" msgid "Problem saving group inbox." msgstr "Problema na gravação da caixa de entrada do grupo." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Não foi possível gravar a informação do grupo local." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5219,6 +5233,13 @@ msgstr "Não foi possível apagar a subscrição." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s está agora a ouvir as suas notas em %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7411,6 +7432,13 @@ msgstr "Deixar de subscrever este utilizador" msgid "Unsubscribe" msgstr "Abandonar" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Utilizador não tem perfil." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Editar Avatar" diff --git a/locale/pt_BR/LC_MESSAGES/statusnet.po b/locale/pt_BR/LC_MESSAGES/statusnet.po index ebee1ca5f3..fec11bd91d 100644 --- a/locale/pt_BR/LC_MESSAGES/statusnet.po +++ b/locale/pt_BR/LC_MESSAGES/statusnet.po @@ -15,18 +15,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:13+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:37+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4114,7 +4114,7 @@ msgstr "" "Seja o primeiro a [publicar sobre este tópico](%%%%action.newnotice%%%%?" "status_textarea=%s)!" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4128,7 +4128,7 @@ msgstr "" "acompanhar as mensagens de **%s** e muito mais! ([Saiba mais](%%%%doc.help%%%" "%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4139,7 +4139,7 @@ msgstr "" "pt.wikipedia.org/wiki/Micro-blogging) baseado no software livre [StatusNet]" "(http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Repetição de %s" @@ -4999,6 +4999,13 @@ msgstr "Autor(es)" msgid "Favor" msgstr "Tornar favorita" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) marcou sua mensagem como favorita" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5174,6 +5181,13 @@ msgstr "O tipo fornecido ao método saveKnownGroups é incorreto" msgid "Problem saving group inbox." msgstr "Problema no salvamento das mensagens recebidas do grupo." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Não foi possível salvar a informação do grupo local." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5247,6 +5261,13 @@ msgstr "Não foi possível salvar a assinatura." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s agora está acompanhando suas mensagens no %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7447,6 +7468,13 @@ msgstr "Cancelar a assinatura deste usuário" msgid "Unsubscribe" msgstr "Cancelar" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "O usuário não tem perfil." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Editar o avatar" diff --git a/locale/ru/LC_MESSAGES/statusnet.po b/locale/ru/LC_MESSAGES/statusnet.po index ce1f90620b..e8c4ffa868 100644 --- a/locale/ru/LC_MESSAGES/statusnet.po +++ b/locale/ru/LC_MESSAGES/statusnet.po @@ -14,18 +14,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:14+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:38+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4093,7 +4093,7 @@ msgstr "" "Вы можете попробовать «подтолкнуть» %1$s или [написать что-нибудь для них](%%%" "%action.newnotice%%%%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4108,7 +4108,7 @@ msgstr "" "сообщения участника **%s** и иметь доступ ко множеству других возможностей! " "([Читать далее](%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4120,7 +4120,7 @@ msgstr "" "использованием свободного программного обеспечения [StatusNet](http://status." "net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Повтор за %s" @@ -4982,6 +4982,13 @@ msgstr "Автор(ы)" msgid "Favor" msgstr "Пометить" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) добавил вашу запись в число своих любимых" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5157,6 +5164,13 @@ msgstr "Для saveKnownGroups указан неверный тип" msgid "Problem saving group inbox." msgstr "Проблемы с сохранением входящих сообщений группы." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Не удаётся сохранить информацию о локальной группе." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5231,6 +5245,13 @@ msgstr "Не удаётся удалить подписку." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s теперь следит за вашими записями на %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7425,6 +7446,13 @@ msgstr "Отписаться от этого пользователя" msgid "Unsubscribe" msgstr "Отписаться" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "У пользователя нет профиля." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Изменить аватару" diff --git a/locale/statusnet.pot b/locale/statusnet.pot index 8d976f2619..6ba6689a93 100644 --- a/locale/statusnet.pot +++ b/locale/statusnet.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -3868,7 +3868,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3877,7 +3877,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3885,7 +3885,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "" @@ -4693,6 +4693,13 @@ msgstr "" msgid "Favor" msgstr "" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -4862,6 +4869,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "" +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "" + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -4933,6 +4947,13 @@ msgstr "" msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, php-format +msgid "%1$s is now following %2$s." +msgstr "" + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -6943,6 +6964,13 @@ msgstr "" msgid "Unsubscribe" msgstr "" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "" + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "" diff --git a/locale/sv/LC_MESSAGES/statusnet.po b/locale/sv/LC_MESSAGES/statusnet.po index c277294c6e..48afeedb44 100644 --- a/locale/sv/LC_MESSAGES/statusnet.po +++ b/locale/sv/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:15+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22: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.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: sv\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4074,7 +4074,7 @@ msgstr "" "Var den första att [skriva i detta ämne](%%%%action.newnotice%%%%?" "status_textarea=%s)!" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4087,7 +4087,7 @@ msgstr "" "[StatusNet](http://status.net/). [Gå med nu](%%%%action.register%%%%) för " "att följa **%s**s notiser och många fler! ([Läs mer](%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4098,7 +4098,7 @@ msgstr "" "wikipedia.org/wiki/Mikroblogg)tjänst baserad på den fria programvaran " "[StatusNet](http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Upprepning av %s" @@ -4958,6 +4958,13 @@ msgstr "Författare" msgid "Favor" msgstr "Markera som favorit" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) lade till din notis som en favorit" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5133,6 +5140,13 @@ msgstr "Dålig typ tillhandahållen saveKnownGroups" msgid "Problem saving group inbox." msgstr "Problem med att spara gruppinkorg." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Kunde inte spara lokal gruppinformation." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5204,6 +5218,13 @@ msgstr "Kunde inte spara prenumeration." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s lyssnar nu på dina notiser på %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7387,6 +7408,13 @@ msgstr "Avsluta prenumerationen på denna användare" msgid "Unsubscribe" msgstr "Avsluta pren." +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Användaren har ingen profil." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Redigera avatar" diff --git a/locale/te/LC_MESSAGES/statusnet.po b/locale/te/LC_MESSAGES/statusnet.po index 19e0a80520..1a0244b39a 100644 --- a/locale/te/LC_MESSAGES/statusnet.po +++ b/locale/te/LC_MESSAGES/statusnet.po @@ -10,17 +10,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:16+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:43+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4043,7 +4043,7 @@ msgid "" msgstr "" "[ఈ విషయంపై](%%%%action.newnotice%%%%?status_textarea=%s) వ్రాసే మొదటివారు మీరే అవ్వండి!" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4058,7 +4058,7 @@ msgstr "" "చాల వాటిలో భాగస్తులవ్వడానికి [ఇప్పుడే చేరండి](%%%%action.register%%%%)! ([మరింత చదవండి](%%%%" "doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, fuzzy, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4068,7 +4068,7 @@ msgstr "" "ఇది %%site.name%%, స్వేచ్ఛా మృదూపకరమైన [స్టేటస్‌నెట్](http://status.net/) అనే పనిముట్టుపై " "ఆధారపడిన ఒక [మైక్రో-బ్లాగింగు](http://en.wikipedia.org/wiki/Micro-blogging) సేవ." -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "%s యొక్క పునరావృతం" @@ -4902,6 +4902,13 @@ msgstr "రచయిత(లు)" msgid "Favor" msgstr "ఇష్టపడు" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) మీ నోటీసుని ఇష్టపడ్డారు" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5075,6 +5082,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "సందేశాన్ని భద్రపరచడంలో పొరపాటు." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "స్థానిక గుంపుని తాజాకరించలేకున్నాం." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5148,6 +5162,13 @@ msgstr "కొత్త చందాని చేర్చలేకపోయా msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s ఇప్పుడు %2$sలో మీ నోటీసులని వింటున్నారు." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7290,6 +7311,13 @@ msgstr "ఈ వాడుకరి నుండి చందామాను" msgid "Unsubscribe" msgstr "చందామాను" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "వాడుకరికి ప్రొఫైలు లేదు." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "అవతారాన్ని మార్చు" diff --git a/locale/tr/LC_MESSAGES/statusnet.po b/locale/tr/LC_MESSAGES/statusnet.po index a8d4774fb9..07dbdd66cf 100644 --- a/locale/tr/LC_MESSAGES/statusnet.po +++ b/locale/tr/LC_MESSAGES/statusnet.po @@ -11,17 +11,17 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:17+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:44+0000\n" "Language-Team: Turkish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tr\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4020,7 +4020,7 @@ msgid "" "%?status_textarea=%2$s)." msgstr "" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4029,7 +4029,7 @@ msgid "" "follow **%s**'s notices and many more! ([Read more](%%%%doc.help%%%%))" msgstr "" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4037,7 +4037,7 @@ msgid "" "[StatusNet](http://status.net/) tool. " msgstr "" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, fuzzy, php-format msgid "Repeat of %s" msgstr "%s için cevaplar" @@ -4888,6 +4888,13 @@ msgstr "" msgid "Favor" msgstr "" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%1$s %2$s'da durumunuzu takip ediyor" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5065,6 +5072,13 @@ msgstr "" msgid "Problem saving group inbox." msgstr "Durum mesajını kaydederken hata oluştu." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Profil kaydedilemedi." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5138,6 +5152,13 @@ msgstr "Yeni abonelik eklenemedi." msgid "Follow" msgstr "" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s %2$s'da durumunuzu takip ediyor" + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7224,6 +7245,13 @@ msgstr "Bize o profili yollamadınız" msgid "Unsubscribe" msgstr "Aboneliği sonlandır" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Kullanıcının profili yok." + #: lib/userprofile.php:117 #, fuzzy msgid "Edit Avatar" diff --git a/locale/uk/LC_MESSAGES/statusnet.po b/locale/uk/LC_MESSAGES/statusnet.po index 52b750ce89..b5abed952f 100644 --- a/locale/uk/LC_MESSAGES/statusnet.po +++ b/locale/uk/LC_MESSAGES/statusnet.po @@ -12,18 +12,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:18+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:45+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -4090,7 +4090,7 @@ msgstr "" "Ви можете «розштовхати» %1$s або [щось йому написати](%%%%action.newnotice%%%" "%?status_textarea=%2$s)." -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4104,7 +4104,7 @@ msgstr "" "register%%%%) зараз і слідкуйте за дописами **%s**, також на вас чекає " "багато іншого! ([Дізнатися більше](%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4115,7 +4115,7 @@ msgstr "" "(http://uk.wikipedia.org/wiki/Мікроблогінг), який працює на вільному " "програмному забезпеченні [StatusNet](http://status.net/). " -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "Повторення за %s" @@ -4977,6 +4977,13 @@ msgstr "Автор(и)" msgid "Favor" msgstr "Обрати" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) додав(ла) ваш допис обраних" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5152,6 +5159,13 @@ msgstr "Задається невірний тип для saveKnownGroups" msgid "Problem saving group inbox." msgstr "Проблема при збереженні вхідних дописів спільноти." +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "Не вдалося зберегти інформацію про локальну спільноту." + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5224,6 +5238,13 @@ msgstr "Не вдалося видалити підписку." msgid "Follow" msgstr "Слідкувати" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s долучився до спільноти %2$s." + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7420,6 +7441,13 @@ msgstr "Відписатись від цього користувача" msgid "Unsubscribe" msgstr "Відписатись" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "Користувач не має профілю." + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "Аватара" diff --git a/locale/zh_CN/LC_MESSAGES/statusnet.po b/locale/zh_CN/LC_MESSAGES/statusnet.po index 3fdee114cb..9699f1b2e2 100644 --- a/locale/zh_CN/LC_MESSAGES/statusnet.po +++ b/locale/zh_CN/LC_MESSAGES/statusnet.po @@ -1,6 +1,7 @@ # Translation of StatusNet - Core to Simplified Chinese (‪中文(简体)‬) # Expored from translatewiki.net # +# Author: Brion # Author: Chenxiaoqino # Author: Shizhao # Author: Sweeite012f @@ -13,18 +14,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Core\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:19+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:46+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-core\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-POT-Import-Date: 2010-10-01 20:37:46+0000\n" +"X-POT-Import-Date: 2010-10-03 20:54:28+0000\n" #. TRANS: Page title #. TRANS: Menu item for site administration @@ -3981,7 +3982,7 @@ msgstr "" "你可以试着呼叫%1$s或给他们 [发一些消息](%%%%action.newnotice%%%%?" "status_textarea=%2$s)。" -#: actions/showstream.php:243 +#: actions/showstream.php:246 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -3994,7 +3995,7 @@ msgstr "" "E5%BE%AE%E5%8D%9A%E5%AE%A2)服务。[现在加入](%%%%action.register%%%%)并关注**%" "s**的消息和享受更多乐趣! ([阅读更多](%%%%doc.help%%%%))" -#: actions/showstream.php:248 +#: actions/showstream.php:251 #, php-format msgid "" "**%s** has an account on %%%%site.name%%%%, a [micro-blogging](http://en." @@ -4005,7 +4006,7 @@ msgstr "" "[StatusNet](http://status.net/)的[微博客](http://zh.wikipedia.org/zh-hans/%" "E5%BE%AE%E5%8D%9A%E5%AE%A2)。" -#: actions/showstream.php:305 +#: actions/showstream.php:308 #, php-format msgid "Repeat of %s" msgstr "%s 的转发" @@ -4832,6 +4833,13 @@ msgstr "作者" msgid "Favor" msgstr "收藏" +#. TRANS: Ntofication given when a user marks a notice as favorite. +#. TRANS: %1$s is a user nickname or full name, %2$s is a notice URI. +#: classes/Fave.php:151 +#, fuzzy, php-format +msgid "%1$s marked notice %2$s as a favorite." +msgstr "%s (@%s) 收藏了你的消息" + #. TRANS: Server exception thrown when a URL cannot be processed. #: classes/File.php:142 #, php-format @@ -5002,6 +5010,13 @@ msgstr "对 saveKnownGroups 提供的类型无效" msgid "Problem saving group inbox." msgstr "保存小组收件箱时出错。" +#. TRANS: Server exception thrown when a reply cannot be saved. +#. TRANS: %1$d is a notice ID, %2$d is the ID of the mentioned user. +#: classes/Notice.php:1120 +#, fuzzy, php-format +msgid "Could not save reply for %1$d, %2$d." +msgstr "无法保存本地小组信息。" + #. TRANS: Message used to repeat a notice. RT is the abbreviation of 'retweet'. #. TRANS: %1$s is the repeated user's name, %2$s is the repeated notice. #: classes/Notice.php:1822 @@ -5073,6 +5088,13 @@ msgstr "无法取消关注。" msgid "Follow" msgstr "关注" +#. TRANS: Notification given when one person starts following another. +#. TRANS: %1$s is the subscriber, %2$s is the subscribed. +#: classes/Subscription.php:258 +#, fuzzy, php-format +msgid "%1$s is now following %2$s." +msgstr "%1$s加入了%2$s小组。" + #. TRANS: Notice given on user registration. #. TRANS: %1$s is the sitename, $2$s is the registering user's nickname. #: classes/User.php:384 @@ -7231,6 +7253,13 @@ msgstr "取消关注这个用户" msgid "Unsubscribe" msgstr "取消关注" +#. TRANS: Exception text shown when no profile can be found for a user. +#. TRANS: %1$s is a user nickname, $2$d is a user ID (number). +#: lib/usernoprofileexception.php:60 +#, fuzzy, php-format +msgid "User %1$s (%2$d) has no profile record." +msgstr "用户没有个人信息。" + #: lib/userprofile.php:117 msgid "Edit Avatar" msgstr "编辑头像" diff --git a/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po new file mode 100644 index 0000000000..5af023356b --- /dev/null +++ b/plugins/Adsense/locale/br/LC_MESSAGES/Adsense.po @@ -0,0 +1,101 @@ +# Translation of StatusNet - Adsense to Breton (Brezhoneg) +# Expored from translatewiki.net +# +# Author: Y-M D +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Adsense\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:48+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-adsense\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: Menu item title/tooltip +#: AdsensePlugin.php:194 +msgid "AdSense configuration" +msgstr "Kefluniadur AdSense" + +#. TRANS: Menu item for site administration +#: AdsensePlugin.php:196 +msgid "AdSense" +msgstr "AdSense" + +#: AdsensePlugin.php:209 +msgid "Plugin to add Google Adsense to StatusNet sites." +msgstr "Plugin evit ouzhpennañ Google Adsense da lec'hiennoù StatusNet." + +#: adsenseadminpanel.php:52 +msgctxt "TITLE" +msgid "AdSense" +msgstr "AdSense" + +#: adsenseadminpanel.php:62 +msgid "AdSense settings for this StatusNet site" +msgstr "Arventennoù Adsense evit al lec'hienn StatusNet-mañ." + +#: adsenseadminpanel.php:164 +msgid "Client ID" +msgstr "" + +#: adsenseadminpanel.php:165 +msgid "Google client ID" +msgstr "" + +#: adsenseadminpanel.php:170 +msgid "Ad script URL" +msgstr "" + +#: adsenseadminpanel.php:171 +msgid "Script URL (advanced)" +msgstr "" + +#: adsenseadminpanel.php:176 +msgid "Medium rectangle" +msgstr "" + +#: adsenseadminpanel.php:177 +msgid "Medium rectangle slot code" +msgstr "" + +#: adsenseadminpanel.php:182 +msgid "Rectangle" +msgstr "Skouergornek" + +#: adsenseadminpanel.php:183 +msgid "Rectangle slot code" +msgstr "" + +#: adsenseadminpanel.php:188 +msgid "Leaderboard" +msgstr "" + +#: adsenseadminpanel.php:189 +msgid "Leaderboard slot code" +msgstr "" + +#: adsenseadminpanel.php:194 +msgid "Skyscraper" +msgstr "" + +#: adsenseadminpanel.php:195 +msgid "Wide skyscraper slot code" +msgstr "" + +#: adsenseadminpanel.php:208 +msgid "Save" +msgstr "Enrollañ" + +#: adsenseadminpanel.php:208 +msgid "Save AdSense settings" +msgstr "" diff --git a/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po new file mode 100644 index 0000000000..e79a47c26b --- /dev/null +++ b/plugins/Adsense/locale/tl/LC_MESSAGES/Adsense.po @@ -0,0 +1,102 @@ +# Translation of StatusNet - Adsense to Tagalog (Tagalog) +# Expored from translatewiki.net +# +# Author: AnakngAraw +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Adsense\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:48+0000\n" +"Language-Team: Tagalog \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: tl\n" +"X-Message-Group: #out-statusnet-plugin-adsense\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Menu item title/tooltip +#: AdsensePlugin.php:194 +msgid "AdSense configuration" +msgstr "Pagkakaayos ng AdSense" + +#. TRANS: Menu item for site administration +#: AdsensePlugin.php:196 +msgid "AdSense" +msgstr "AdSense" + +#: AdsensePlugin.php:209 +msgid "Plugin to add Google Adsense to StatusNet sites." +msgstr "" +"Pampasak upang maidagdag ang Adsense ng Google sa mga sityo ng StatusNet." + +#: adsenseadminpanel.php:52 +msgctxt "TITLE" +msgid "AdSense" +msgstr "AdSense" + +#: adsenseadminpanel.php:62 +msgid "AdSense settings for this StatusNet site" +msgstr "Mga katakdaan ng Adsense para sa sityong ito ng StatusNet" + +#: adsenseadminpanel.php:164 +msgid "Client ID" +msgstr "ID ng kliyente" + +#: adsenseadminpanel.php:165 +msgid "Google client ID" +msgstr "ID ng kliyente ng Google" + +#: adsenseadminpanel.php:170 +msgid "Ad script URL" +msgstr "URL ng panitik ng anunsyo" + +#: adsenseadminpanel.php:171 +msgid "Script URL (advanced)" +msgstr "URL ng panitik (mas masulong)" + +#: adsenseadminpanel.php:176 +msgid "Medium rectangle" +msgstr "Hindi kalakihang parihaba" + +#: adsenseadminpanel.php:177 +msgid "Medium rectangle slot code" +msgstr "Kodigo ng puwang ng hindi kalakihang parihaba" + +#: adsenseadminpanel.php:182 +msgid "Rectangle" +msgstr "Parihaba" + +#: adsenseadminpanel.php:183 +msgid "Rectangle slot code" +msgstr "Kodigo ng puwang ng parihaba" + +#: adsenseadminpanel.php:188 +msgid "Leaderboard" +msgstr "Pangunahing-pisara" + +#: adsenseadminpanel.php:189 +msgid "Leaderboard slot code" +msgstr "Kodigo ng puwang ng pangunahing-pisara" + +#: adsenseadminpanel.php:194 +msgid "Skyscraper" +msgstr "Tukud-langit" + +#: adsenseadminpanel.php:195 +msgid "Wide skyscraper slot code" +msgstr "Kodigo ng puwang ng maluwang na tukud-langit" + +#: adsenseadminpanel.php:208 +msgid "Save" +msgstr "Sagipin" + +#: adsenseadminpanel.php:208 +msgid "Save AdSense settings" +msgstr "Sagipin ang mga katakdaan ng AdSense" diff --git a/plugins/AnonymousFave/locale/AnonymousFave.pot b/plugins/AnonymousFave/locale/AnonymousFave.pot index ff07f17d7b..5f7a9ccc94 100644 --- a/plugins/AnonymousFave/locale/AnonymousFave.pot +++ b/plugins/AnonymousFave/locale/AnonymousFave.pot @@ -8,31 +8,26 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n" -#. TRANS: Tally for number of times a notice was favored. -#. TRANS: %d is the number of times a notice was favored. -#: AnonymousFavePlugin.php:193 -#, php-format -msgid "favored once" -msgid_plural "favored %d times" -msgstr[0] "" -msgstr[1] "" +#. TRANS: Label for tally for number of times a notice was favored. +#: AnonymousFavePlugin.php:207 +msgid "Favored" +msgstr "" #. TRANS: Server exception. -#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +#: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251 msgid "Couldn't create anonymous user session." msgstr "" #. TRANS: Plugin description. -#: AnonymousFavePlugin.php:287 +#: AnonymousFavePlugin.php:326 msgid "Allow anonymous users to favorite notices." msgstr "" diff --git a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po index 8b91051a08..49d56e34dd 100644 --- a/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/es/LC_MESSAGES/AnonymousFave.po @@ -9,34 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:22+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:49+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. TRANS: Tally for number of times a notice was favored. -#. TRANS: %d is the number of times a notice was favored. -#: AnonymousFavePlugin.php:193 -#, php-format -msgid "favored once" -msgid_plural "favored %d times" -msgstr[0] "marcado como favorito una vez" -msgstr[1] "marcado como favorito %d veces" +#. TRANS: Label for tally for number of times a notice was favored. +#: AnonymousFavePlugin.php:207 +#, fuzzy +msgid "Favored" +msgstr "marcado como favorito una vez" #. TRANS: Server exception. -#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +#: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251 msgid "Couldn't create anonymous user session." msgstr "No se pudo crear sesión de usuario anónimo." #. TRANS: Plugin description. -#: AnonymousFavePlugin.php:287 +#: AnonymousFavePlugin.php:326 msgid "Allow anonymous users to favorite notices." msgstr "Permitir a usuarios anónimos marcar mensajes como favoritos." diff --git a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po index eb0ef34b94..008f2c0da6 100644 --- a/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/ia/LC_MESSAGES/AnonymousFave.po @@ -9,34 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:22+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:49+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. TRANS: Tally for number of times a notice was favored. -#. TRANS: %d is the number of times a notice was favored. -#: AnonymousFavePlugin.php:193 -#, php-format -msgid "favored once" -msgid_plural "favored %d times" -msgstr[0] "favorite un vice" -msgstr[1] "favorite %d vices" +#. TRANS: Label for tally for number of times a notice was favored. +#: AnonymousFavePlugin.php:207 +#, fuzzy +msgid "Favored" +msgstr "favorite un vice" #. TRANS: Server exception. -#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +#: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251 msgid "Couldn't create anonymous user session." msgstr "Non poteva crear session de usator anonyme." #. TRANS: Plugin description. -#: AnonymousFavePlugin.php:287 +#: AnonymousFavePlugin.php:326 msgid "Allow anonymous users to favorite notices." msgstr "Permitter a usatores anonyme de favorir notas." diff --git a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po index c7d0157fe4..ef63f13673 100644 --- a/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/mk/LC_MESSAGES/AnonymousFave.po @@ -9,34 +9,31 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:49+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -#. TRANS: Tally for number of times a notice was favored. -#. TRANS: %d is the number of times a notice was favored. -#: AnonymousFavePlugin.php:193 -#, php-format -msgid "favored once" -msgid_plural "favored %d times" -msgstr[0] "бендисано еднаш" -msgstr[1] "бендисано %d пати" +#. TRANS: Label for tally for number of times a notice was favored. +#: AnonymousFavePlugin.php:207 +#, fuzzy +msgid "Favored" +msgstr "бендисано еднаш" #. TRANS: Server exception. -#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +#: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251 msgid "Couldn't create anonymous user session." msgstr "Не можев да создадам анонимна корисничка сесија." #. TRANS: Plugin description. -#: AnonymousFavePlugin.php:287 +#: AnonymousFavePlugin.php:326 msgid "Allow anonymous users to favorite notices." msgstr "Дозволи анонимни корисници да бендисуваат забелешки." diff --git a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po index e729adefb8..50718382ad 100644 --- a/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/nl/LC_MESSAGES/AnonymousFave.po @@ -10,34 +10,31 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:49+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#. TRANS: Tally for number of times a notice was favored. -#. TRANS: %d is the number of times a notice was favored. -#: AnonymousFavePlugin.php:193 -#, php-format -msgid "favored once" -msgid_plural "favored %d times" -msgstr[0] "één keer als favoriet aangemerkt" -msgstr[1] "%d keer als favoriet aangemerkt" +#. TRANS: Label for tally for number of times a notice was favored. +#: AnonymousFavePlugin.php:207 +#, fuzzy +msgid "Favored" +msgstr "één keer als favoriet aangemerkt" #. TRANS: Server exception. -#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +#: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251 msgid "Couldn't create anonymous user session." msgstr "Het was niet mogelijk een anonieme gebruikerssessie aan te maken." #. TRANS: Plugin description. -#: AnonymousFavePlugin.php:287 +#: AnonymousFavePlugin.php:326 msgid "Allow anonymous users to favorite notices." msgstr "Staat anonieme gebruikers toe mededelingen als favoriet aan te merken." diff --git a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po index 57497d2816..269be0b3b3 100644 --- a/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po +++ b/plugins/AnonymousFave/locale/uk/LC_MESSAGES/AnonymousFave.po @@ -9,36 +9,32 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - AnonymousFave\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:23+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:50+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:44:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:54:23+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-anonymousfave\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -#. TRANS: Tally for number of times a notice was favored. -#. TRANS: %d is the number of times a notice was favored. -#: AnonymousFavePlugin.php:193 -#, php-format -msgid "favored once" -msgid_plural "favored %d times" -msgstr[0] "обране один раз" -msgstr[1] "обране %d рази" -msgstr[2] "обране %d разів" +#. TRANS: Label for tally for number of times a notice was favored. +#: AnonymousFavePlugin.php:207 +#, fuzzy +msgid "Favored" +msgstr "обране один раз" #. TRANS: Server exception. -#: AnonymousFavePlugin.php:222 AnonymousFavePlugin.php:233 +#: AnonymousFavePlugin.php:240 AnonymousFavePlugin.php:251 msgid "Couldn't create anonymous user session." msgstr "Не вдалося створити сесію анонімного користувача." #. TRANS: Plugin description. -#: AnonymousFavePlugin.php:287 +#: AnonymousFavePlugin.php:326 msgid "Allow anonymous users to favorite notices." msgstr "Дозволити анонімнім користувачам позначати повідомлення як обрані." diff --git a/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po new file mode 100644 index 0000000000..3f81eb72c7 --- /dev/null +++ b/plugins/BlogspamNet/locale/nb/LC_MESSAGES/BlogspamNet.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - BlogspamNet to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlogspamNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:55+0000\n" +"Language-Team: Norwegian (bokmål)‬ \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-blogspamnet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: BlogspamNetPlugin.php:152 +msgid "Plugin to check submitted notices with blogspam.net." +msgstr "Utvidelse for å sjekke innsendte notiser med blogspam.net." diff --git a/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po new file mode 100644 index 0000000000..0fbdbf8cab --- /dev/null +++ b/plugins/BlogspamNet/locale/ru/LC_MESSAGES/BlogspamNet.po @@ -0,0 +1,27 @@ +# Translation of StatusNet - BlogspamNet to Russian (Русский) +# Expored from translatewiki.net +# +# Author: Александр Сигачёв +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - BlogspamNet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:55+0000\n" +"Language-Team: Russian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:40+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ru\n" +"X-Message-Group: #out-statusnet-plugin-blogspamnet\n" +"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " +"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" + +#: BlogspamNetPlugin.php:152 +msgid "Plugin to check submitted notices with blogspam.net." +msgstr "Плагин для проверки отправленных сообщений с помощью blogspam.net." diff --git a/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po new file mode 100644 index 0000000000..1ba685a7eb --- /dev/null +++ b/plugins/CacheLog/locale/nb/LC_MESSAGES/CacheLog.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - CacheLog to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - CacheLog\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:56+0000\n" +"Language-Team: Norwegian (bokmål)‬ \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:56:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-cachelog\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: CacheLogPlugin.php:116 +msgid "Log reads and writes to the cache." +msgstr "Logg leser og skriver til hurtiglageret." diff --git a/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po new file mode 100644 index 0000000000..5510c728f0 --- /dev/null +++ b/plugins/Comet/locale/nb/LC_MESSAGES/Comet.po @@ -0,0 +1,26 @@ +# Translation of StatusNet - Comet to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Comet\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" +"Language-Team: Norwegian (bokmål)‬ \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-comet\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: CometPlugin.php:114 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "Utvidelse for å gjøre «sanntids»-oppdateringer med Comet/Bayeux." diff --git a/plugins/DirectionDetector/locale/DirectionDetector.pot b/plugins/DirectionDetector/locale/DirectionDetector.pot index aa193f2a7d..5ce7afe070 100644 --- a/plugins/DirectionDetector/locale/DirectionDetector.pot +++ b/plugins/DirectionDetector/locale/DirectionDetector.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -16,6 +16,6 @@ msgstr "" "Content-Type: text/plain; charset=CHARSET\n" "Content-Transfer-Encoding: 8bit\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "" diff --git a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po index 727ef3f640..fc8fc57e36 100644 --- a/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/es/LC_MESSAGES/DirectionDetector.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:31+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "" "Muestra los mensajes de contenido derecha-a-izquierda en la dirección " diff --git a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po index e97cb6edab..82eaac25c1 100644 --- a/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/fr/LC_MESSAGES/DirectionDetector.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:31+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "" "Affiche dans les bon sens les avis contenant du texte écrit de droite à " diff --git a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po index 7bb1b13403..ef9a65ec3f 100644 --- a/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ia/LC_MESSAGES/DirectionDetector.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:32+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "" "Monstra notas con scripto de dextra a sinistra in le direction correcte." diff --git a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po index ea16c16276..181f569cb7 100644 --- a/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ja/LC_MESSAGES/DirectionDetector.po @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:33+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: Japanese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ja\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "正しい方向で右から左へ表示される内容の通知を表示する。" diff --git a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po index acfee4cd59..4b6d2a46a6 100644 --- a/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/lb/LC_MESSAGES/DirectionDetector.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: Luxembourgish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: lb\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "" "Weist Matdeelungen mat Inhalt dee vu riets not lenks geschriwwen ass an där " diff --git a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po index 71c9d2f7bc..53188114a0 100644 --- a/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/mk/LC_MESSAGES/DirectionDetector.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "" "Ги прикажува забелешките напишани на писма од десно на лево во исправната " diff --git a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po index 9877ab67cf..28b689c966 100644 --- a/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nb/LC_MESSAGES/DirectionDetector.po @@ -9,18 +9,18 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "Viser notiser med høyre-til-venstre-innhold i riktig retning." diff --git a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po index c22fcdffe5..a73475ba78 100644 --- a/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/nl/LC_MESSAGES/DirectionDetector.po @@ -9,21 +9,21 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Last-Translator: Siebrand Mazeland \n" "Language-Team: Dutch \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "" "Geeft mededelingen met inhoud in een van rechts naar links geschreven " diff --git a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po index 3359201d17..1a41fc0a14 100644 --- a/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/ru/LC_MESSAGES/DirectionDetector.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "Правильно показывает уведомления для системы письма справа налево." diff --git a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po index 6b0df007a2..97955b4f27 100644 --- a/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/tl/LC_MESSAGES/DirectionDetector.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "" "Nagpapakita ng mga pabatid na may nilalamang mula-kanan-pakaliwa sa tamang " diff --git a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po index f52c1b4b72..1bad145bc7 100644 --- a/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/uk/LC_MESSAGES/DirectionDetector.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " "2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "Показує повідомлення із письмом справа наліво у правильному напрямі." diff --git a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po index 2905e01f60..16e9e3a002 100644 --- a/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po +++ b/plugins/DirectionDetector/locale/zh_CN/LC_MESSAGES/DirectionDetector.po @@ -9,19 +9,19 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - DirectionDetector\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:34+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:32:58+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-09-27 23:18:46+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:43+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-directiondetector\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: DirectionDetectorPlugin.php:259 +#: DirectionDetectorPlugin.php:261 msgid "Shows notices with right-to-left content in correct direction." msgstr "在内容方向为从右到左时,以相同的文字方向显示提醒。" diff --git a/plugins/Facebook/facebookhome.php b/plugins/Facebook/facebookhome.php index 6090f988c5..8b8b974458 100644 --- a/plugins/Facebook/facebookhome.php +++ b/plugins/Facebook/facebookhome.php @@ -150,7 +150,7 @@ class FacebookhomeAction extends FacebookAction // over and over.. // TRANS: Page title. // TRANS: %1$s is a user nickname, %2$s is a page number. - return sprintf(_m("%1$s and friends, page %2$d"), $this->user->nickname, $this->page); + return sprintf(_m('%1$s and friends, page %2$d'), $this->user->nickname, $this->page); } else { // TRANS: Page title. // TRANS: %s is a user nickname diff --git a/plugins/Facebook/locale/Facebook.pot b/plugins/Facebook/locale/Facebook.pot index 09e3003814..e8fbf5d391 100644 --- a/plugins/Facebook/locale/Facebook.pot +++ b/plugins/Facebook/locale/Facebook.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -192,6 +192,13 @@ msgstr "" msgid "Incorrect username or password." msgstr "" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, php-format +msgid "%1$s and friends, page %2$d" +msgstr "" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po index 99f5a08ded..a00477dc4f 100644 --- a/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/br/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:43+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:07+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -200,6 +200,13 @@ msgstr "" msgid "Incorrect username or password." msgstr "Anv implijer pe ger-tremen direizh." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s hag e vignoned" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 @@ -428,7 +435,7 @@ msgstr "" #: facebookadminpanel.php:193 msgid "Secret" -msgstr "" +msgstr "Kuzh" #: facebookadminpanel.php:194 msgid "API secret provided by Facebook" @@ -480,7 +487,7 @@ msgstr "" #: FBConnectSettings.php:145 msgctxt "BUTTON" msgid "Disconnect" -msgstr "" +msgstr "Digevrañ" #: FBConnectSettings.php:180 msgid "Couldn't delete link to Facebook." @@ -533,4 +540,4 @@ msgstr "" #. TRANS: Page title for synchronisation settings. #: facebooksettings.php:134 msgid "Sync preferences" -msgstr "" +msgstr "Penndibaboù ar c'hempredañ" diff --git a/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po index 8b1ab93ca7..a0829eab16 100644 --- a/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/es/LC_MESSAGES/Facebook.po @@ -11,13 +11,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:07+0000\n" "Language-Team: Spanish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: es\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -220,6 +220,13 @@ msgstr "" "Nombre de usuario o contraseña incorrectos\n" "." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s y sus amistades" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po index d7fe794046..ee73eb52fe 100644 --- a/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/fr/LC_MESSAGES/Facebook.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -222,6 +222,13 @@ msgstr "Erreur de serveur : impossible d’obtenir l’utilisateur !" msgid "Incorrect username or password." msgstr "Nom d’utilisateur ou mot de passe incorrect." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s et ses amis" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po index 7a4d4a11be..76955f6651 100644 --- a/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/gl/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -204,6 +204,13 @@ msgstr "" msgid "Incorrect username or password." msgstr "Nome de usuario ou contrasinal incorrectos." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s e amigos" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po index db9e43f1dc..0cca9bf9d4 100644 --- a/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/ia/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -215,6 +215,13 @@ msgstr "Error de servitor: Non poteva obtener le usator!" msgid "Incorrect username or password." msgstr "Nomine de usator o contrasigno incorrecte." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s e amicos" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po index 2c14c84812..3538cd94ed 100644 --- a/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/mk/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -216,6 +216,13 @@ msgstr "Грешка во опслужувачот: Не можев да го д msgid "Incorrect username or password." msgstr "Погрешно корисничко име или лозинка." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s и пријателите" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po index 45149e2f52..283609654e 100644 --- a/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/nb/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -197,6 +197,13 @@ msgstr "Tjenerfeil: Kunne ikke hente bruker!" msgid "Incorrect username or password." msgstr "Feil brukernavn eller passord." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s og venner" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po index 40682eb931..5c675a5bbb 100644 --- a/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/nl/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -223,6 +223,13 @@ msgstr "Serverfout: de gebruiker kon niet geladen worden." msgid "Incorrect username or password." msgstr "De gebruikersnaam of wachtwoord is onjuist." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s en vrienden" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po index 0c9d38a56e..303c33314e 100644 --- a/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/pt_BR/LC_MESSAGES/Facebook.po @@ -9,14 +9,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" "Language-Team: Brazilian Portuguese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: pt-br\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -200,6 +200,13 @@ msgstr "" msgid "Incorrect username or password." msgstr "Nome de usuário e/ou senha incorreto(s)." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s e amigos" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po index 2099155dae..fdaf62f418 100644 --- a/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/tl/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -223,6 +223,13 @@ msgstr "Kamalian ng tapaghain: Hindi makuha ang tagagamit!" msgid "Incorrect username or password." msgstr "Hindi tamang pangalan ng tagagamit o hudyat." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s at mga kaibigan" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po index 7b8d8384fb..bacfa64d65 100644 --- a/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/uk/LC_MESSAGES/Facebook.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:44+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -219,6 +219,13 @@ msgstr "Помилка сервера: не вдалося отримати ко msgid "Incorrect username or password." msgstr "Неточне ім’я або пароль." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s з друзями" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po b/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po index 62ef78f369..20b5eb95bb 100644 --- a/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po +++ b/plugins/Facebook/locale/zh_CN/LC_MESSAGES/Facebook.po @@ -10,14 +10,14 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Facebook\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:45+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:08+0000\n" "Language-Team: Simplified Chinese \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:54+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:55:46+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: zh-hans\n" "X-Message-Group: #out-statusnet-plugin-facebook\n" @@ -211,6 +211,13 @@ msgstr "服务器错误:无法获取用户。" msgid "Incorrect username or password." msgstr "用户名或密码不正确。" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$s is a page number. +#: facebookhome.php:153 +#, fuzzy, php-format +msgid "%1$s and friends, page %2$d" +msgstr "%s 和好友们" + #. TRANS: Page title. #. TRANS: %s is a user nickname #: facebookhome.php:157 diff --git a/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po new file mode 100644 index 0000000000..c86cfb63c9 --- /dev/null +++ b/plugins/GroupFavorited/locale/br/LC_MESSAGES/GroupFavorited.po @@ -0,0 +1,53 @@ +# Translation of StatusNet - GroupFavorited to Breton (Brezhoneg) +# Expored from translatewiki.net +# +# Author: Y-M D +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - GroupFavorited\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:12+0000\n" +"Language-Team: Breton \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:55:51+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: br\n" +"X-Message-Group: #out-statusnet-plugin-groupfavorited\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" + +#. TRANS: %s is a group name. +#: groupfavoritedaction.php:53 +#, php-format +msgid "Popular posts in %s group" +msgstr "" + +#. TRANS: %1$s is a group name, %2$s is a group number. +#: groupfavoritedaction.php:56 +#, php-format +msgid "Popular posts in %1$s group, page %2$d" +msgstr "" + +#. TRANS: Menu item in the group navigation page. +#: GroupFavoritedPlugin.php:72 +msgctxt "MENU" +msgid "Popular" +msgstr "Poblek" + +#. TRANS: Tooltip for menu item in the group navigation page. +#. TRANS: %s is the nickname of the group. +#: GroupFavoritedPlugin.php:75 +#, php-format +msgctxt "TOOLTIP" +msgid "Popular notices in %s group" +msgstr "Kemennadennoù poblek er strollad %s" + +#. TRANS: Plugin description. +#: GroupFavoritedPlugin.php:99 +msgid "This plugin adds a menu item for popular notices in groups." +msgstr "" diff --git a/plugins/Mapstraction/allmap.php b/plugins/Mapstraction/allmap.php index fa05ccc7ae..6e2e1d1228 100644 --- a/plugins/Mapstraction/allmap.php +++ b/plugins/Mapstraction/allmap.php @@ -77,7 +77,7 @@ class AllmapAction extends MapAction // @todo CHECKME: does this even happen? May not be needed. // TRANS: Page title. // TRANS: %1$s is a user nickname, %2$d is a page number. - return sprintf(_m("%1$s friends map, page %2$d"), + return sprintf(_m('%1$s friends map, page %2$d'), $base, $this->page); } diff --git a/plugins/Mapstraction/locale/Mapstraction.pot b/plugins/Mapstraction/locale/Mapstraction.pot index 3c53391009..f35ca69141 100644 --- a/plugins/Mapstraction/locale/Mapstraction.pot +++ b/plugins/Mapstraction/locale/Mapstraction.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -46,6 +46,13 @@ msgstr "" msgid "%s friends map" msgstr "" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, php-format +msgid "%1$s friends map, page %2$d" +msgstr "" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po index 7a926598bf..c59ff853cf 100644 --- a/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/br/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:19+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -42,7 +42,7 @@ msgstr "N'eus ket eus an implijer-se." #: map.php:79 msgid "User has no profile." -msgstr "" +msgstr "An implijer-mañ n'eus profil ebet dezhañ." #. TRANS: Page title. #. TRANS: %s is a user nickname. @@ -51,6 +51,13 @@ msgstr "" msgid "%s friends map" msgstr "Kartenn mignoned %s" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, fuzzy, php-format +msgid "%1$s friends map, page %2$d" +msgstr "%s gartenn, pajenn %d" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po index 8e3b8d54d7..f7a7163855 100644 --- a/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/de/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:19+0000\n" "Language-Team: German \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: de\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -51,6 +51,13 @@ msgstr "Benutzer hat kein Profil." msgid "%s friends map" msgstr "" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, php-format +msgid "%1$s friends map, page %2$d" +msgstr "" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po index a6f8b0d935..665c091776 100644 --- a/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fi/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" "Language-Team: Finnish \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fi\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -51,6 +51,13 @@ msgstr "Käyttäjällä ei ole profiilia." msgid "%s friends map" msgstr "Kartta käyttäjän %s ystävistä" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, fuzzy, php-format +msgid "%1$s friends map, page %2$d" +msgstr "Kartta käyttäjän %s ystävistä" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po index 5de819b1b7..8987740707 100644 --- a/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/fr/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -53,6 +53,13 @@ msgstr "Aucun profil ne correspond à cet utilisateur." msgid "%s friends map" msgstr "Carte des amis de %s" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, fuzzy, php-format +msgid "%1$s friends map, page %2$d" +msgstr "Carte %s, page %d" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po index 340a211146..016214c72d 100644 --- a/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/gl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" "Language-Team: Galician \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: gl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -51,6 +51,13 @@ msgstr "O usuario non ten perfil." msgid "%s friends map" msgstr "" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, php-format +msgid "%1$s friends map, page %2$d" +msgstr "" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po index c2fcc51b64..75b389ec3e 100644 --- a/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ia/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -53,6 +53,13 @@ msgstr "Le usator non ha un profilo." msgid "%s friends map" msgstr "Mappa del amicos de %s" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, fuzzy, php-format +msgid "%1$s friends map, page %2$d" +msgstr "Mappa de %s, pagina %d" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po index 840e337f50..19926cbbe1 100644 --- a/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/mk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -53,6 +53,13 @@ msgstr "Корисникот нема профил." msgid "%s friends map" msgstr "Карта на пријатели на %s" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, fuzzy, php-format +msgid "%1$s friends map, page %2$d" +msgstr "Карта на %s, стр. %d" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po index f4fade52be..084ee41627 100644 --- a/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/nl/LC_MESSAGES/Mapstraction.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -54,6 +54,13 @@ msgstr "Deze gebruiker heeft geen profiel." msgid "%s friends map" msgstr "Kaart van %s en vrienden" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, fuzzy, php-format +msgid "%1$s friends map, page %2$d" +msgstr "Kaart van %s, pagina %d" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po index da8cb7aaa0..5cb73b3e9e 100644 --- a/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/ru/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" "Language-Team: Russian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ru\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -52,6 +52,13 @@ msgstr "У пользователя нет профиля." msgid "%s friends map" msgstr "Карта друзей: %s" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, fuzzy, php-format +msgid "%1$s friends map, page %2$d" +msgstr "Карта друзей: %s" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po index 1253cd82b1..5a029fd3a5 100644 --- a/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/tl/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -53,6 +53,13 @@ msgstr "Walang balangkas ang tagagamit." msgid "%s friends map" msgstr "%s na mapa ng mga kaibigan" +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, fuzzy, php-format +msgid "%1$s friends map, page %2$d" +msgstr "%s na mapa, pahina %d" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po index b10928213e..5fcbf8cf42 100644 --- a/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po +++ b/plugins/Mapstraction/locale/uk/LC_MESSAGES/Mapstraction.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - Mapstraction\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:54+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:20+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:38:59+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:56:57+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-mapstraction\n" @@ -54,6 +54,13 @@ msgstr "Користувач не має профілю." msgid "%s friends map" msgstr "Мапа друзів %s." +#. TRANS: Page title. +#. TRANS: %1$s is a user nickname, %2$d is a page number. +#: allmap.php:80 +#, fuzzy, php-format +msgid "%1$s friends map, page %2$d" +msgstr "Мапа друзів %s, сторінка %d" + #: usermap.php:73 #, php-format msgid "%s map, page %d" diff --git a/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po new file mode 100644 index 0000000000..fc67637d1d --- /dev/null +++ b/plugins/Meteor/locale/nb/LC_MESSAGES/Meteor.po @@ -0,0 +1,38 @@ +# Translation of StatusNet - Meteor to Norwegian (bokmål)‬ (‪Norsk (bokmål)‬) +# Expored from translatewiki.net +# +# Author: Nghtwlkr +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - Meteor\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:21+0000\n" +"Language-Team: Norwegian (bokmål)‬ \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 20:56:58+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: no\n" +"X-Message-Group: #out-statusnet-plugin-meteor\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Exception. %1$s is the control server, %2$s is the control port. +#: MeteorPlugin.php:115 +#, php-format +msgid "Couldn't connect to %1$s on %2$s." +msgstr "Kunne ikke koble til %1$s på %2$s." + +#. TRANS: Exception. %s is the Meteor message that could not be added. +#: MeteorPlugin.php:128 +#, php-format +msgid "Error adding meteor message \"%s\"" +msgstr "Mislyktes å legge til meteormelding «%s»" + +#: MeteorPlugin.php:158 +msgid "Plugin to do \"real time\" updates using Comet/Bayeux." +msgstr "Utvidelse for å gjøre «sanntids»-oppdateringer med Comet/Bayeux." diff --git a/plugins/NoticeTitle/locale/NoticeTitle.pot b/plugins/NoticeTitle/locale/NoticeTitle.pot index 6a3ac86f27..92969c6bc0 100644 --- a/plugins/NoticeTitle/locale/NoticeTitle.pot +++ b/plugins/NoticeTitle/locale/NoticeTitle.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -21,7 +21,7 @@ msgid "Adds optional titles to notices." msgstr "" #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:307 +#: NoticeTitlePlugin.php:309 #, php-format msgid "%1$s - %2$s" msgstr "" diff --git a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po index a2c5b823d4..24d6a637ff 100644 --- a/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/br/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" "Language-Team: Breton \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: br\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" @@ -26,7 +26,7 @@ msgid "Adds optional titles to notices." msgstr "" #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:307 +#: NoticeTitlePlugin.php:309 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po index c13b48b669..99064c2b67 100644 --- a/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/fr/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" @@ -26,7 +26,7 @@ msgid "Adds optional titles to notices." msgstr "Ajoute des titres optionnels aux avis." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:307 +#: NoticeTitlePlugin.php:309 #, php-format msgid "%1$s - %2$s" msgstr "%1$s — %2$s" diff --git a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po index ae75c1f552..5d627ef915 100644 --- a/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/ia/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" @@ -26,7 +26,7 @@ msgid "Adds optional titles to notices." msgstr "Adde optional titulos a notas." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:307 +#: NoticeTitlePlugin.php:309 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po index 6fe2084e63..5c135a808f 100644 --- a/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/mk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" @@ -26,7 +26,7 @@ msgid "Adds optional titles to notices." msgstr "Додава наслови на забелешките (по избор)." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:307 +#: NoticeTitlePlugin.php:309 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po index c7309d8472..df2df05452 100644 --- a/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nb/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" "Language-Team: Norwegian (bokmål)‬ \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: no\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" @@ -26,7 +26,7 @@ msgid "Adds optional titles to notices." msgstr "Legger valgfrie titler til notiser." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:307 +#: NoticeTitlePlugin.php:309 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po index 6881e630ff..770c2c743c 100644 --- a/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/nl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" @@ -26,7 +26,7 @@ msgid "Adds optional titles to notices." msgstr "Voegt optioneel titels toe aan mededelingen." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:307 +#: NoticeTitlePlugin.php:309 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po index b098f20b52..ae43f0fd5c 100644 --- a/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/te/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" "Language-Team: Telugu \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: te\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" @@ -26,7 +26,7 @@ msgid "Adds optional titles to notices." msgstr "" #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:307 +#: NoticeTitlePlugin.php:309 #, php-format msgid "%1$s - %2$s" msgstr "%1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po index fd08313022..de0726faa2 100644 --- a/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/tl/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" "Language-Team: Tagalog \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: tl\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" @@ -26,7 +26,7 @@ msgid "Adds optional titles to notices." msgstr "Nagdaragdag ng maaaring wala na mga pamagat sa mga pabatid." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:307 +#: NoticeTitlePlugin.php:309 #, php-format msgid "%1$s - %2$s" msgstr " %1$s - %2$s" diff --git a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po index ad4445d973..1d9f00ff2a 100644 --- a/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po +++ b/plugins/NoticeTitle/locale/uk/LC_MESSAGES/NoticeTitle.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - NoticeTitle\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:56:58+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:24+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:00+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-noticetitle\n" @@ -27,7 +27,7 @@ msgid "Adds optional titles to notices." msgstr "Додавати до повідомлень необов’язкові заголовки." #. TRANS: Page title. %1$s is the title, %2$s is the site name. -#: NoticeTitlePlugin.php:307 +#: NoticeTitlePlugin.php:309 #, php-format msgid "%1$s - %2$s" msgstr "%1$s — %2$s" diff --git a/plugins/OStatus/OStatusPlugin.php b/plugins/OStatus/OStatusPlugin.php index 601243b425..f9e7adacdd 100644 --- a/plugins/OStatus/OStatusPlugin.php +++ b/plugins/OStatus/OStatusPlugin.php @@ -653,7 +653,7 @@ class OStatusPlugin extends Plugin $act->title = _m("Join"); // TRANS: Success message for subscribe to group attempt through OStatus. // TRANS: %1$s is the member name, %2$s is the subscribed group's name. - $act->content = sprintf(_m("%1$s has joined group %2$s."), + $act->content = sprintf(_m('%1$s has joined group %2$s.'), $member->getBestName(), $oprofile->getBestName()); @@ -705,7 +705,7 @@ class OStatusPlugin extends Plugin $act->title = _m("Leave"); // TRANS: Success message for unsubscribe from group attempt through OStatus. // TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. - $act->content = sprintf(_m("%1$s has left group %2$s."), + $act->content = sprintf(_m('%1$s has left group %2$s.'), $member->getBestName(), $oprofile->getBestName()); diff --git a/plugins/OStatus/actions/pushcallback.php b/plugins/OStatus/actions/pushcallback.php index 701a39c163..6eec1ad16e 100644 --- a/plugins/OStatus/actions/pushcallback.php +++ b/plugins/OStatus/actions/pushcallback.php @@ -81,6 +81,7 @@ class PushCallbackAction extends Action $challenge = $this->arg('hub_challenge'); $lease_seconds = $this->arg('hub_lease_seconds'); $verify_token = $this->arg('hub_verify_token'); + common_log(LOG_INFO, __METHOD__ . ": sub verification mode: $mode topic: $topic challenge: $challenge lease_seconds: $lease_seconds verify_token: $verify_token"); if ($mode != 'subscribe' && $mode != 'unsubscribe') { // TRANS: Client exception. %s is an invalid value for hub.mode. diff --git a/plugins/OStatus/locale/OStatus.pot b/plugins/OStatus/locale/OStatus.pot index a55b30f4b4..a94ea84dd1 100644 --- a/plugins/OStatus/locale/OStatus.pot +++ b/plugins/OStatus/locale/OStatus.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -53,6 +53,13 @@ msgstr "" msgid "Could not set up remote group membership." msgstr "" +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: OStatusPlugin.php:658 +#, php-format +msgid "%1$s has joined group %2$s." +msgstr "" + #. TRANS: Exception. #: OStatusPlugin.php:667 msgid "Failed joining remote group." @@ -62,6 +69,13 @@ msgstr "" msgid "Leave" msgstr "" +#. TRANS: Success message for unsubscribe from group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. +#: OStatusPlugin.php:710 +#, php-format +msgid "%1$s has left group %2$s." +msgstr "" + #: OStatusPlugin.php:785 msgid "Disfavor" msgstr "" @@ -715,25 +729,25 @@ msgid "Unknown PuSH feed id %s" msgstr "" #. TRANS: Client exception. %s is an invalid feed name. -#: actions/pushcallback.php:93 +#: actions/pushcallback.php:94 #, php-format msgid "Bad hub.topic feed \"%s\"." msgstr "" #. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. -#: actions/pushcallback.php:98 +#: actions/pushcallback.php:99 #, php-format msgid "Bad hub.verify_token %1$s for %2$s." msgstr "" #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:105 +#: actions/pushcallback.php:106 #, php-format msgid "Unexpected subscribe request for %s." msgstr "" #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:110 +#: actions/pushcallback.php:111 #, php-format msgid "Unexpected unsubscribe request for %s." msgstr "" diff --git a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po index 39101b8393..79f2887939 100644 --- a/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/fr/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:15+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:41+0000\n" "Language-Team: French \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: fr\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -58,6 +58,13 @@ msgstr "%1$s a cessé de suivre %2$s." msgid "Could not set up remote group membership." msgstr "Impossible de mettre en place l’appartenance au groupe distant." +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: OStatusPlugin.php:658 +#, fuzzy, php-format +msgid "%1$s has joined group %2$s." +msgstr "%1$s a cessé de suivre %2$s." + #. TRANS: Exception. #: OStatusPlugin.php:667 msgid "Failed joining remote group." @@ -67,6 +74,13 @@ msgstr "Échec lors de l’adhésion au groupe distant." msgid "Leave" msgstr "Sortir" +#. TRANS: Success message for unsubscribe from group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. +#: OStatusPlugin.php:710 +#, php-format +msgid "%1$s has left group %2$s." +msgstr "" + #: OStatusPlugin.php:785 msgid "Disfavor" msgstr "Retirer des favoris" @@ -770,13 +784,13 @@ msgid "Unknown PuSH feed id %s" msgstr "Identifiant de flux PuSH inconnu : « %s »" #. TRANS: Client exception. %s is an invalid feed name. -#: actions/pushcallback.php:93 +#: actions/pushcallback.php:94 #, php-format msgid "Bad hub.topic feed \"%s\"." msgstr "Flux de sujet de concentrateur incorrect : « %s »" #. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. -#: actions/pushcallback.php:98 +#: actions/pushcallback.php:99 #, php-format msgid "Bad hub.verify_token %1$s for %2$s." msgstr "" @@ -784,13 +798,13 @@ msgstr "" "»." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:105 +#: actions/pushcallback.php:106 #, php-format msgid "Unexpected subscribe request for %s." msgstr "Demande d’abonnement inattendue pour le sujet invalide « %s »." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:110 +#: actions/pushcallback.php:111 #, php-format msgid "Unexpected unsubscribe request for %s." msgstr "Demande de désabonnement inattendue pour le sujet invalide « %s »." diff --git a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po index cd5eebd16a..53935c04c3 100644 --- a/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/ia/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:15+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:41+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -58,6 +58,13 @@ msgstr "%1$s cessava de sequer %2$s." msgid "Could not set up remote group membership." msgstr "Non poteva configurar le membrato del gruppo remote." +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: OStatusPlugin.php:658 +#, fuzzy, php-format +msgid "%1$s has joined group %2$s." +msgstr "%1$s cessava de sequer %2$s." + #. TRANS: Exception. #: OStatusPlugin.php:667 msgid "Failed joining remote group." @@ -67,6 +74,13 @@ msgstr "Falleva de facer se membro del gruppo remote." msgid "Leave" msgstr "Quitar" +#. TRANS: Success message for unsubscribe from group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. +#: OStatusPlugin.php:710 +#, php-format +msgid "%1$s has left group %2$s." +msgstr "" + #: OStatusPlugin.php:785 msgid "Disfavor" msgstr "Disfavorir" @@ -744,25 +758,25 @@ msgid "Unknown PuSH feed id %s" msgstr "ID de syndication PuSH %s incognite" #. TRANS: Client exception. %s is an invalid feed name. -#: actions/pushcallback.php:93 +#: actions/pushcallback.php:94 #, php-format msgid "Bad hub.topic feed \"%s\"." msgstr "Syndication hub.topic \"%s\" incorrecte." #. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. -#: actions/pushcallback.php:98 +#: actions/pushcallback.php:99 #, php-format msgid "Bad hub.verify_token %1$s for %2$s." msgstr "Incorrecte hub.verify_token %1$s pro %2$s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:105 +#: actions/pushcallback.php:106 #, php-format msgid "Unexpected subscribe request for %s." msgstr "Requesta de subscription inexpectate pro %s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:110 +#: actions/pushcallback.php:111 #, php-format msgid "Unexpected unsubscribe request for %s." msgstr "Requesta de cancellation de subscription inexpectate pro %s." diff --git a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po index fc2e4b1e2e..fda59785e8 100644 --- a/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/mk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:15+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:41+0000\n" "Language-Team: Macedonian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: mk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -58,6 +58,13 @@ msgstr "%1$s престана да го/ја следи %2$s." msgid "Could not set up remote group membership." msgstr "Не можев да го поставам членството во далечинската група." +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: OStatusPlugin.php:658 +#, fuzzy, php-format +msgid "%1$s has joined group %2$s." +msgstr "%1$s престана да го/ја следи %2$s." + #. TRANS: Exception. #: OStatusPlugin.php:667 msgid "Failed joining remote group." @@ -67,6 +74,13 @@ msgstr "Не успеав да Ве зачленам во далечинскат msgid "Leave" msgstr "Напушти" +#. TRANS: Success message for unsubscribe from group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. +#: OStatusPlugin.php:710 +#, php-format +msgid "%1$s has left group %2$s." +msgstr "" + #: OStatusPlugin.php:785 msgid "Disfavor" msgstr "Откажи бендисана" @@ -747,25 +761,25 @@ msgid "Unknown PuSH feed id %s" msgstr "Непознат ID %s за PuSH-канал" #. TRANS: Client exception. %s is an invalid feed name. -#: actions/pushcallback.php:93 +#: actions/pushcallback.php:94 #, php-format msgid "Bad hub.topic feed \"%s\"." msgstr "Лош hub.topic-канал „%s“." #. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. -#: actions/pushcallback.php:98 +#: actions/pushcallback.php:99 #, php-format msgid "Bad hub.verify_token %1$s for %2$s." msgstr "Лош hub.verify_token %1$s за %2$s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:105 +#: actions/pushcallback.php:106 #, php-format msgid "Unexpected subscribe request for %s." msgstr "Неочекувано барање за претплата за %s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:110 +#: actions/pushcallback.php:111 #, php-format msgid "Unexpected unsubscribe request for %s." msgstr "Неочекувано барање за отпишување од претплата за %s." diff --git a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po index e0c6c4aa83..6fec3ea2a2 100644 --- a/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/nl/LC_MESSAGES/OStatus.po @@ -10,13 +10,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:41+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -62,6 +62,13 @@ msgstr "" "Het was niet mogelijk het groepslidmaatschap via een andere dienst in te " "stellen." +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: OStatusPlugin.php:658 +#, fuzzy, php-format +msgid "%1$s has joined group %2$s." +msgstr "%1$s volgt %2$s niet langer." + #. TRANS: Exception. #: OStatusPlugin.php:667 msgid "Failed joining remote group." @@ -72,6 +79,13 @@ msgstr "" msgid "Leave" msgstr "Verlaten" +#. TRANS: Success message for unsubscribe from group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. +#: OStatusPlugin.php:710 +#, php-format +msgid "%1$s has left group %2$s." +msgstr "" + #: OStatusPlugin.php:785 msgid "Disfavor" msgstr "Uit favorieten verwijderen" @@ -776,25 +790,25 @@ msgid "Unknown PuSH feed id %s" msgstr "Het PuSH feed-ID %s is onbekend" #. TRANS: Client exception. %s is an invalid feed name. -#: actions/pushcallback.php:93 +#: actions/pushcallback.php:94 #, php-format msgid "Bad hub.topic feed \"%s\"." msgstr "Ongeldige hub.topic feed \"%s\"." #. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. -#: actions/pushcallback.php:98 +#: actions/pushcallback.php:99 #, php-format msgid "Bad hub.verify_token %1$s for %2$s." msgstr "Ongeldig hub.verify_token %1$s voor %2$s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:105 +#: actions/pushcallback.php:106 #, php-format msgid "Unexpected subscribe request for %s." msgstr "Onverwacht abonneringsverzoek voor %s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:110 +#: actions/pushcallback.php:111 #, php-format msgid "Unexpected unsubscribe request for %s." msgstr "Onverwacht verzoek om abonnement op te hebben voor %s." diff --git a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po index 0f49a02459..3312c5e60b 100644 --- a/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po +++ b/plugins/OStatus/locale/uk/LC_MESSAGES/OStatus.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - OStatus\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:16+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:41+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:03+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-ostatus\n" @@ -59,6 +59,13 @@ msgstr "%1$s припинив читати ваші дописи %2$s." msgid "Could not set up remote group membership." msgstr "Не вдалося приєднатися до віддаленої спільноти." +#. TRANS: Success message for subscribe to group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the subscribed group's name. +#: OStatusPlugin.php:658 +#, fuzzy, php-format +msgid "%1$s has joined group %2$s." +msgstr "%1$s припинив читати ваші дописи %2$s." + #. TRANS: Exception. #: OStatusPlugin.php:667 msgid "Failed joining remote group." @@ -68,6 +75,13 @@ msgstr "Помилка приєднання до віддаленої спіль msgid "Leave" msgstr "Залишити" +#. TRANS: Success message for unsubscribe from group attempt through OStatus. +#. TRANS: %1$s is the member name, %2$s is the unsubscribed group's name. +#: OStatusPlugin.php:710 +#, php-format +msgid "%1$s has left group %2$s." +msgstr "" + #: OStatusPlugin.php:785 msgid "Disfavor" msgstr "Не обраний" @@ -758,25 +772,25 @@ msgid "Unknown PuSH feed id %s" msgstr "Веб-стрічка за протоколом PuSH має невідомий ідентифікатор %s" #. TRANS: Client exception. %s is an invalid feed name. -#: actions/pushcallback.php:93 +#: actions/pushcallback.php:94 #, php-format msgid "Bad hub.topic feed \"%s\"." msgstr "hub.topic веб-стрічки «%s» неправильний." #. TRANS: Client exception. %1$s the invalid token, %2$s is the topic for which the invalid token was given. -#: actions/pushcallback.php:98 +#: actions/pushcallback.php:99 #, php-format msgid "Bad hub.verify_token %1$s for %2$s." msgstr "hub.verify_token %1$s для %2$s неправильний." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:105 +#: actions/pushcallback.php:106 #, php-format msgid "Unexpected subscribe request for %s." msgstr "Несподіваний запит підписки для %s." #. TRANS: Client exception. %s is an invalid topic. -#: actions/pushcallback.php:110 +#: actions/pushcallback.php:111 #, php-format msgid "Unexpected unsubscribe request for %s." msgstr "Несподіваний запит щодо скасування підписки для %s." diff --git a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po index 1950bc8788..0236f7f912 100644 --- a/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po +++ b/plugins/PoweredByStatusNet/locale/nl/LC_MESSAGES/PoweredByStatusNet.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - PoweredByStatusNet\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:17+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:33:43+0000\n" "Language-Team: Dutch \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:03+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:05+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: nl\n" "X-Message-Group: #out-statusnet-plugin-poweredbystatusnet\n" @@ -36,5 +36,5 @@ msgid "" "Outputs \"powered by StatusNet\" after " "site name." msgstr "" -"Voegt te tekst \"Powered by StatusNet\" " +"Voegt de tekst \"Powered by StatusNet\" " "toe na de sitenaam." diff --git a/plugins/Sitemap/locale/Sitemap.pot b/plugins/Sitemap/locale/Sitemap.pot new file mode 100644 index 0000000000..7e3fba6338 --- /dev/null +++ b/plugins/Sitemap/locale/Sitemap.pot @@ -0,0 +1,84 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. TRANS: Title for sitemap. +#: sitemapadminpanel.php:53 +msgid "Sitemap" +msgstr "" + +#. TRANS: Instructions for sitemap. +#: sitemapadminpanel.php:64 +msgid "Sitemap settings for this StatusNet site" +msgstr "" + +#. TRANS: Field label. +#: sitemapadminpanel.php:167 +msgid "Google key" +msgstr "" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:169 +msgid "Google Webmaster Tools verification key." +msgstr "" + +#. TRANS: Field label. +#: sitemapadminpanel.php:175 +msgid "Yahoo key" +msgstr "" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:177 +msgid "Yahoo! Site Explorer verification key." +msgstr "" + +#. TRANS: Field label. +#: sitemapadminpanel.php:183 +msgid "Bing key" +msgstr "" + +#. TRANS: Title for field label. +#: sitemapadminpanel.php:185 +msgid "Bing Webmaster Tools verification key." +msgstr "" + +#. TRANS: Submit button text to save sitemap settings. +#: sitemapadminpanel.php:200 +msgctxt "BUTTON" +msgid "Save" +msgstr "" + +#. TRANS: Submit button title to save sitemap settings. +#: sitemapadminpanel.php:204 +msgid "Save sitemap settings." +msgstr "" + +#. TRANS: Menu item title/tooltip +#: SitemapPlugin.php:211 +msgid "Sitemap configuration" +msgstr "" + +#. TRANS: Menu item for site administration +#: SitemapPlugin.php:213 +msgctxt "MENU" +msgid "Sitemap" +msgstr "" + +#. TRANS: Plugin description. +#: SitemapPlugin.php:238 +msgid "This plugin allows creation of sitemaps for Bing, Yahoo! and Google." +msgstr "" diff --git a/plugins/SphinxSearch/locale/SphinxSearch.pot b/plugins/SphinxSearch/locale/SphinxSearch.pot new file mode 100644 index 0000000000..b374dc587c --- /dev/null +++ b/plugins/SphinxSearch/locale/SphinxSearch.pot @@ -0,0 +1,32 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=CHARSET\n" +"Content-Transfer-Encoding: 8bit\n" + +#. TRANS: Server exception. +#: SphinxSearchPlugin.php:87 +msgid "Sphinx PHP extension must be installed." +msgstr "" + +#. TRANS: Plugin description. +#: SphinxSearchPlugin.php:118 +msgid "Plugin for Sphinx search backend." +msgstr "" + +#. TRANS: Server exception thrown when a database name cannot be identified. +#: sphinxsearch.php:96 +msgid "Sphinx search could not identify database name." +msgstr "" diff --git a/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po new file mode 100644 index 0000000000..eebbcb14a1 --- /dev/null +++ b/plugins/UserFlag/locale/ia/LC_MESSAGES/UserFlag.po @@ -0,0 +1,113 @@ +# Translation of StatusNet - UserFlag to Interlingua (Interlingua) +# Expored from translatewiki.net +# +# Author: McDutchie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserFlag\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:34:03+0000\n" +"Language-Team: Interlingua \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 21:01:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: ia\n" +"X-Message-Group: #out-statusnet-plugin-userflag\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Title for page with a list of profiles that were flagged for review. +#: adminprofileflag.php:125 +msgid "Flagged profiles" +msgstr "Profilos marcate" + +#. TRANS: Header for moderation menu with action buttons for flagged profiles (like 'sandbox', 'silence', ...). +#: adminprofileflag.php:242 +msgid "Moderate" +msgstr "Moderar" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#: adminprofileflag.php:388 +#, php-format +msgid "Flagged by %1$s and %2$d other" +msgid_plural "Flagged by %1$s and %2$d others" +msgstr[0] "Marcate per %1$s e %2$d altere" +msgstr[1] "Marcate per %1$s e %2$d alteres" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %s is a comma separated list of at most 5 user nicknames that flagged. +#: adminprofileflag.php:392 +#, php-format +msgid "Flagged by %s" +msgstr "Marcate per %s" + +#. TRANS: Client error when setting flag that has already been set for a profile. +#: flagprofile.php:66 +msgid "Flag already exists." +msgstr "Le marca ja existe." + +#. TRANS: AJAX form title for a flagged profile. +#: flagprofile.php:126 +msgid "Flagged for review" +msgstr "Marcate pro revision" + +#. TRANS: Body text for AJAX form when a profile has been flagged for review. +#: flagprofile.php:130 +msgid "Flagged" +msgstr "Marcate" + +#. TRANS: Plugin description. +#: UserFlagPlugin.php:292 +msgid "" +"This plugin allows flagging of profiles for review and reviewing flagged " +"profiles." +msgstr "" +"Iste plugin permitte marcar profilos pro revision e revider profilos marcate." + +#. TRANS: Server exception given when flags could not be cleared. +#: clearflag.php:105 +#, php-format +msgid "Couldn't clear flags for profile \"%s\"." +msgstr "Non poteva rader marcas pro profilo \"%s\"." + +#. TRANS: Title for AJAX form to indicated that flags were removed. +#: clearflag.php:129 +msgid "Flags cleared" +msgstr "Marcas radite" + +#. TRANS: Body element for "flags cleared" form. +#: clearflag.php:133 +msgid "Cleared" +msgstr "Radite" + +#. TRANS: Form title for flagging a profile for review. +#: flagprofileform.php:78 +msgid "Flag" +msgstr "Rader tote le marcas" + +#. TRANS: Form description. +#: flagprofileform.php:89 +msgid "Flag profile for review." +msgstr "Marcar profilo pro revision." + +#. TRANS: Server exception. +#: User_flag_profile.php:145 +#, php-format +msgid "Couldn't flag profile \"%d\" for review." +msgstr "Non poteva marcar profilo \"%d\" pro revision." + +#. TRANS: Form title for action on a profile. +#: clearflagform.php:76 +msgid "Clear" +msgstr "Rader" + +#: clearflagform.php:88 +msgid "Clear all flags" +msgstr "Rader tote le marcas" diff --git a/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po new file mode 100644 index 0000000000..7b4c51d81c --- /dev/null +++ b/plugins/UserFlag/locale/mk/LC_MESSAGES/UserFlag.po @@ -0,0 +1,114 @@ +# Translation of StatusNet - UserFlag to Macedonian (Македонски) +# Expored from translatewiki.net +# +# Author: Bjankuloski06 +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserFlag\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:34:03+0000\n" +"Language-Team: Macedonian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 21:01:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: mk\n" +"X-Message-Group: #out-statusnet-plugin-userflag\n" +"Plural-Forms: nplurals=2; plural=(n == 1 || n%10 == 1) ? 0 : 1;\n" + +#. TRANS: Title for page with a list of profiles that were flagged for review. +#: adminprofileflag.php:125 +msgid "Flagged profiles" +msgstr "Означени профили" + +#. TRANS: Header for moderation menu with action buttons for flagged profiles (like 'sandbox', 'silence', ...). +#: adminprofileflag.php:242 +msgid "Moderate" +msgstr "Модерирај" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#: adminprofileflag.php:388 +#, php-format +msgid "Flagged by %1$s and %2$d other" +msgid_plural "Flagged by %1$s and %2$d others" +msgstr[0] "Означено од %1$s и уште %2$d друг" +msgstr[1] "Означено од %1$s и уште %2$d други" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %s is a comma separated list of at most 5 user nicknames that flagged. +#: adminprofileflag.php:392 +#, php-format +msgid "Flagged by %s" +msgstr "Означено од %s" + +#. TRANS: Client error when setting flag that has already been set for a profile. +#: flagprofile.php:66 +msgid "Flag already exists." +msgstr "Ознаката веќе постои." + +#. TRANS: AJAX form title for a flagged profile. +#: flagprofile.php:126 +msgid "Flagged for review" +msgstr "Означено за преглед" + +#. TRANS: Body text for AJAX form when a profile has been flagged for review. +#: flagprofile.php:130 +msgid "Flagged" +msgstr "Означено" + +#. TRANS: Plugin description. +#: UserFlagPlugin.php:292 +msgid "" +"This plugin allows flagging of profiles for review and reviewing flagged " +"profiles." +msgstr "" +"Овој приклучок овозможува означување на профили за преглед и прегледување на " +"означени профили." + +#. TRANS: Server exception given when flags could not be cleared. +#: clearflag.php:105 +#, php-format +msgid "Couldn't clear flags for profile \"%s\"." +msgstr "Не можев да ги отстранам ознаките за профилот „%s“." + +#. TRANS: Title for AJAX form to indicated that flags were removed. +#: clearflag.php:129 +msgid "Flags cleared" +msgstr "Ознаките се отстранети" + +#. TRANS: Body element for "flags cleared" form. +#: clearflag.php:133 +msgid "Cleared" +msgstr "Отстрането" + +#. TRANS: Form title for flagging a profile for review. +#: flagprofileform.php:78 +msgid "Flag" +msgstr "Означи" + +#. TRANS: Form description. +#: flagprofileform.php:89 +msgid "Flag profile for review." +msgstr "Означи профил за преглед." + +#. TRANS: Server exception. +#: User_flag_profile.php:145 +#, php-format +msgid "Couldn't flag profile \"%d\" for review." +msgstr "Не можев да го означам профилот „%d“ за преглед." + +#. TRANS: Form title for action on a profile. +#: clearflagform.php:76 +msgid "Clear" +msgstr "Отстрани" + +#: clearflagform.php:88 +msgid "Clear all flags" +msgstr "Отстрани ги сите ознаки" diff --git a/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po new file mode 100644 index 0000000000..207e9a944f --- /dev/null +++ b/plugins/UserFlag/locale/nl/LC_MESSAGES/UserFlag.po @@ -0,0 +1,115 @@ +# Translation of StatusNet - UserFlag to Dutch (Nederlands) +# Expored from translatewiki.net +# +# Author: Siebrand +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserFlag\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:34:03+0000\n" +"Language-Team: Dutch \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 21:01:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: nl\n" +"X-Message-Group: #out-statusnet-plugin-userflag\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#. TRANS: Title for page with a list of profiles that were flagged for review. +#: adminprofileflag.php:125 +msgid "Flagged profiles" +msgstr "Gemarkeerde profielen" + +#. TRANS: Header for moderation menu with action buttons for flagged profiles (like 'sandbox', 'silence', ...). +#: adminprofileflag.php:242 +msgid "Moderate" +msgstr "Modereren" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#: adminprofileflag.php:388 +#, php-format +msgid "Flagged by %1$s and %2$d other" +msgid_plural "Flagged by %1$s and %2$d others" +msgstr[0] "Gemarkeerd door %1$s en %2$d andere" +msgstr[1] "Gemarkeerd door %1$s en %2$d anderen" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %s is a comma separated list of at most 5 user nicknames that flagged. +#: adminprofileflag.php:392 +#, php-format +msgid "Flagged by %s" +msgstr "Gemarkeerd door %s" + +#. TRANS: Client error when setting flag that has already been set for a profile. +#: flagprofile.php:66 +msgid "Flag already exists." +msgstr "De markering bestaat al." + +#. TRANS: AJAX form title for a flagged profile. +#: flagprofile.php:126 +msgid "Flagged for review" +msgstr "Gemarkeerd voor controle" + +#. TRANS: Body text for AJAX form when a profile has been flagged for review. +#: flagprofile.php:130 +msgid "Flagged" +msgstr "Gemarkeerd" + +#. TRANS: Plugin description. +#: UserFlagPlugin.php:292 +msgid "" +"This plugin allows flagging of profiles for review and reviewing flagged " +"profiles." +msgstr "" +"Deze plugin maakt het markeren van profielen voor controle mogelijk en de " +"controle van gemarkeerde profielen." + +#. TRANS: Server exception given when flags could not be cleared. +#: clearflag.php:105 +#, php-format +msgid "Couldn't clear flags for profile \"%s\"." +msgstr "" +"Het was niet mogelijk de markeringen van het profiel \"%s\" te verwijderen." + +#. TRANS: Title for AJAX form to indicated that flags were removed. +#: clearflag.php:129 +msgid "Flags cleared" +msgstr "Markeringen verwijderd" + +#. TRANS: Body element for "flags cleared" form. +#: clearflag.php:133 +msgid "Cleared" +msgstr "Verwijderd" + +#. TRANS: Form title for flagging a profile for review. +#: flagprofileform.php:78 +msgid "Flag" +msgstr "Markeren" + +#. TRANS: Form description. +#: flagprofileform.php:89 +msgid "Flag profile for review." +msgstr "Profiel voor controle markeren" + +#. TRANS: Server exception. +#: User_flag_profile.php:145 +#, php-format +msgid "Couldn't flag profile \"%d\" for review." +msgstr "Het was niet mogelijk het profiel \"%d\" voor controle te markeren." + +#. TRANS: Form title for action on a profile. +#: clearflagform.php:76 +msgid "Clear" +msgstr "Wissen" + +#: clearflagform.php:88 +msgid "Clear all flags" +msgstr "Alle markeringen wissen" diff --git a/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po new file mode 100644 index 0000000000..7712d6cfe9 --- /dev/null +++ b/plugins/UserFlag/locale/uk/LC_MESSAGES/UserFlag.po @@ -0,0 +1,116 @@ +# Translation of StatusNet - UserFlag to Ukrainian (Українська) +# Expored from translatewiki.net +# +# Author: Boogie +# -- +# This file is distributed under the same license as the StatusNet package. +# +msgid "" +msgstr "" +"Project-Id-Version: StatusNet - UserFlag\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:34:03+0000\n" +"Language-Team: Ukrainian \n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-POT-Import-Date: 2010-10-03 21:01:06+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" +"X-Translation-Project: translatewiki.net at http://translatewiki.net\n" +"X-Language-Code: uk\n" +"X-Message-Group: #out-statusnet-plugin-userflag\n" +"Plural-Forms: nplurals=3; plural=(n%10 == 1 && n%100 != 11) ? 0 : ( (n%10 >= " +"2 && n%10 <= 4 && (n%100 < 10 || n%100 >= 20)) ? 1 : 2 );\n" + +#. TRANS: Title for page with a list of profiles that were flagged for review. +#: adminprofileflag.php:125 +msgid "Flagged profiles" +msgstr "Відмічені профілі" + +#. TRANS: Header for moderation menu with action buttons for flagged profiles (like 'sandbox', 'silence', ...). +#: adminprofileflag.php:242 +msgid "Moderate" +msgstr "Модерувати" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %1$s is a comma separated list of at most 5 user nicknames that flagged. +#. TRANS: %2$d is a positive integer of additional flagging users. Also used for the plural. +#: adminprofileflag.php:388 +#, php-format +msgid "Flagged by %1$s and %2$d other" +msgid_plural "Flagged by %1$s and %2$d others" +msgstr[0] "Відмічено %1$s та ще %2$d користувачем" +msgstr[1] "Відмічено %1$s та ще %2$d користувачами" +msgstr[2] "Відмічено %1$s та ще %2$d користувачами" + +#. TRANS: Message displayed on a profile if it has been flagged. +#. TRANS: %s is a comma separated list of at most 5 user nicknames that flagged. +#: adminprofileflag.php:392 +#, php-format +msgid "Flagged by %s" +msgstr "Відмічено %s" + +#. TRANS: Client error when setting flag that has already been set for a profile. +#: flagprofile.php:66 +msgid "Flag already exists." +msgstr "Відмітка вже стоїть." + +#. TRANS: AJAX form title for a flagged profile. +#: flagprofile.php:126 +msgid "Flagged for review" +msgstr "Відмічені для розгляду" + +#. TRANS: Body text for AJAX form when a profile has been flagged for review. +#: flagprofile.php:130 +msgid "Flagged" +msgstr "Відмічені" + +#. TRANS: Plugin description. +#: UserFlagPlugin.php:292 +msgid "" +"This plugin allows flagging of profiles for review and reviewing flagged " +"profiles." +msgstr "" +"Цей додаток дозволяє відмічати профілі користувачів для подальшого розгляду " +"та аналізу відмічених профілів." + +#. TRANS: Server exception given when flags could not be cleared. +#: clearflag.php:105 +#, php-format +msgid "Couldn't clear flags for profile \"%s\"." +msgstr "Не можу зняти позначки для профілю «%s»." + +#. TRANS: Title for AJAX form to indicated that flags were removed. +#: clearflag.php:129 +msgid "Flags cleared" +msgstr "Позначки знято" + +#. TRANS: Body element for "flags cleared" form. +#: clearflag.php:133 +msgid "Cleared" +msgstr "Знято" + +#. TRANS: Form title for flagging a profile for review. +#: flagprofileform.php:78 +msgid "Flag" +msgstr "Відмітити" + +#. TRANS: Form description. +#: flagprofileform.php:89 +msgid "Flag profile for review." +msgstr "Відмітити профіль для розгляду." + +#. TRANS: Server exception. +#: User_flag_profile.php:145 +#, php-format +msgid "Couldn't flag profile \"%d\" for review." +msgstr "Не вдалося відмітити профіль «%d» для розгляду." + +#. TRANS: Form title for action on a profile. +#: clearflagform.php:76 +msgid "Clear" +msgstr "Зняти" + +#: clearflagform.php:88 +msgid "Clear all flags" +msgstr "Зняти всі позначки" diff --git a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po index 0de756d587..225b6b70a6 100644 --- a/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/ia/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:40+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:34:08+0000\n" "Language-Team: Interlingua \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: ia\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" @@ -241,11 +241,11 @@ msgstr "Attende..." #: lib/yammerprogressform.php:146 msgid "Reset import state" -msgstr "" +msgstr "Reinitialisar stato de importation" #: lib/yammerprogressform.php:151 msgid "Pause import" -msgstr "" +msgstr "Pausar importation" #: lib/yammerprogressform.php:160 #, php-format @@ -258,7 +258,7 @@ msgstr "Pausate" #: lib/yammerprogressform.php:165 msgid "Abort import" -msgstr "" +msgstr "Abortar importation" #: actions/yammeradminpanel.php:45 msgid "Yammer Import" diff --git a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po index 0d4ba086d1..f57422b1a3 100644 --- a/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po +++ b/plugins/YammerImport/locale/uk/LC_MESSAGES/YammerImport.po @@ -9,13 +9,13 @@ msgid "" msgstr "" "Project-Id-Version: StatusNet - YammerImport\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2010-10-03 19:53+0000\n" -"PO-Revision-Date: 2010-10-03 19:57:40+0000\n" +"POT-Creation-Date: 2010-10-04 22:30+0000\n" +"PO-Revision-Date: 2010-10-04 22:34:09+0000\n" "Language-Team: Ukrainian \n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-POT-Import-Date: 2010-10-01 20:39:57+0000\n" -"X-Generator: MediaWiki 1.17alpha (r74231); Translate extension (2010-09-17)\n" +"X-POT-Import-Date: 2010-10-03 20:57:31+0000\n" +"X-Generator: MediaWiki 1.17alpha (r74276); Translate extension (2010-09-17)\n" "X-Translation-Project: translatewiki.net at http://translatewiki.net\n" "X-Language-Code: uk\n" "X-Message-Group: #out-statusnet-plugin-yammerimport\n" @@ -250,11 +250,11 @@ msgstr "Очікування..." #: lib/yammerprogressform.php:146 msgid "Reset import state" -msgstr "" +msgstr "Перезапустити імпорт" #: lib/yammerprogressform.php:151 msgid "Pause import" -msgstr "" +msgstr "Призупинити імпорт" #: lib/yammerprogressform.php:160 #, php-format @@ -267,7 +267,7 @@ msgstr "Призупинено" #: lib/yammerprogressform.php:165 msgid "Abort import" -msgstr "" +msgstr "Перервати імпорт" #: actions/yammeradminpanel.php:45 msgid "Yammer Import" diff --git a/scripts/fixup_group_uri.php b/scripts/fixup_group_uri.php new file mode 100644 index 0000000000..90938dac3e --- /dev/null +++ b/scripts/fixup_group_uri.php @@ -0,0 +1,102 @@ +#!/usr/bin/env php +. + */ + +define('INSTALLDIR', realpath(dirname(__FILE__) . '/..')); + +$shortoptions = 'i:n:a'; +$longoptions = array('id=', 'nickname=', 'all', 'dry-run'); + +$helptext = <<whereAdd('uri IS NULL'); + if ($group->find()) { + while ($group->fetch()) { + updateGroupUri($group); + } + } + } else { + show_help(); + exit(1); + } +} catch (Exception $e) { + print $e->getMessage()."\n"; + exit(1); +} + +function updateGroupUri($group) +{ + if (!have_option('q', 'quiet')) { + print "Updating URI for group '".$group->nickname."' (".$group->id.")..."; + } + + if (empty($group->uri)) { + // Using clone here was screwing up the group->find() iteration + $orig = User_group::staticGet('id', $group->id); + + $group->uri = $group->getUri(); + if (have_option('dry_run')) { + echo " would have set $group->uri "; + } else { + if (!$group->update($orig)) { + throw new Exception("Can't update uri for group " . $group->nickname . "."); + } + echo " set $group->uri "; + } + } else { + print " already set, keeping $group->uri "; + } + + if (have_option('v', 'verbose')) { + print "DONE."; + } + if (!have_option('q', 'quiet') || have_option('v', 'verbose')) { + print "\n"; + } +} diff --git a/theme/mnml/css/display.css b/theme/mnml/css/display.css new file mode 100644 index 0000000000..f20a4a16a3 --- /dev/null +++ b/theme/mnml/css/display.css @@ -0,0 +1,2114 @@ +/** theme: mnml + * + * @package StatusNet + * @author Michael R. Bernstein + * @copyright 2010 StatusNet, Inc. + * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported + * @link http://www.michaelbernstein.com/ + */ + +/*-- FONTS --*/ + +@font-face { + font-family: 'TeXGyreHerosRegular'; + src: url('../fonts/texgyreheros-regular-webfont.eot'); + src: local('☺'), url('../fonts/texgyreheros-regular-webfont.woff') format('woff'), url('../fonts/texgyreheros-regular-webfont.ttf') format('truetype'), url('../fonts/texgyreheros-regular-webfont.svg#webfonts1QuWEVy') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'TeXGyreHerosItalic'; + src: url('../fonts/texgyreheros-italic-webfont.eot'); + src: local('☺'), url('../fonts/texgyreheros-italic-webfont.woff') format('woff'), url('../fonts/texgyreheros-italic-webfont.ttf') format('truetype'), url('../fonts/texgyreheros-italic-webfont.svg#webfontonVrQ9Kn') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'TeXGyreHerosBold'; + src: url('../fonts/texgyreheros-bold-webfont.eot'); + src: local('☺'), url('../fonts/texgyreheros-bold-webfont.woff') format('woff'), url('../fonts/texgyreheros-bold-webfont.ttf') format('truetype'), url('../fonts/texgyreheros-bold-webfont.svg#webfontaJCL46uI') format('svg'); + font-weight: normal; + font-style: normal; +} + +/*-- END FONTS --*/ + + +@media screen, projection, tv { + +/* -- RESET -- */ +/* From Eric Meyer http://meyerweb.com/eric/tools/css/reset/index.html */ +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, font, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td { + margin: 0; + padding: 0; + border: 0; + outline: 0; + font-size: 100%; + vertical-align: baseline; + background: transparent; +} +body { + line-height: 1; +} +ol, ul { + list-style: none; +} +blockquote, q { + quotes: none; +} +blockquote:before, blockquote:after, +q:before, q:after { + content: ''; + content: none; +} + +/* remember to define focus styles! */ +:focus { + outline: 0; +} + +/* remember to highlight inserts somehow! */ +ins { + text-decoration: none; +} +del { + text-decoration: line-through; +} + +/* tables still need 'cellspacing="0"' in the markup */ +table { + border-collapse: collapse; + border-spacing: 0; +} + +/*-- END RESET --*/ + + +/*-- TYPOGRAPHY --*/ +/* Borrowed liberally from Typogridphy 2.0 - http://csswizardry.com/typogridphy/preview/ */ + +html{ + font-size:100%; +} +body{ + font-size:62.5%; + font-family:TeXGyreHerosRegular, sans-serif; + color:#444; + background-color: #EEE; + height: 100%; +} + +#wrap{ + width:94em; + padding:3em 2em 1em 2em; + margin-top: 0; + margin-left: auto; + margin-right: auto; + margin-bottom: 0; + background-color: #fff; +} + +#header{ + width:100%; + overflow:hidden; +} +#content{ + margin-right:2em; + float:left; + width: 70em; + clear:both; + background-color: #FFF; +} + + +/*-- HEADINGS --*/ +h1,h2,h3,h4,h5,h6{ + font-family: 'TeXGyreHerosBold', sans-serif; + font-weight: normal; + color:#444; +} +h1{ /* H1 is a bit hacky but it works */ + font-size:4.3em; + line-height:1.2; + margin-bottom:0.5em; +} +h2{ + font-size:2em; + line-height:1.2em; + margin-bottom:1.2em; + margin-top:-1px; + padding-bottom:1px; +} +h3{ + font-size:1.8em; + line-height:1.3333333333333333333333333333333em; + margin-bottom:1.3333333333333333333333333333333em; +} +h4{ + font-size:1.6em; + line-height:1.5em; + margin-bottom:1.5em; +} +h5{ + font-size:1.6em; + line-height:1.5em; + margin-bottom:1.5em; +} +h6{ + font-size:1.3em; + line-height:1.8461538461538461538461538461538em; + margin-bottom:1.8461538461538461538461538461538em; +} + +/*-- END HEADINGS --*/ + +/*-- LISTS --*/ +ul,ol{ + font-size:1.6em; + line-height:1.5em; + margin-bottom:1.5em; + } + +ul{ + list-style:square; + } + +ol{ + list-style:lower-roman; + } + +ul,ol{ + padding-left:1em;margin-left:-1em;/* This makes IE display hung bullets */ + } + +ul ul,ol ol{ + clear: both; + font-size:1em; + line-height:1.5em; + margin:0 0 0 2em; +} + +dl{ + } +dl dt{ + font-family: 'TeXGyreHerosBold', sans-serif; +} +dl dd{ + margin-bottom:1.5em; +} + +/*-- END LISTS --*/ + +/* --- =LINKS --- */ +a{ + color:#C00; + font-family: 'TeXGyreHerosBold', sans-serif; +} +a:visited{ + color:#C00; +} +a:hover{ + text-decoration:none; +} + +/*-- PARAGRAPHS --*/ +p{ + font-size:1.6em; + line-height:1.5em; + margin-bottom:1.5em; +} + +p.instructions { + font-family: 'TeXGyreHerosBold', sans-serif; +} + +/*-- FORMS --*/ + +.form_notice label[for=notice_data-attach], +#export_data li a.rss, +#export_data li a.atom, +#export_data li a.foaf, +.entity_edit a, +.entity_send-a-message a, +.entity_nudge p, +.form_user_nudge input.submit, +.form_user_block input.submit, +.form_user_unblock input.submit, +.form_group_block input.submit, +.form_group_unblock input.submit, +.form_make_admin input.submit, +.notice .attachment, +.notice-options .notice_reply, +.notice-options form.form_favor input.submit, +.notice-options form.form_disfavor input.submit, +.notice-options .notice_delete, +.notice-options form.form_repeat input.submit, +#new_group a, +.pagination .nav_prev a, +.pagination .nav_next a, +button.close, +.form_group_leave input.submit, +.form_user_unsubscribe input.submit, +.form_group_join input.submit, +.form_user_subscribe input.submit, +.form_remote_authorize input.submit, +.entity_subscribe a, +.entity_moderation p, +.entity_sandbox input.submit, +.entity_silence input.submit, +.entity_delete input.submit, +.entity_role p, +.entity_role_administrator input.submit, +.entity_role_moderator input.submit, +.notice-options .repeated, +.form_notice label[for=notice_data-geo], +button.minimize, +.form_reset_key input.submit, +.entity_clear input.submit, +.entity_flag input.submit, +.entity_flag p, +.entity_subscribe input.submit, +#realtime_play, +#realtime_pause, +#realtime_popup { + background-image:url(../images/icons/icons-01.png); + background-repeat:no-repeat; + background-color:transparent; +} + +.form_notice label[for=notice_data-geo] { + background-position:0 -1780px; +} +.form_notice label[for=notice_data-geo].checked { + background-position:0 -1846px; +} +.form_notice label[for=notice_data-attach] { + background-position:0 -328px; +} +button.close { + background-position:0 -1120px; +} +button.minimize { + background-position:0 -1912px; +} +#export_data li a.rss { + background-position:0 -125px; +} +#export_data li a.atom { + background-position:0 -59px; +} +#export_data li a.foaf { + background-position:0 1px; +} +.form_group_leave input.submit, +.form_user_unsubscribe input.submit { + background-position:5px -1246px; +} +.form_group_join input.submit, +.form_user_subscribe input.submit, +.form_remote_authorize input.submit, +.entity_subscribe a { + background-position:5px -1181px; +} + +.entity_edit a { + background-position: 5px -719px; +} +.entity_send-a-message a { + background-position: 5px -852px; +} +.entity_nudge p, +.form_user_nudge input.submit { + background-position: 5px -785px; +} +.form_user_block input.submit, +.form_user_unblock input.submit, +.form_group_block input.submit, +.form_group_unblock input.submit { + background-position: 5px -918px; +} +.form_make_admin input.submit { + background-position: 5px -983px; +} +.entity_moderation p { + background-position: 5px -1313px; +} +.entity_sandbox input.submit { + background-position: 5px -1380px; +} +.entity_silence input.submit { + background-position: 5px -1445px; +} +.entity_delete input.submit { + background-position: 5px -1511px; +} +.entity_sandbox .form_user_unsandbox input.submit { + background-position: 5px -2568px; +} +.entity_silence .form_user_unsilence input.submit { + background-position: 5px -2633px; +} +.entity_role p { + background-position: 5px -2436px; +} +.entity_role_administrator .form_user_grantrole input.submit { + background-position: 5px -983px; +} +.entity_role_moderator .form_user_grantrole input.submit { + background-position: 5px -1313px; +} +.entity_role_administrator .form_user_revokerole input.submit { + background-position: 5px -2699px; +} +.entity_role_moderator .form_user_revokerole input.submit { + background-position: 5px -2501px; +} +.form_reset_key input.submit { + background-position: 5px -1973px; +} +.entity_clear input.submit { + background-position: 5px -2039px; +} +.entity_flag input.submit, +.entity_flag p { + background-position: 5px -2105px; +} +.entity_subscribe input.accept { + background-position: 5px -2171px; +} +.entity_subscribe input.reject { + background-position: 5px -2237px; +} +#realtime_play { + background-position: 0 -2308px; +} +#realtime_pause { + background-position: 0 -2374px; +} +#realtime_popup { + background-position: 0 -1714px; +} +.notice .attachment { + background-position:0 -394px; +} +.notice .attachment.more { + background-position:0 -2770px; +} +#attachments .attachment { + background:none; +} +.notice-options .notice_reply { + background-position:0 -592px; +} +.notice-options form.form_favor input.submit { + background-position:0 -461px; +} +.notice-options form.form_disfavor input.submit { + background-position:0 -526px; +} +.notice-options .notice_delete { + background-position:0 -658px; +} +.notice-options form.form_repeat input.submit { + background-position:0 -1582px; +} +.notice-options .repeated { + background-position:0 -1648px; +} +#new_group a { + background-position:0 -1054px; +} +.pagination .nav_prev a { + background-position:10% -187px; +} +.pagination .nav_next a { + background-position:105% -252px; +} + +caption, legend { +font-family: 'TeXGyreHerosBold', sans-serif; +} + +input, textarea, select, option { + +} + +input.submit { +font-family: 'TeXGyreHerosBold', sans-serif; +cursor:pointer; +} +textarea { +overflow:auto; +} +option { +padding-bottom:0; +} +fieldset { +padding:0; +border:0; +} +form ul li { +list-style-type:none; +margin:0 0 18px 0; +} +form label { + font-family: 'TeXGyreHerosBold', sans-serif; + font-size: 1.6em; + line-height: 1.5em; +} +input.checkbox, +input.radio { +position:relative; +top:2px; +left:auto; +border:0; +} + +.error, +.success { + font-size:1.6em; + line-height:1.5em; + font-family: 'TeXGyreHerosBold', sans-serif; + display: inline-block; + width: auto; + min-width: 10em; +} + +.error { + color: #000; + background-color: #C00; +} + +.success { + color: #FFF; + background-color: #090; +} +.xoxo li { +list-style-type:none; +} + +form label.submit { +display:none; +} +.form_settings { +clear:both; +} +.form_settings fieldset { +margin-bottom:29px; +} +.form_settings fieldset fieldset { +margin-bottom:41px; +padding:3% 1.795% 1.795% 3%; +border-width:1px; +border-style:solid; +} +.form_settings fieldset fieldset legend { +line-height:0; +} + +.form_settings input.remove { +margin-left:11px; +} + +ul.form_data { + font-size: 100% +} + +.form_settings .form_data li { +width:100%; +float:left; +} +.form_settings .form_data label { +float:left; +} +.form_settings .form_data textarea, +.form_settings .form_data select, +.form_settings .form_data input { +margin-left:1.795%; +float:left; +} +.form_settings .form_data input { +} +.form_settings .form_data input.submit, +.form_settings .form_data input.checkbox, +.form_settings .form_data input.radio { +width:auto; +} +.form_settings .form_data textarea { +width:63%; +} + +.form_settings .form_data input.submit { +margin-left:0; +} + +.form_settings label { +margin-top:2px; +width:24%; +} + +.form_actions label { +display:none; +} +.form_guide { +font-family: 'TeXGyreHerosItalic', sans-serif; +} + +.form_settings #settings_autosubscribe label { +display:inline; +font-weight:bold; +} + +#form_settings_profile legend, +#form_login legend, +#form_register legend, +#form_password legend, +#form_settings_avatar legend, +#newgroup legend, +#editgroup legend, +#form_tag_user legend, +#form_remote_subscribe legend, +#form_openid_login legend, +#form_search legend, +#form_invite legend, +#form_notice_delete legend, +#form_password_recover legend, +#form_password_change legend, +.form_entity_block legend, +#form_filter_bytag legend, +#apioauthauthorize_allowdeny { +display:none; +} + +.form_settings .form_data p.form_guide { +clear:both; +margin-left:26%; +margin-bottom:0; +} + +.form_settings p { +margin-bottom:11px; +} + +.form_settings input.checkbox, +.form_settings input.radio { +margin-top:3px; +margin-left:0; +} +.form_settings label.checkbox { +font-weight:normal; +margin-top:0; +margin-right:0; +margin-left:11px; +float:left; +width:90%; +} +.form_settings label.radio { +margin-top:0; +margin-right:47px; +margin-left:11px; +width:auto; +} + +#form_login p.form_guide, +#form_register #settings_rememberme p.form_guide, +#form_openid_login #settings_rememberme p.form_guide, +#settings_twitter_remove p.form_guide, +#form_search ul.form_data #q, +#design_background-image_onoff p.form_guide { +margin-left:0; +} + +.form_settings .form_note { +padding:0 7px; +} + +.form_settings input.form_action-default { +margin-right:11px; +} +.form_settings input.form_action-default, +.form_settings input.form_action-primary { +padding:0; +} +.form_settings input.form_action-secondary { +margin-left:29px; +} + +#form_search .submit { +margin-left:11px; +} +#form_search .form_data input { +width:auto; +} + +address { + margin-bottom: 0.5em; + margin-top: 4.75em; + margin-bottom: 1.75em; + float: left; +} +address.vcard img.logo { +margin-right:0; +float: none; +} +address .fn { +font-weight:bold; +} +address img + .fn { +display:none; +} +address a { +text-decoration:none; +} +address .poweredby { +float:left; +clear:left; +display:block; +position:relative; +top:7px; +margin-right:-47px; +} + + +#site_nav_global_primary { + margin: 0; + margin-bottom: 2.4em; + position: absolute; +} + +#site_nav_global_primary dd { + margin: 0; + } + +#site_nav_global_primary li { + +} + +.system_notice dt { +font-weight:bold; +text-transform:uppercase; +display:none; +} + +#site_notice { + float:right; + clear:right; + margin-top: 4.75em; + margin-bottom: 1.75em; + width:22em; + background-color: #EEE; +} +#page_notice { +clear:both; +margin-bottom:18px; +} + +#anon_notice { + float:left; + margin-left: 15em; + margin-top: 3.7em; + margin-bottom: 0.9em; + width: 32em; + padding: 0.9em; + border-width:2px; + border-style:solid; + font-family: 'TeXGyreHerosBold', sans-serif; +} + +#anon_notice p { + margin-bottom: 0; +} +#footer { + clear: both; +} + +#site_nav_local_views { +width:100%; +float:left; +margin: 0; +margin-bottom: -.25em; +} + +#site_nav_local_views dt{ + display:none; + } + +#site_nav_local_views dd { + margin:0; + } + +ul.nav{ + overflow:hidden; + list-style:none; + font-size:1.3em; + line-height:1.8461538461538461538461538461538em; + margin-bottom:1.8461538461538461538461538461538em; + float: left; + } + +ul.nav li{ + float:left; + font-family: 'TeXGyreHerosBold', sans-serif; + } + +ul.nav li#nav_invitecontact { + } +ul.nav li a, ul.nav li a:visited{ + color:#444 !important; + text-decoration:none; + width: 7.8em; + margin-right:1.5em; + display:block; + } + +ul.nav li.current a { + color: #fff !important; + background-color: #666 !important; +} +ul.nav li a:hover{ + text-decoration:underline; +} + +body#register #site_nav_global_primary li#nav_register a, +body#login #site_nav_global_primary li#nav_login a, +body#openidlogin #site_nav_global_primary li#nav_login a, +body#all #site_nav_global_primary li#nav_home a, +body#replies #site_nav_global_primary li#nav_home a, +body#showstream #site_nav_global_primary li#nav_home a, +body#showfavorites #site_nav_global_primary li#nav_home a, +body#inbox #site_nav_global_primary li#nav_home a, +body#outbox #site_nav_global_primary li#nav_home a, +body#profilesettings #site_nav_global_primary li#nav_account a, +body#avatarsettings #site_nav_global_primary li#nav_account a, +body#passwordsettings #site_nav_global_primary li#nav_account a, +body#emailsettings #site_nav_global_primary li#nav_account a, +body#userdesignsettings #site_nav_global_primary li#nav_account a, +body#othersettings #site_nav_global_primary li#nav_account a, +body#openidsettings #site_nav_global_primary li#nav_account a, +body#oauthconnectionssettings #site_nav_global_primary li#nav_connect a, +body#smssettings #site_nav_global_primary li#nav_connect a, +body[id$=adminpanel] #site_nav_global_primary li#nav_admin a, +body#invite #site_nav_global_primary li#nav_invitecontact a, +body#usergroups #site_nav_global_primary li#nav_invitecontact a, +body#subscribers #site_nav_global_primary li#nav_invitecontact a, +body#subscriptions #site_nav_global_primary li#nav_invitecontact a, +body[id$=doc] #site_nav_global_primary li#nav_help a, +body[id$=search] #site_nav_global_primary li#nav_search a { + background-color: #666; + color: #FFF !important; +} +body[id$=adminpanel] #aside_primary { +display:none; +} + +#site_nav_global_primary dt, +#site_nav_global_secondary dt { +display:none; +} + +#site_nav_global_secondary { +margin: 0; +} + +#site_nav_global_secondary dd { + margin: 0; +} + +#site_nav_global_secondary ul li { +display:inline; +} +#export_data li a { +padding-left:20px; +} +#export_data li a.foaf { +padding-left:30px; +} +#export_data li a.export_vcard { +padding-left:28px; +} + +#export_data ul { +width:100%; +float:left; +} +#export_data li { +list-style-type:none; +float:left; +margin-right:11px; +} + +#licenses { +margin: 0; +clear: left; +} + +#licenses dt { +font-family: 'TeXGyreHerosBold', sans-serif;; +display:none; +} +#licenses dd { +margin: 0; +line-height:1.5; +} + +#site_content_license_cc { +margin-bottom:0; +} +#site_content_license_cc img { + display:inline; + vertical-align:top; + margin-right:4px; +} + +#core { + position:relative; + width:100%; + float:left; + margin-top: 0.5em; +} + +#shownotice #content { + min-height:0; +} + +#content_inner { + position:relative; + width:100%; + float:left; +} + +#aside_primary { + width: 22em; + float:left; + margin-right:0; + margin-right:0; + margin-bottom: 2.4em; + background-color: #FFF; +} + +#aside_primary dl { + font-size:1.3em; + line-height:1.8461538461538461538461538461538em; + margin-bottom:0; + margin-left: 0; +} + +#aside_primary dl dd { + margin-left: 0; +} + +.form_notice { +width:45%; +float:left; +position:relative; +line-height:1; +margin-left: 9em; +margin-top: 4.75em; +margin-bottom: 2.6em; +} +.form_notice fieldset { +border:0; +padding:0; +position:relative; +} +.form_notice legend { +display:none; +} +.form_notice textarea { +float:left; +clear: left; +width: 24.4em; +height:6.7em; +line-height:1.5; +padding:7px 7px 16px 7px; +position:relative; +z-index:2; +} +.form_notice label { +float:left; +} +.form_notice label[for=notice_data-attach], +.form_notice #notice_data-attach { +position:absolute; +top:2em; +right: 3em; +cursor:pointer; +} +.form_notice label[for=notice_data-attach] { +text-indent:-9999px; +width:16px; +height:16px; +} +.form_notice #notice_data-attach { +opacity: 0; +padding:0; +height:1.6em; +} +.form_notice .form_note { +position:absolute; +bottom:2px; +right:21.715%; +z-index:9; +} +.form_notice .form_note dt { +font-weight:bold; +display:none; +} +.form_notice #notice_text-count { +font-family: 'TeXGyreHerosBold', sans-serif; +line-height:1.15; +padding:1px 2px; +} +.form_notice #notice_action-submit { +width:14%; +height:47px; +padding:0; +position:absolute; +bottom:0; +right:0; +} +.form_notice label[for=to] { +} +.form_notice select[id=to] { +margin-left: 3em; +float:left; +width: 21em; +} +.form_notice .error, +.form_notice .success { +float:left; +clear:both; +width:81.5%; +margin-bottom:0; +line-height:1.618; +} +.form_notice #notice_data-attach_selected code { +float:left; +width:80%; +display:block; +overflow:auto; +margin-right:2.5%; +font-size:1.1em; +} +.form_notice #notice_data-attach_selected button.close { +float:right; +font-size:0.8em; +} + +.form_notice #notice_data-geo_wrap label, +.form_notice #notice_data-geo_wrap input { +position:absolute; +top:3.25em; +right:0.4em; +left:auto; +cursor:pointer; +width:1.6em; +height:1.6em; +display:block; +} +.form_notice #notice_data-geo_wrap input { +visibility:hidden; +} +.form_notice #notice_data-geo_wrap label { +font-weight:normal; +font-size:1em; +margin-bottom:0; +text-indent:-9999px; +} + +button.close, +button.minimize { +width:1.6em; +height:1.6em; +text-indent:-9999px; +padding:0; +border:0; +text-align:center; +font-weight:bold; +cursor:pointer; +} + +/* entity_profile */ +.entity_profile { +position:relative; +width: 52em; +float:left; +margin-left:0; +overflow:hidden; +} +.entity_profile dt, +#entity_statistics dt { +font-family: 'TeXGyreHerosBold', sans-serif;; +} +.entity_profile dd { + display:inline; + font-size:1.6em; + line-height:1.5em; + margin-bottom:1.5em; +} + + +.entity_profile .entity_depiction { +float:left; +width:96px; +margin-right: 2.4em; +margin-bottom: 2.4em; +text-align: center; +} + +.entity_profile .entity_fn, +.entity_profile .entity_nickname, +.entity_profile .entity_location, +.entity_profile .entity_url, +.entity_profile .entity_note, +.entity_profile .entity_tags, +.entity_profile .entity_aliases, +.entity_profile .entity_statistics { +margin-left:113px; +} + +.entity_profile .entity_fn, +.entity_profile .entity_nickname { +margin-left:11px; +display:inline; +} +.entity_profile .entity_nickname { +margin-left:0; +} +.entity_profile .fn, +.entity_profile .nickname { + font-family: 'TeXGyreHerosBold', sans-serif; +} + +body#subscriptions .entity_profile .fn, .entity_profile .nickname { + font-family: TeXGyreHerosBold, sans-serif; + font-size: 1.6em; + line-height: 1.5em; + margin-bottom: 1.5em; +} + +.entity_profile .fn:before { +content: "("; +font-weight:normal; +} +.entity_profile .fn:after { +content: ")"; +font-weight:normal; +} +.entity_profile .nickname:after, +.entity_profile .nickname:before { +content:""; +} +.entity_profile dt, +.entity_profile h2 { +display:none; +} +.entity_profile .role { +margin-left:11px; +font-family: 'TeXGyreHerosItalic', sans-serif; +} + +.section .entity_remote_subscribe { + color: #C00 !important; +} +/* entity_profile */ + +/*entity_actions*/ +.entity_actions { +float:right; +margin-left:2%; +min-width:21%; +} +.entity_actions h2 { +display:none; +} +.entity_actions ul { +list-style-type:none; +} +.entity_actions li { +margin-bottom:7px; +} +.entity_actions li:first-child { +border-top:0; +} +.entity_actions fieldset { +border:0; +padding:0; +} +.entity_actions legend { +display:none; +} + +.entity_actions input.submit { +display:block; +text-align:left; +width:100%; +border-color: transparent; +text-shadow: none; +color: #C00; +line-height: 1.5em; +font-size: 1.6em; +} + +.entity_actions a { +text-decoration:none; +font-family: 'TeXGyreHerosBold', sans-serif; +display:block; +} +.entity_actions a, +.entity_actions input { +} + +.entity_actions a, +.entity_actions input, +.entity_actions p { +padding-left:23px; +} + +.entity_actions a, +.entity_actions p { +padding:2px 4px 1px 26px; +} + +.entity_actions .accept { +margin-bottom:18px; +} + +.entity_send-a-message button { +position:absolute; +top:3px; +right:3px; +} + +.entity_send-a-message .form_notice { +position:absolute; +top:34px; +right:-1px; +padding:1.795%; +width:65%; +z-index:2; +border-width:1px; +border-style:solid; +} +.entity_send-a-message .form_notice legend { +display:block; +margin-bottom:11px; +} + +.entity_send-a-message .form_notice label, +.entity_send-a-message .form_notice select { +display:none; +} +.entity_send-a-message .form_notice input.submit { +text-align:center; +} + +.entity_moderation, +.entity_role { +position:relative; +} +.entity_moderation p, +.entity_role p { +font-weight:bold; +padding-bottom:2px; +margin-bottom:7px; +} +.entity_moderation ul, +.entity_role ul { +display:none; +} +.entity_moderation:hover ul, +.entity_role:hover ul { +display:block; +width:110%; +padding:11px; +position:absolute; +top:-1px; +right:-1px; +z-index:1; +border-width:1px; +border-style:solid; +} + +.entity_tags ul { +list-style-type:none; +display:inline; +} +.entity_tags li { +display:inline; +margin-right:7px; +} +.entity_tags li:before { +content:'\0009'; +} + +.aside .section { +clear:both; +float:left; +width:100%; +list-style-position:inside; +} +.aside .section h2 { + text-transform:uppercase; + color: #FFF; + background-color: #CCC; +} + +#entity_statistics { + margin-bottom: 2.4em; +} +#entity_statistics dt, +#entity_statistics dd { +display:inline; +margin-right: 0.5em; +} +#entity_statistics dt:after { +content: ":"; +} + +#entity_map a { + font-size: 1.3em; + line-height: 1.84615em; + margin-bottom: 0px; + margin-left: 0px; +} +.section ul.entities { +float:left; +width: 15em; +} +.section .entities li { +list-style-type:none; +float:left; +margin-right:1.5em; +margin-bottom: 1.5em; +display:inline; +} +.section .entities li .photo { +margin-right:0; +margin-bottom:0; +} +.section .entities li .fn { +display:none; +} + +.aside .section p, +.aside .section .more { +clear:both; +} + +.profile .entity_profile { +margin-bottom: 1.6em; +min-height:60px; +} + +.profile .form_group_join legend, +.profile .form_group_leave legend, +.profile .form_user_subscribe legend, +.profile .form_user_unsubscribe legend { +display:none; +} + +.profiles { +list-style-type:none; +font-size: 100%; +} +.profile .entity_profile .fn.nickname, +.profile .entity_profile .url[rel~=contact] { + margin-left: 1.2em; + display:inline; +} + +.profile .entity_profile .fn, +.profile .entity_profile .label { +margin-left:11px; +margin-bottom:4px; +width:auto; +clear:none; +} + +.profile .entity_profile .note, +.profile .entity_profile .entity_tag, +.profile .entity_profile .form_subscription_edit { +margin-left: 3.75em; +clear:none; +display:block; +width:auto; +} + +.profile .entity_profile .note { + margin-bottom: 0.2em; +} + +.profile .entity_profile .url, +.profile .entity_profile .entity_tags{ + margin-left: 6em; + display: block; + width: auto; +} + +.profile .entity_profile .entity_tags dt { +display:inline; +margin-right:11px; +} + +.profile .entity_profile .form_subscription_edit label { +font-weight:normal; +margin-right:11px; +} + +/*applications*/ +.applications { +margin-bottom:18px; +float:left; +width:100%; +} +.applications li { +list-style-type:none; +} +.application img, +#showapplication .entity_profile img, +.form_data #application_icon img, +#apioauthauthorize .form_data img { +max-width:96px; +max-height:96px; +} +#apioauthauthorize .form_data img { +margin-right:18px; +float:left; +} +#showapplication .entity_profile { +width:68%; +} +#showapplication .entity_profile .entity_fn { +margin-left:0; +} +#showapplication .entity_profile .entity_fn .fn:before, +#showapplication .entity_profile .entity_fn .fn:after { +content:''; +} +#showapplication .entity_data { +clear:both; +margin-bottom:18px; +} +#showapplication .entity_data h2 { +display:none; +} +#showapplication .entity_data dl { +margin-bottom:18px; +} +#showapplication .entity_data dt { +font-weight:bold; +} +#showapplication .entity_data dd { +margin-left:1.795%; +font-family:monospace; +font-size:1.3em; +} +.form_data #application_types label.radio, +.form_data #default_access_types label.radio { +width:14.5%; +} + +/* NOTICE */ +ol.notices, ol.xoxo { + font-size: 100%; + line-height: 1; +} + +.notice, +.profile, +.application { +position:relative; +clear:both; +float:left; +width:100%; +} +.notices li { +list-style-type:none; +} + +.notices li li { +} +.notices .notices { +margin-top: 4.8em; +} +.mark-top { +border-top-width:1px; +border-top-style:solid; +} + +/* NOTICES */ +#notices_primary { +float:left; +width:100%; +} +#notices_primary h2 { +display:none; +} +.notice-data a span { +display:block; +padding-left:28px; +} + +.notice .author { +margin-right:11px; +} +#showstream #content .notice .author { +display:none; +} + +.fn { + overflow:hidden; +} + +p .fn { + font-size: 100%; +} +.notice .author .fn { + font-family: 'TexGyreHerosBold', sans-serif; + font-size:1.6em; + line-height:1.5em; + margin-bottom:1.5em; +} + +.vcard .photo { +display:inline; +float:left; +} +#shownotice .vcard .photo { +margin-bottom:4px; +} +#content .notice .author .photo { +position:absolute; +left:0; +float:none; +margin-top: 0.6em; +} +#content .notice .entry-title { +margin-left: 6em; +max-width: 48em; +} + +.vcard .url, +.vcard .entity_tags{ + text-decoration:none;i + font-size:1.3em; +} +.vcard .url:hover { +text-decoration:underline; +} + +.notice .entry-title { +overflow:hidden; +word-wrap:break-word; +} +.notice .entry-title.ov { +overflow:visible; +} +#showstream .notice .entry-title, +#showstream .notice div.entry-content { +margin-left:0; +} +#shownotice .notice .entry-title { +margin-left:110px; +font-size:2.2em; +min-height:123px; +} +#shownotice .notice div.entry-content { +margin-left:0; +} + +.notice p.entry-content { +display:inline; +} + +#content .notice p.entry-content a:visited { +} +.notice p.entry-content .vcard a { +} + +.notice div.entry-content { + clear:left; + float:left; + font-size:1.3em; + line-height:1.8461538461538461538461538461538em; + margin-bottom:1.8461538461538461538461538461538em; + margin-left: 4.75em; +} +#showstream .notice div.entry-content, +#shownotice .notice div.entry-content { +max-width:79%; +} + +.notice .notice-options a, +.notice .notice-options input { +float:left; +} + +.notice div.entry-content .timestamp { +display:inline-block; +} + +.entry-content .repeat { +display:block; +} +.entry-content .repeat .photo { +float:none; +margin-right:1px; +position:relative; +top:4px; +left:0; +} + +.dialogbox { +position:absolute; +top:-1px; +right:-1px; +z-index:9; +float:none; +padding:11px; +border-style:solid; +border-width:1px; +background-color: #FFF; +font-size: 62.5%; +} + +.dialogbox legend { +display:block !important; +margin-right:18px; +margin-bottom:18px; +font-size: 1.6em; +} + +.dialogbox button.close { +position:absolute; +right:3px; +top:3px; +} + +.dialogbox .form_guide { +font-weight:normal; +padding:0; +} + +.dialogbox .submit_dialogbox { +font-weight:bold; +text-indent:0; +min-width:46px; +} +.dialogbox input { +padding-left:4px; +} +.dialogbox fieldset { +margin-bottom:0; +} + +#wrap form.processing input.submit, +.entity_actions a.processing, +.dialogbox.processing .submit_dialogbox { +cursor:wait; +outline:none; +text-indent:-9999px; +} + +.form_repeat.dialogbox { +top:-4px; +right:29px; +min-width:199px; +} + +.notice-options { +position:relative; +width:9.8em; +float:right; +} + +.notice-options a { +float:left; +} +.notice-options .notice_reply, +.notice-options .form_repeat, +.notice-options .form_favor, +.notice-options .form_disfavor, +.notice-options .repeated { +float:left; +margin-left: 0.5em; +} +.notice-options .form_favor, +.notice-options .form_disfavor { +margin-left:0; +} +.notice-options input, +.notice-options a, +.notice-options .repeated { +text-indent:-9999px; +outline:none; +width: 1em; +} +.notice-options input.submit { +display:block; +border:0; +} +.notice-options .notice_reply, +.notice-options .notice_delete { +text-decoration:none; +} +.notice .notice-options .notice_delete { +float:right; +} +.notice-options form input.submit { +width:16px; +height:16px; +padding:0; +} +.notice-options .form_repeat legend, +.notice-options .form_favor legend, +.notice-options .form_disfavor legend { +display:none; +} +.notice-options .form_repeat fieldset, +.notice-options .form_favor fieldset, +.notice-options .form_disfavor fieldset { +border:0; +padding:0; +} +.notice-options a, +.notice-options .repeated { + font-size:1.6em; + line-height:1.5em; + margin-bottom:0; +} + +.notice .attachment { +position:relative; +padding-left:16px; +} +.notice .attachment.more { +text-indent:-9999px; +width:16px; +height:16px; +display:inline-block; +overflow:hidden; +vertical-align:middle; +margin-left:4px; +} + +#attachments .attachment, +.notice .attachment.more { +padding-left:0; +} +.notice .attachment img { +position:absolute; +top:18px; +left:0; +z-index:99; +} +#shownotice .notice .attachment img { +position:static; +} + +#attachments { +clear:both; +float:left; +width:100%; +margin-top:18px; +} +#attachments dt { +font-weight:bold; +font-size:1.3em; +margin-bottom:4px; +} + +#attachments ol li { +margin-bottom:18px; +list-style-type:decimal; +float:left; +clear:both; +} + +#jOverlayContent, +#jOverlayContent #content, +#jOverlayContent #content_inner { +width: auto !important; +margin-bottom:0; +} +#jOverlayContent #content { +padding:11px; +min-height:auto; +} +#jOverlayContent .entry-title { +display:block; +margin-bottom:11px; +} +#jOverlayContent button { +position:absolute; +top:0; +right:0; +} +#jOverlayContent h1 { +max-width:425px; +} +#jOverlayContent #content { +} +#jOverlayLoading { +top:5%; +left:40%; +} +#attachment_view img { +max-width:480px; +max-height:480px; +} +#attachment_view #oembed_info { +margin-top:11px; +} +#attachment_view #oembed_info dt, +#attachment_view #oembed_info dd { +float:left; +} +#attachment_view #oembed_info dt { +clear:left; +margin-right:11px; +font-weight:bold; +} +#attachment_view #oembed_info dt:after { +content: ":"; +} + +#usergroups #new_group { +float: left; +margin-right: 2em; +} +#new_group, #group_search { +margin-bottom:18px; +} +#new_group a { +padding-left:20px; +} + +#filter_tags { +margin-bottom:11px; +float:left; +} +#filter_tags dt { +display:none; +} +#filter_tags ul { + list-style-type:none; + font-size: 100%; + line-height: 1; +} +#filter_tags li { +float:left; +margin-left:7px; +padding-left:7px; +border-left-width:1px; +border-left-style:solid; +} +#filter_tags #filter_tags_all { +margin-left:0; +border-left:0; +padding-left:0; +} +#filter_tags_all a { +font-weight:bold; +margin-top:7px; +float:left; +} + +#filter_tags_item label { +margin-right:7px; +} +#filter_tags_item label, +#filter_tags_item select { +float:left; +} +#filter_tags_item p { +float:left; +clear:both; +margin-left:38px; +} +#filter_tags_item .submit { +position:relative; +top:-3px; +left:3px; +} + +.pagination { +float:left; +clear:both; +width:100%; +margin-top:18px; +} + +.pagination dt { +font-weight:bold; +display:none; +} + +.pagination .nav { +float:left; +width:100%; +list-style-type:none; +} + +.pagination .nav_prev { +float:left; +} +.pagination .nav_next { +float:right; +} + +.pagination a { +display:block; +text-decoration:none; +padding:0.7em; +font-size: 1.2em; +vertical-align: middle; +line-height: 1; +color: #C00 !important; +width: auto !important; +} + +.pagination .nav_prev a { +padding-left:30px; +} +.pagination .nav_next a { +padding-right:30px; +} +/* END: NOTICE */ + +.hentry .entry-content li { + margin-left: 3.75em;; +} + +.hentry .entry-content .form_settings ul { +margin-left:0; +} + +#content #plugin_authors { +min-width:122px; +} +#content thead th { +text-align:left; +} +#content tbody th { +vertical-align:top; +text-align:left; +font-weight:normal; +padding-top:11px; +padding-right:18px; +} +#content tbody tr { +border-top-width:1px; +border-top-style:dotted; +} +#content td { +padding:11px 18px 11px 0; +vertical-align:top; +} +#content td:last-child { +padding-right:0; +} + +/* TOP_POSTERS */ +.section tbody td { +padding-right:18px; +padding-bottom:11px; +} +.section .vcard .photo { +margin-right:7px; +margin-bottom:0; +} + +.section .notice { +padding-top:7px; +padding-bottom:7px; +border-top:0; +} + +.section .notice:first-child { +padding-top:0; +} + +.section .notice .author { +margin-right:0; +} +.section .notice .author .fn { +display:none; +} + +/* tagcloud */ +.tag-cloud { +list-style-type:none; +text-align:center; +} +.aside .tag-cloud { +font-size:0.8em; +word-wrap:break-word; +} +.tag-cloud li { +display:inline; +margin-right:7px; +line-height:1.25; +} + +.tag-cloud li:before { +content:'\0009'; +} + +.aside .tag-cloud li { +line-height:1.5; +} +.tag-cloud li a { +text-decoration:none; +} +#tagcloud.section dt { +text-transform:uppercase; +font-weight:bold; +} +.tag-cloud-1 { +font-size:1em; +} +.tag-cloud-2 { +font-size:1.25em; +} +.tag-cloud-3 { +font-size:1.75em; +} +.tag-cloud-4 { +font-size:2em; +} +.tag-cloud-5 { +font-size:2.25em; +} +.tag-cloud-6 { +font-size:2.75em; +} +.tag-cloud-7 { +font-size:3.25em; +} + +#publictagcloud #tagcloud.section dt { +display:none; +} + +#form_settings_photo .form_data { +clear:both; +} + +#form_settings_avatar li { +width:auto; +} +#form_settings_avatar input { +margin-left:0; +} +#avatar_original, +#avatar_preview { +float:left; +} +#avatar_preview { +margin-left:29px; +} +#avatar_preview_view { +height:96px; +width:96px; +margin-bottom:18px; +overflow:hidden; +} + +#settings_attach, +#form_settings_avatar .form_actions { +clear:both; +} + +#form_settings_avatar .form_actions { +margin-bottom:0; +} + +#settings_design_background-image img { +max-width:480px; +max-height:480px; +} + +#settings_design_color .form_data, +#color-picker { +float:left; +} +#settings_design_color .form_data { +width:400px; +margin-right:1%; +} + +#settings_design_color .form_data li { +width:33%; +} +#settings_design_color .form_data label { +float:none; +display:block; +} +#settings_design_color .form_data .swatch { +padding:11px; +margin-left:0; +width:auto; +} + +.system_notice ul, +.instructions ul { +margin-left:1em; +} +.instructions ul { +margin-bottom:18px; +} +.help dt { +display:none; +} +.guide { +clear:both; +} + +#bookmarklet address { +display:none; +} +#bookmarklet .form_notice { +width:auto; +} +#bookmarklet #wrap { +min-width:0; +} + +}/*end of @media screen, projection, tv*/ + + +@media print { +a:after { background-color:#FFFFFF; } +a:not([href^="#"]):after { content:" <"attr(href)"> "; } +img { border:none; } +p { orphans: 2; widows: 1; } + +#site_nav_global_primary, +#site_nav_local_views, +#form_notice, +.pagination, +#site_nav_global_secondary, +.entity_actions, +.notice-options, +#aside_primary, +.form_subscription_edit .submit { +display:none; +} +.timestamp dt, .timestamp dd, +.device dt, .device dd { +display:inline; +} + +}/*end of @media print*/ diff --git a/theme/mnml/css/ie.css b/theme/mnml/css/ie.css new file mode 100644 index 0000000000..01a8ffcbdc --- /dev/null +++ b/theme/mnml/css/ie.css @@ -0,0 +1,87 @@ +/* IE specific styles */ +input.checkbox, +input.radio { +top:0; +} + +#wrap { + *position: relative; +} + +#site_nav_global_primary { + *float: none; + *left: 1em; +} + +img.logo { + *margin-bottom: 1.75em; + } + +.form_notice textarea { +width:78%; +} +.form_notice .form_note + label { +position:absolute; +top:25px; +left:83%; +text-indent:-9999px; +height:16px; +width:16px; +display:block; +} +.form_notice #notice_action-submit { +width:17%; +max-width:17%; +} +.form_notice #notice_data-attach_selected, +.form_notice #notice_data-geo_selected { +width:78.75%; +} +.form_notice #notice_data-attach_selected button, +.form_notice #notice_data-geo_selected button { +padding:0 4px; +} +.form_notice .form_note + label { + background:transparent url(../images/icons/icons-01.png) no-repeat 0 -328px; +} + +.form_notice #notice_data-attach { + filter: alpha(opacity=0); +} +.form_notice #notice_data-geo_wrap label { + background:transparent url(../images/icons/icons-01.png) no-repeat +0 -1780px; +} +.form_notice #notice_data-geo_wrap label.checked { + background:transparent url(../images/icons/icons-01.png) no-repeat +0 -1846px; +} + +.notices li { +*margin-bottom: 1.6em; +} + +.notice-options input.submit { +font-size:0; +text-align:right; +text-indent:0; +} +.notice div.entry-content .timestamp a { +margin-right:4px; +} +.entity_profile { +width:64%; +} +.notice { +z-index:1; +} +.notice:hover { +z-index:9999; +} +.notice .thumbnail img { +z-index:9999; +} + +.form_settings fieldset fieldset legend { +line-height:auto; +} diff --git a/theme/mnml/css/ie6.css b/theme/mnml/css/ie6.css new file mode 100644 index 0000000000..6df5e01cee --- /dev/null +++ b/theme/mnml/css/ie6.css @@ -0,0 +1,40 @@ +/* IE6 specific styles */ +address { +margin-left:7px; +} +address .fn { +display:none; +} + +#wrap { +width:1003px; +margin:0 auto; +} + +#content { +width:66%; +} +#aside_primary { +padding:1.8%; +width:24%; +} +.entity_profile .entity_nickname, +.entity_profile .entity_location, +.entity_profile .entity_url, +.entity_profile .entity_note, +.entity_profile .entity_tags { +margin-left:0; +} +.entity_profile .entity_depiction { +margin-bottom:123px; +} +.entity_actions { +width:20%; +} +.notice div.entry-content { +width:65%; +margin-left:30px; +} +.notice-options a { +width:16px; +} diff --git a/theme/mnml/css/jquery.Jcrop.css b/theme/mnml/css/jquery.Jcrop.css new file mode 100644 index 0000000000..b35f332aae --- /dev/null +++ b/theme/mnml/css/jquery.Jcrop.css @@ -0,0 +1,35 @@ +/* Fixes issue here http://code.google.com/p/jcrop/issues/detail?id=1 */ +.jcrop-holder { text-align: left; } + +.jcrop-vline, .jcrop-hline +{ + font-size: 0; + position: absolute; + background: white url(../images/illustrations/illu_jcrop.gif) top left repeat; +} +.jcrop-vline { height: 100%; width: 1px !important; } +.jcrop-hline { width: 100%; height: 1px !important; } +.jcrop-handle { + font-size: 1px; + width: 7px !important; + height: 7px !important; + border: 1px #eee solid; + background-color: #333; + *width: 9px; + *height: 9px; +} + +.jcrop-tracker { width: 100%; height: 100%; } + +.custom .jcrop-vline, +.custom .jcrop-hline +{ + background: yellow; +} +.custom .jcrop-handle +{ + border-color: black; + background-color: #C7BB00; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; +} diff --git a/theme/mnml/css/mp-screen.css b/theme/mnml/css/mp-screen.css new file mode 100644 index 0000000000..cc9514174a --- /dev/null +++ b/theme/mnml/css/mp-screen.css @@ -0,0 +1,293 @@ +/** theme: mobile profile screen + * + * @package StatusNet + * @author Sarven Capadisli + * @copyright 2009-2010 StatusNet, Inc. + * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported + * @link http://status.net/ + */ + +#wrap { +min-width:0; +max-width:100%; +} + +body { + max-width: 100%; + margin: 0 1em; +} + +#header { +margin:0; +padding:0.7em 2%; +width:96%; +} + +address { +margin:1em 0 0 0; +float:left; +width:100%; +} +address .vcard .photo { +margin-right:0; +} + +address img + .fn { +display:block; +margin-top:1em; +float:left; +} + +.vcard .photo { +margin-right:7px; +} + + +.form_settings fieldset { +margin-bottom:7px; +} + +.form_settings label { +width:auto; +display:block; +float:none; +} +.form_settings .form_data li { +margin-bottom:7px; +} + +.form_settings .form_data textarea, +.form_settings .form_data select, +.form_settings .form_data input { +margin-left:0; +display:block; +} +.form_settings .form_data textarea { +width:96.41%; +} + +.form_settings .form_data label { +float:none; +} + +.form_settings .form_data p.form_guide { +width:auto; +margin-left:0; +} + +#site_nav_global_primary { +margin:0; +width:100%; +list-style-type:none; +position:absolute; +top:0; +left:0; +} +#site_nav_global_primary li { +margin-left:0; +margin-right:4%; +float:left; +font-size:0.9em; +} + +#form_notice { +width:100%; +margin-left: 0; +} + +#form_notice textarea { +width:60%; +height:20px; +} + +#notice_text-count { +position:absolute; +bottom:2px; +right:40%; +z-index:9; +} + +/*input type=file no good in +iPhone/iPod Touch, Android, Opera Mini Simulator +*/ +#form_notice #notice_text-count + label, +#form_notice label[for="notice_data-attach"] { +display:none; +} +#form_notice #notice_data-attach { +position:static; +clear:both; +width:65%; +height:auto; +display:block; +z-index:9; +padding:0; +margin:0; +background:none; +opacity:1; +} + +#form_notice #notice_action-submit { +width:20%; +right:2%; +text-align:center; +} + + +#site_nav_local_views li { +margin-left:0; +margin-right:0; +} +#site_nav_local_views li:first-child { +margin-left:0; +} +#site_nav_local_views a { +padding:1px 3px; +display:block; +font-size:0.9em; +} +#site_nav_local_views .current a { +text-shadow:none; +} +#site_nav_local_views li { +-moz-box-shadow:none; +-webkit-box-shadow:none; +box-shadow:none; +} + + +#content { +width:96.41%; +min-height:auto; +} +#content, +#site_nav_local_views a, +#aside_primary { +border:0; +} + +.instructions p, +.instructions ul { +margin-bottom:4px; +} + +h1 { +margin-bottom:0; +} + +.notice, +.profile { +padding-top:4px; +padding-bottom:4px; +min-height:65px; +} +#content .notice .entry-title { +float:left; +width:100%; +margin-left:0; +} +#content .notice .author .photo { +position:static; +float:left; +} +#content .notice div.entry-content { +margin-left:0; +width:75%; +max-width:100%; +min-width:0; +} +.notice-options { +margin-right:1%; +} + +.notice-options form.processing { +background-image:none; +} +#wrap .notice-options form.processing input.submit { +background-position:0 47%; +} + +.notice .notice-options a, +.notice .notice-options input { +box-shadow:none; +-moz-box-shadow:none; +-webkit-box-shadow:none; +} +.notice .notice-options a, +.notice .notice-options form { +margin: 0; +} +.notice .notice-options .form_repeat, +.notice .notice-options .notice_delete { +margin-top:0px; +} +.notice .notice-options .form_favor, +.notice .notice-options .form_disfavor, +.notice .notice-options .form_repeat { +margin-right:11px; +} + +.notice .notice-options .notice_delete { +float:left; +} + +.entity_profile { +width:auto; +} + +.entity_actions { +margin-right:0; +margin-left:0; +clear:both; +float:none; +width:100%; +max-width:9999px; +} + +.entity_profile { +margin-bottom:7px; +min-height:0; +} + +.entity_profile .entity_fn, +.entity_profile .entity_nickname, +.entity_profile .entity_location, +.entity_profile .entity_url, +.entity_profile .entity_note, +.entity_profile .entity_tags, +.entity_profile .entity_aliases { +line-height:1.4; +margin-left:0; +} + +.entity_profile .entity_depiction { +margin-bottom:1%; +margin-right:7px; +} + +.entity_actions { +margin-bottom:1%; +float:left; +width:100%; +} + +.entity_actions li { +float:left; +margin-right:1.5%; +margin-bottom:0; +height:29px; +width:40%; +} + +.user_in .entity_actions .entity_subscribe { +margin-bottom:47px; +width:auto; +height:auto; +margin-right:5%; +} + +#footer { +width:96%; +padding:2%; +} + diff --git a/theme/mnml/css/uap.css b/theme/mnml/css/uap.css new file mode 100644 index 0000000000..9b724cfb0c --- /dev/null +++ b/theme/mnml/css/uap.css @@ -0,0 +1,53 @@ +/** Universal Ad Package styles: + * Medium Rectangle 300x250 + * Rectangle 180x150 + * Leaderboard 728x90 + * Wide Skyscraper 160x600 + * + * @package StatusNet + * @author Sarven Capadisli + * @copyright 2010 StatusNet, Inc. + * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported + * @link http://status.net/ + */ + +.ad { +border:1px solid #CCC; +float:left; +} + +#ad_medium-rectangle { +width:300px; +height:250px; + +margin-left:1.35%; +margin-bottom:18px; +} + +#ad_rectangle { +width:180px; +height:150px; + +float:none; +clear:both; +margin:0 auto; +margin-bottom:29px; +} + +#ad_leaderboard { +width:728px; +height:90px; + +margin:0 auto 18px; +float:none; +clear:both; +} + +#ad_wide-skyscraper { +width:160px; +height:600px; + +float:right; +margin-top:18px; +margin-right:8.25%; +} diff --git a/theme/mnml/default-avatar-mini.png b/theme/mnml/default-avatar-mini.png new file mode 100644 index 0000000000..3f1682a0cd Binary files /dev/null and b/theme/mnml/default-avatar-mini.png differ diff --git a/theme/mnml/default-avatar-profile.png b/theme/mnml/default-avatar-profile.png new file mode 100644 index 0000000000..a667695e93 Binary files /dev/null and b/theme/mnml/default-avatar-profile.png differ diff --git a/theme/mnml/default-avatar-stream.png b/theme/mnml/default-avatar-stream.png new file mode 100644 index 0000000000..cec1ac1f8d Binary files /dev/null and b/theme/mnml/default-avatar-stream.png differ diff --git a/theme/mnml/fonts/GUST e-foundry License.txt b/theme/mnml/fonts/GUST e-foundry License.txt new file mode 100644 index 0000000000..9da139743e --- /dev/null +++ b/theme/mnml/fonts/GUST e-foundry License.txt @@ -0,0 +1,29 @@ +This is a preliminary version (2006-09-30), barring acceptance from +the LaTeX Project Team and other feedback, of the GUST Font License. +(GUST is the Polish TeX Users Group, http://www.gust.org.pl) + +For the most recent version of this license see +http://www.gust.org.pl/fonts/licenses/GUST-FONT-LICENSE.txt +or +http://tug.org/fonts/licenses/GUST-FONT-LICENSE.txt + +This work may be distributed and/or modified under the conditions +of the LaTeX Project Public License, either version 1.3c of this +license or (at your option) any later version. + +Please also observe the following clause: +1) it is requested, but not legally required, that derived works be + distributed only after changing the names of the fonts comprising this + work and given in an accompanying "manifest", and that the + files comprising the Work, as listed in the manifest, also be given + new names. Any exceptions to this request are also given in the + manifest. + + We recommend the manifest be given in a separate file named + MANIFEST-.txt, where is some unique identification + of the font family. If a separate "readme" file accompanies the Work, + we recommend a name of the form README-.txt. + +The latest version of the LaTeX Project Public License is in +http://www.latex-project.org/lppl.txt and version 1.3c or later +is part of all distributions of LaTeX version 2006/05/20 or later. diff --git a/theme/mnml/fonts/stylesheet.css b/theme/mnml/fonts/stylesheet.css new file mode 100644 index 0000000000..8b4e55483b --- /dev/null +++ b/theme/mnml/fonts/stylesheet.css @@ -0,0 +1,60 @@ +/* Generated by Font Squirrel (http://www.fontsquirrel.com) on August 31, 2010 09:11:40 AM America/New_York */ + + + +@font-face { + font-family: 'TeXGyreHerosRegular'; + src: url('texgyreheros-regular-webfont.eot'); + src: local('☺'), url('texgyreheros-regular-webfont.woff') format('woff'), url('texgyreheros-regular-webfont.ttf') format('truetype'), url('texgyreheros-regular-webfont.svg#webfontznVDIkhT') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'TeXGyreHerosItalic'; + src: url('texgyreheros-italic-webfont.eot'); + src: local('☺'), url('texgyreheros-italic-webfont.woff') format('woff'), url('texgyreheros-italic-webfont.ttf') format('truetype'), url('texgyreheros-italic-webfont.svg#webfontonVrQ9Kn') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'TeXGyreHerosBold'; + src: url('texgyreheros-bold-webfont.eot'); + src: local('☺'), url('texgyreheros-bold-webfont.woff') format('woff'), url('texgyreheros-bold-webfont.ttf') format('truetype'), url('texgyreheros-bold-webfont.svg#webfontaJCL46uI') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'TeXGyreHerosCnRegular'; + src: url('texgyreheroscn-regular-webfont.eot'); + src: local('☺'), url('texgyreheroscn-regular-webfont.woff') format('woff'), url('texgyreheroscn-regular-webfont.ttf') format('truetype'), url('texgyreheroscn-regular-webfont.svg#webfont5LIRj7jM') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'TeXGyreHerosCnItalic'; + src: url('texgyreheroscn-italic-webfont.eot'); + src: local('☺'), url('texgyreheroscn-italic-webfont.woff') format('woff'), url('texgyreheroscn-italic-webfont.ttf') format('truetype'), url('texgyreheroscn-italic-webfont.svg#webfontHl3qwlFd') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'TeXGyreHerosCnBold'; + src: url('texgyreheroscn-bold-webfont.eot'); + src: local('☺'), url('texgyreheroscn-bold-webfont.woff') format('woff'), url('texgyreheroscn-bold-webfont.ttf') format('truetype'), url('texgyreheroscn-bold-webfont.svg#webfonthCSznjKQ') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'TeXGyreHerosCnBoldItalic'; + src: url('texgyreheroscn-bolditalic-webfont.eot'); + src: local('☺'), url('texgyreheroscn-bolditalic-webfont.woff') format('woff'), url('texgyreheroscn-bolditalic-webfont.ttf') format('truetype'), url('texgyreheroscn-bolditalic-webfont.svg#webfontYufML4kp') format('svg'); + font-weight: normal; + font-style: normal; +} + diff --git a/theme/mnml/fonts/texgyreheros-bold-webfont.eot b/theme/mnml/fonts/texgyreheros-bold-webfont.eot new file mode 100644 index 0000000000..b31bded808 Binary files /dev/null and b/theme/mnml/fonts/texgyreheros-bold-webfont.eot differ diff --git a/theme/mnml/fonts/texgyreheros-bold-webfont.svg b/theme/mnml/fonts/texgyreheros-bold-webfont.svg new file mode 100644 index 0000000000..6b494fc75a --- /dev/null +++ b/theme/mnml/fonts/texgyreheros-bold-webfont.svg @@ -0,0 +1,238 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/theme/mnml/fonts/texgyreheros-bold-webfont.ttf b/theme/mnml/fonts/texgyreheros-bold-webfont.ttf new file mode 100644 index 0000000000..3c4ffef550 Binary files /dev/null and b/theme/mnml/fonts/texgyreheros-bold-webfont.ttf differ diff --git a/theme/mnml/fonts/texgyreheros-bold-webfont.woff b/theme/mnml/fonts/texgyreheros-bold-webfont.woff new file mode 100644 index 0000000000..de4f5f1f8f Binary files /dev/null and b/theme/mnml/fonts/texgyreheros-bold-webfont.woff differ diff --git a/theme/mnml/fonts/texgyreheros-italic-webfont.eot b/theme/mnml/fonts/texgyreheros-italic-webfont.eot new file mode 100644 index 0000000000..896ebcbed6 Binary files /dev/null and b/theme/mnml/fonts/texgyreheros-italic-webfont.eot differ diff --git a/theme/mnml/fonts/texgyreheros-italic-webfont.svg b/theme/mnml/fonts/texgyreheros-italic-webfont.svg new file mode 100644 index 0000000000..213584a098 --- /dev/null +++ b/theme/mnml/fonts/texgyreheros-italic-webfont.svg @@ -0,0 +1,238 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/theme/mnml/fonts/texgyreheros-italic-webfont.ttf b/theme/mnml/fonts/texgyreheros-italic-webfont.ttf new file mode 100644 index 0000000000..e07782e98c Binary files /dev/null and b/theme/mnml/fonts/texgyreheros-italic-webfont.ttf differ diff --git a/theme/mnml/fonts/texgyreheros-italic-webfont.woff b/theme/mnml/fonts/texgyreheros-italic-webfont.woff new file mode 100644 index 0000000000..d33dc0a85d Binary files /dev/null and b/theme/mnml/fonts/texgyreheros-italic-webfont.woff differ diff --git a/theme/mnml/fonts/texgyreheros-regular-webfont.eot b/theme/mnml/fonts/texgyreheros-regular-webfont.eot new file mode 100644 index 0000000000..ab9638e9a7 Binary files /dev/null and b/theme/mnml/fonts/texgyreheros-regular-webfont.eot differ diff --git a/theme/mnml/fonts/texgyreheros-regular-webfont.svg b/theme/mnml/fonts/texgyreheros-regular-webfont.svg new file mode 100644 index 0000000000..778a548826 --- /dev/null +++ b/theme/mnml/fonts/texgyreheros-regular-webfont.svg @@ -0,0 +1,238 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/theme/mnml/fonts/texgyreheros-regular-webfont.ttf b/theme/mnml/fonts/texgyreheros-regular-webfont.ttf new file mode 100644 index 0000000000..65840af159 Binary files /dev/null and b/theme/mnml/fonts/texgyreheros-regular-webfont.ttf differ diff --git a/theme/mnml/fonts/texgyreheros-regular-webfont.woff b/theme/mnml/fonts/texgyreheros-regular-webfont.woff new file mode 100644 index 0000000000..53a9349e62 Binary files /dev/null and b/theme/mnml/fonts/texgyreheros-regular-webfont.woff differ diff --git a/theme/mnml/images/icons/README b/theme/mnml/images/icons/README new file mode 100644 index 0000000000..a469a7f8e7 --- /dev/null +++ b/theme/mnml/images/icons/README @@ -0,0 +1,79 @@ +/** + * @author P.J. Onori + * @license Creative Commons Attribution-Share Alike 3.0 license http://creativecommons.org/licenses/by-sa/3.0/us/ + * @link http://somerandomdude.com/projects/iconic/ + * @note + Feed icon + Left arrow + Right arrow + Solid heart + Outlined heart + @-sign + Trash + Pencil + Envelope + Speech bubble + Lock + User + Sun + 'x' + Plus + Minus + Solid tag + Outlined tag + pair of outlined speech bubbles + pair of solid speech bubbles + New Window + Key + Solid map pin + Outlined map pin + Checkmark + Denied + Play + Pause + + */ + +/** + * @author Brightmix + * @link http://www.brightmix.com/blog/more-icons-in-the-brightmix-icon-set-free-for-all/ + * @license WTFPL + Paper clip + Paper clip with paper + Flag + */ + +/** + * @author Michael R. Bernstein + * @copyright 2010 StatusNet, Inc. + * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported + * @note + These icons were heavily modified from versions + in the Iconic set by P.J. Onori, or were created + from scratch to match: + Speech bubble with minus + Speech bubble with plus + User in a circle + */ + +/** + * @author Michael R. Bernstein + * @author Sarven Capadisli + * @copyright 2008-2010 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/ + * @note + These icons were originally by Sarven Capadisli, but were + subsequently modified by Michael Bernstein: + Underscore with gray background + Broken underscore with grey background + White C with gray background + White magic wand with gray background + Gray sandbox with transparent background + Transparent sandbox with gray background + Skull in a circle + */ + +Created by various authors +* FOAF icon from http://iandavis.com/2006/foaf-icons/ with Public Domain license +* Processing icon from/by Unknown with Unknown license //FIXME diff --git a/theme/mnml/images/icons/icon_processing.gif b/theme/mnml/images/icons/icon_processing.gif new file mode 100644 index 0000000000..d0bce15423 Binary files /dev/null and b/theme/mnml/images/icons/icon_processing.gif differ diff --git a/theme/mnml/images/icons/icon_vcard.gif b/theme/mnml/images/icons/icon_vcard.gif new file mode 100644 index 0000000000..6d52947f3e Binary files /dev/null and b/theme/mnml/images/icons/icon_vcard.gif differ diff --git a/theme/mnml/images/icons/icons-01.png b/theme/mnml/images/icons/icons-01.png new file mode 100644 index 0000000000..072b95d355 Binary files /dev/null and b/theme/mnml/images/icons/icons-01.png differ diff --git a/theme/mnml/images/illustrations/illu_jcrop.gif b/theme/mnml/images/illustrations/illu_jcrop.gif new file mode 100644 index 0000000000..72ea7ccb53 Binary files /dev/null and b/theme/mnml/images/illustrations/illu_jcrop.gif differ diff --git a/theme/mnml/images/illustrations/illu_pattern-01.png b/theme/mnml/images/illustrations/illu_pattern-01.png new file mode 100644 index 0000000000..833309e587 Binary files /dev/null and b/theme/mnml/images/illustrations/illu_pattern-01.png differ diff --git a/theme/mnml/images/illustrations/illu_progress_loading-01.gif b/theme/mnml/images/illustrations/illu_progress_loading-01.gif new file mode 100644 index 0000000000..82290f4833 Binary files /dev/null and b/theme/mnml/images/illustrations/illu_progress_loading-01.gif differ diff --git a/theme/mnml/images/logo.png b/theme/mnml/images/logo.png new file mode 100644 index 0000000000..8c2c2b7233 Binary files /dev/null and b/theme/mnml/images/logo.png differ diff --git a/theme/mnml/logo.png b/theme/mnml/logo.png new file mode 100644 index 0000000000..8c2c2b7233 Binary files /dev/null and b/theme/mnml/logo.png differ diff --git a/theme/mnml/mobilelogo.png b/theme/mnml/mobilelogo.png new file mode 100644 index 0000000000..67960b2a36 Binary files /dev/null and b/theme/mnml/mobilelogo.png differ diff --git a/theme/victorian/css/display.css b/theme/victorian/css/display.css new file mode 100644 index 0000000000..fa5f9c1ea9 --- /dev/null +++ b/theme/victorian/css/display.css @@ -0,0 +1,886 @@ +/** theme: Victorian + * + * @package StatusNet + * @author Michael R. Bernstein + * @copyright 2010 StatusNet, Inc. + * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported + * @link http://www.michaelbernstein.com/ + */ + +/* Typography */ + +@font-face { + font-family: 'LinuxLibertineRegular'; + src: url('../fonts/LinLibertine_Re-4.1_.8_-webfont.eot'); + src: local('☺'), url('../fonts/LinLibertine_Re-4.1_.8_-webfont.woff') format('woff'), url('../fonts/LinLibertine_Re-4.1_.8_-webfont.ttf') format('truetype'), url('../fonts/LinLibertine_Re-4.1_.8_-webfont.svg#webfontrdqe1DyH') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'LinuxLibertineItalic'; + src: url('../fonts/LinLibertine_It-4.0_.3_-webfont.eot'); + src: local('☺'), url('../fonts/LinLibertine_It-4.0_.3_-webfont.woff') format('woff'), url('../fonts/LinLibertine_It-4.0_.3_-webfont.ttf') format('truetype'), url('../fonts/LinLibertine_It-4.0_.3_-webfont.svg#webfont1JABFqYn') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'LinuxLibertineBold'; + src: url('../fonts/LinLibertine_Bd-4.0_.2_-webfont.eot'); + src: local('☺'), url('../fonts/LinLibertine_Bd-4.0_.2_-webfont.woff') format('woff'), url('../fonts/LinLibertine_Bd-4.0_.2_-webfont.ttf') format('truetype'), url('../fonts/LinLibertine_Bd-4.0_.2_-webfont.svg#webfont8Py9MN8V') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'LinuxLibertineCRegular'; + src: url('../fonts/LinLibertineC_Re-4.0_.1_-webfont.eot'); + src: local('☺'), url('../fonts/LinLibertineC_Re-4.0_.1_-webfont.woff') format('woff'), url('../fonts/LinLibertineC_Re-4.0_.1_-webfont.ttf') format('truetype'), url('../fonts/LinLibertineC_Re-4.0_.1_-webfont.svg#webfonth75RjTOl') format('svg'); + font-weight: normal; + font-style: normal; +} + +/* bolding */ + +caption, legend, input.submit, form label, .form_settings #settings_autosubscribe label, address .fn, .system_notice dt, #anon_notice, #site_nav_local_views a, #licenses dt, .form_notice .form_note dt, .form_notice #notice_text-count, button.close, button.minimize, .entity_profile dt, #entity_statistics dt, .entity_profile .fn, .entity_profile .nickname, .entity_actions a, .entity_moderation p, .entity_role p, #showapplication .entity_data dt, .notice .author .fn, .dialogbox .submit_dialogbox, #attachments dt, #attachment_view #oembed_info dt, #filter_tags_all a, .pagination dt, .pagination a, #tagcloud.section dt { + font-weight: normal; + font-family: 'LinuxLibertineBold', serif; +} + +/* italicizing */ + +i, cite, em, var, address { + font-style: normal; + font-family: 'LinuxLibertineItalic', serif; +} + +/* End Typography */ + + +@media screen, projection, tv { +body, +a:active { + background-color:#7D6957; +} + +body { + font-family: LinuxLibertineRegular, serif; + font-size:1.2em; + color: #333; + background-image: url(../images/background.jpg); + background-attachment:fixed; + background-position:center; + line-height: 1.5; +} + +#wrap { + box-shadow: rgba(0, 0, 0, 0.496094) 0px 0px 8px; + -moz-box-shadow: rgba(0, 0, 0, 0.496094) 0px 0px 8px; + -webkit-box-shadow: rgba(0, 0, 0, 0.496094) 0px 0px 8px; + background-color: #F2EFEC; + border: 1px solid white; + margin-top: 16px; + margin-bottom: 16px; + width: 60em; +} + +address { + float: none; + text-align: center; + margin-left: 0px; +} + +.vcard .photo { + float: none; +} + +address .poweredby { + clear: none; + float: none; + margin: 0px; + font-size: 80%; + font-family: 'LinuxLibertineItalic'; +} + +#site_nav_global_primary { + float: none; + margin: 0; + margin-bottom: 1em; + text-align: center; + top: 0; + box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px; + -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px; + -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px; + background-color: #fff; +} + +#site_nav_global_primary li:hover { +background-color: #F2EFEC; +} + +body#register #site_nav_global_primary li#nav_register a, +body#login #site_nav_global_primary li#nav_login a, +body#openidlogin #site_nav_global_primary li#nav_login a, +body#all #site_nav_global_primary li#nav_home a, +body#replies #site_nav_global_primary li#nav_home a, +body#showstream #site_nav_global_primary li#nav_home a, +body#showfavorites #site_nav_global_primary li#nav_home a, +body#inbox #site_nav_global_primary li#nav_home a, +body#outbox #site_nav_global_primary li#nav_home a, +body#profilesettings #site_nav_global_primary li#nav_account a, +body#avatarsettings #site_nav_global_primary li#nav_account a, +body#passwordsettings #site_nav_global_primary li#nav_account a, +body#emailsettings #site_nav_global_primary li#nav_account a, +body#userdesignsettings #site_nav_global_primary li#nav_account a, +body#othersettings #site_nav_global_primary li#nav_account a, +body#openidsettings #site_nav_global_primary li#nav_account a, +body#oauthconnectionssettings #site_nav_global_primary li#nav_connect a, +body#smssettings #site_nav_global_primary li#nav_connect a, +body[id$=adminpanel] #site_nav_global_primary li#nav_admin a, +body#invite #site_nav_global_primary li#nav_invitecontact a, +body#usergroups #site_nav_global_primary li#nav_invitecontact a, +body#subscribers #site_nav_global_primary li#nav_invitecontact a, +body#subscriptions #site_nav_global_primary li#nav_invitecontact a, +body[id$=doc] #site_nav_global_primary li#nav_help a, +body[id$=search] #site_nav_global_primary li#nav_search a { + color: #000; + text-decoration: none; +} + +#site_notice { + box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px inset; + -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px inset; + -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px inset; + position: absolute; + top: 1em; + right: 1em; + padding: 1em; + width: 15em; + background-color:#E6DFDA; + margin: 0; +} + +.form_notice { + float: none; + margin: 0 auto; + } + +.form_notice label{ + font-family: 'LinuxLibertineCRegular', serif; + float: none; + text-align: center; + } + +#form_notice-direct label{ + float: left; + } + +.form_guide { + font-style: normal; + font-family: 'LinuxLibertineItalic'; +} + +input, textarea, select { + border-width:2px; + border-style: solid; + border-radius:4px; + -moz-border-radius:4px; + -webkit-border-radius:4px; +} + +input, textarea, select, option { + font-family: 'LinuxLibertineCRegular', serif; +} + +input, textarea, select, +.entity_actions .dialogbox input, +.mark-top { + 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); +} + +h1, h2, h3, h4, h5, h6 { + font-family: LinuxLibertineCRegular, serif; + text-align: center; + font-weight: normal; + text-transform: capitalize; + margin-bottom: 1em; +} + + +#filter_tags ul li, +.entity_send-a-message .form_notice, +.form_settings fieldset fieldset, +.entity_moderation:hover ul, +.entity_role:hover ul, +.dialogbox { + border-color:#DDDDDD; +} + +.form_settings input.form_action-primary { + background:none; +} + +.form_notice.warning #notice_text-count, +.form_settings .form_note { + background-color:#9BB43E; +} + +input.submit, +.form_notice.warning #notice_text-count, +.form_settings .form_note, +.entity_actions a, +.entity_actions input, +.entity_moderation p, +.entity_role p, +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); +} + +.entity_actions a, +.entity_actions input, +.entity_actions p { + border-color:transparent; + background-color:transparent; +} + +input:focus, textarea:focus, select:focus, +.form_notice.warning #notice_data-text, +.form_notice.warning #notice_text-count, +.form_settings .form_note, +.entity_actions .dialogbox .form_data input:focus { + border-color:#9BB43E; +} + +input.submit { + color:#FFFFFF; +} + +.entity_actions input.submit { + border-color:transparent; + text-shadow:none; +} + +.dialogbox .submit_dialogbox, +input.submit, +.form_notice input.submit { + background:#D5C5B6 url(../../base/images/illustrations/illu_pattern-01.png) 0 0 repeat-x; + color:#000000; + border-color:#7D6957; + border-top-color:#DAD5D0; + border-left-color:#DAD5D0; +} + +.dialogbox .submit_dialogbox:hover, +input.submit:hover { + background-position:0 -5px; +} + +.dialogbox .submit_dialogbox:focus, +input.submit:focus { + background-position:0 -15px; + box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); + -moz-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); + -webkit-box-shadow:3px 3px 3px rgba(194, 194, 194, 0.1); + text-shadow:none; +} + +.form_notice label[for=notice_data-geo] { + background-position:0 -1780px; +} +.form_notice label[for=notice_data-geo].checked { + background-position:0 -1846px; +} + +a, +.form_settings input.form_action-primary, +.notice-options input, +.entity_actions a, +.entity_actions input, +.entity_moderation p, +.entity_role p { + color:#015C65; +} + +.notice, +.profile, +.application, +#content tbody tr { + border-top-color:#C8D1D5; +} + +#notice_text-count { + color:#333333; +} + +.form_notice.warning #notice_text-count, +.dialogbox, +.entity_actions .dialogbox input { + color:#000000; +} + +.form_notice label[for=notice_data-attach] { + background-position:0 -328px; +} + +.form_notice #notice_data-attach { + opacity:0; +} + +.form_notice label[for=notice_data-attach], +#export_data li a.rss, +#export_data li a.atom, +#export_data li a.foaf, +.entity_edit a, +.entity_send-a-message a, +.entity_nudge p, +.form_user_nudge input.submit, +.form_user_block input.submit, +.form_user_unblock input.submit, +.form_group_block input.submit, +.form_group_unblock input.submit, +.form_make_admin input.submit, +.notice .attachment, +.notice-options .notice_reply, +.notice-options form.form_favor input.submit, +.notice-options form.form_disfavor input.submit, +.notice-options .notice_delete, +.notice-options form.form_repeat input.submit, +#new_group a, +.pagination .nav_prev a, +.pagination .nav_next a, +button.close, +.form_group_leave input.submit, +.form_user_unsubscribe input.submit, +.form_group_join input.submit, +.form_user_subscribe input.submit, +.form_remote_authorize input.submit, +.entity_subscribe a, +.entity_moderation p, +.entity_sandbox input.submit, +.entity_silence input.submit, +.entity_delete input.submit, +.entity_role p, +.entity_role_administrator input.submit, +.entity_role_moderator input.submit, +.notice-options .repeated, +.form_notice label[for=notice_data-geo], +button.minimize, +.form_reset_key input.submit, +.entity_clear input.submit, +.entity_flag input.submit, +.entity_flag p, +.entity_subscribe input.submit, +#realtime_play, +#realtime_pause, +#realtime_popup { + background-image:url(../images/icons/icons-01.gif); + background-repeat:no-repeat; + background-color:transparent; +} + +#wrap form.processing input.submit, +#core a.processing, +.dialogbox.processing .submit_dialogbox { + background:#FFFFFF url(../../base/images/icons/icon_processing.gif) no-repeat 47% 47%; +} +.notice-options .form_repeat.processing { + background-image:none; +} + +#content, body[id$="adminpanel"] #content { + -moz-border-radius: 0 0 0 0; + border-bottom-left-radius: 0 0; + border-bottom-right-radius: 0 0; + border-top-left-radius: 0 0; + border-top-right-radius: 0 0; + border: 1px solid #7D6957; + box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px; + -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px; + -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px; + margin-left: 1em; + width: 37em; +} + +#content, body[id$="adminpanel"] #content, +#site_nav_local_views a, body[id$=adminpanel] #site_nav_local_views a, +#aside_primary { + border-color:transparent; +} + +body[id$=adminpanel] #aside_primary { +display:block; +} + +#aside_primary { + background-color:#E6DFDA; + -moz-border-radius: 0px 0px 0px 0px; + border-bottom-left-radius: 0 0; + border-bottom-right-radius: 0 0; + border-top-left-radius: 0 0; + border-top-right-radius: 0 0; + -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px inset; + -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px inset; + box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px inset; + width: 15em; + float: right; + margin-left: 1em; + margin-right: 1em; +} + +.aside .section { + border-bottom: 1px solid #7D6957; + margin-bottom: 1em; + padding-bottom: 1em; +} + +.aside .section h2 { + text-transform: capitalize; +} + +.section .vcard .photo { + margin-top: 0.3em; + float: left; +} + +.section p { + display: block !important; + clear: none !important; + margin-left: 2.5em; + font-size: 90% +} + +.section table { + margin: 0 auto; +} + +.section table td { + vertical-align: middle; +} + +.section p a.more { + float: right; +} + +#content, +#site_nav_local_views .current a, body[id$=adminpanel] #site_nav_local_views .current a, +.entity_send-a-message .form_notice, +.entity_moderation:hover ul, +.entity_role:hover ul, +.dialogbox { + background-color:#FFFFFF; +} + +#site_nav_local_views, body[id$=adminpanel] #site_nav_local_views { + margin-left: 2em; + margin-right: 0; + margin-bottom: -1em; + float: left; + width: 100%; + position: static; +} + +body[id$=adminpanel] #site_nav_local_views li { +float:left; +margin-right:18px; +list-style-type:none; +width: auto; +margin-bottom: 0; +} + +#site_nav_local_views li.current, body[id$=adminpanel] #site_nav_local_views li.current { + box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px; + -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px; + -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px; + position: relative; + z-index:1; + width: auto; +} + +#site_nav_local_views a, body[id$=adminpanel] #site_nav_local_views a { + background-color:rgba(194, 194, 194, 0.5); + padding: 1em; + text-transform: capitalize; + font-size: 90%; + float: left; + font-weight: normal; + width:auto; + border-radius:4px; + -moz-border-radius:4px; + -webkit-border-radius:4px; +} + +#site_nav_local_views a:hover, body[id$=adminpanel] #site_nav_local_views a:hover { + background-color: #ffc; +} + +#site_nav_local_views .current a, body[id$=adminpanel] #site_nav_local_views .current a { + text-shadow: rgba(194,194,194,0.5) 1px 1px 1px; +} + +#footer { +padding: 1.2em; +background-color:#E6DFDA; +width: 58em; +text-align: center; +} + +#licenses { +margin-left: 5em; +margin-right: 5em; +} + +.processing { + background-image:url(../../base/images/icons/icon_processing.gif); + background-repeat:no-repeat; + background-position:47% 47%; +} + +.error { + background-color:#F7E8E8; +} + +.success { + background-color:#EFF3DC; +} + +button.close { + background-position:0 -1120px; +} + +button.minimize { + background-position:0 -1912px; +} + +#anon_notice { + background-color: #E6DFDA; + float: none; + margin-right: auto; + margin-left: auto; + border: none; + text-align: center; + box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px inset; + -moz-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px inset; + -webkit-box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 8px inset; +} + +#showstream #anon_notice { + background-color: #E6DFDA; +} + +#export_data ul { + float: none; + text-align: center; +} + +#export_data li { + float:none; + display: inline; + margin-right: 5px; + margin-left: 5px; +} + +#export_data li a { + background-repeat:no-repeat; +} + +#export_data li a.rss { + background-position:0 -130px; +} + +#export_data li a.atom { + background-position:0 -64px; +} + +#export_data li a.foaf { + background-position:0 1px; +} + +.form_group_join input.submit, +.form_group_leave input.submit, +.form_user_subscribe input.submit, +.form_user_unsubscribe input.submit, +.form_remote_authorize input.submit, +.entity_subscribe a { + background-color:#AAAAAA; + color:#FFFFFF; +} + +.form_group_leave input.submit, +.form_user_unsubscribe input.submit { + background-position:5px -1246px; +} + +.form_group_join input.submit, +.form_user_subscribe input.submit, +.form_remote_authorize input.submit, +.entity_subscribe a { + background-position:5px -1181px; +} + +.entity_edit a { + background-position: 5px -719px; +} + +.entity_send-a-message a { + background-position: 5px -852px; +} + +.entity_send-a-message .form_notice, +.entity_moderation:hover ul, +.entity_role:hover ul, +.dialogbox { + box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); + -moz-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); + -webkit-box-shadow:3px 7px 5px rgba(194, 194, 194, 0.7); +} + +.entity_nudge p, +.form_user_nudge input.submit { + background-position: 5px -785px; +} + +.form_user_block input.submit, +.form_user_unblock input.submit, +.form_group_block input.submit, +.form_group_unblock input.submit { + background-position: 5px -918px; +} + +.form_make_admin input.submit { + background-position: 5px -983px; +} + +.entity_moderation p { + background-position: 5px -1313px; +} + +.entity_sandbox input.submit { + background-position: 5px -1380px; +} + +.entity_silence input.submit { + background-position: 5px -1445px; +} + +.entity_delete input.submit { + background-position: 5px -1511px; +} + +.entity_sandbox .form_user_unsandbox input.submit { + background-position: 5px -2568px; +} + +.entity_silence .form_user_unsilence input.submit { + background-position: 5px -2633px; +} + +.entity_role p { + background-position: 5px -2436px; +} + +.entity_role_administrator .form_user_grantrole input.submit { + background-position: 5px -983px; +} + +.entity_role_moderator .form_user_grantrole input.submit { + background-position: 5px -1313px; +} + +.entity_role_administrator .form_user_revokerole input.submit { + background-position: 5px -2699px; +} + +.entity_role_moderator .form_user_revokerole input.submit { + background-position: 5px -2501px; +} + +.form_reset_key input.submit { + background-position: 5px -1973px; +} + +.entity_clear input.submit { + background-position: 5px -2039px; +} + +.entity_flag input.submit, +.entity_flag p { + background-position: 5px -2105px; +} + +.entity_subscribe input.accept { + background-position: 5px -2171px; +} + +.entity_subscribe input.reject { + background-position: 5px -2237px; +} + +#realtime_play { + background-position: 0 -2308px; +} + +#realtime_pause { + background-position: 0 -2374px; +} + +#realtime_popup { + background-position: 0 -1714px; +} + +/* NOTICES */ +.notice .attachment { + background-position:0 -394px; +} + +.notice .attachment.more { + background-position:0 -2770px; +} + +#attachments .attachment { + background:none; +} +.notice-options .notice_reply { + background-position:0 -592px; +} + +.notice-options form.form_favor input.submit { + background-position:0 -460px; +} + +.notice-options form.form_disfavor input.submit { + background-position:0 -526px; +} +.notice-options .notice_delete { + background-position:0 -658px; +} +.notice-options form.form_repeat input.submit { + background-position:0 -1582px; +} + +.notice-options .repeated { + background-position:0 -1648px; +} + +.notices .attachment.more, +.notices div.entry-content, +.notices div.notice-options { + opacity:0.4; +} + +.notices li:hover .attachment.more, +.notices li:hover div.entry-content, +.notices li:hover div.notice-options { + opacity:1; +} + +.opaque { + opacity:1 !important; +} + +.attachment.more, +.notice-options a, +.notice-options input { + font-family: 'LinuxLibertineCRegular', serif; + 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); +} + +.attachment.more:focus { + box-shadow:none; + -moz-box-shadow:none; + -webkit-box-shadow:none; + outline:none; +} + +#content .notices li:hover, +#content .applications li:hover, +#content tbody tr:hover { + background-color:rgba(240, 240, 240, 0.2); +} + +#content .notice .author .photo { + margin-right: 0.5em; + margin-top: 0.3em; +} + +#conversation .notices li:hover { + background-color:transparent; +} + +.notices .notices { + background-color:rgba(200, 200, 200, 0.050); +} + +.notices .notices .notices { + background-color:rgba(200, 200, 200, 0.100); +} + +.notices .notices .notices .notices { + background-color:rgba(200, 200, 200, 0.150); +} + +.notices .notices .notices .notices .notices { + background-color:rgba(200, 200, 200, 0.300); +} + +/*END: NOTICES */ + +#new_group a { + background-position:0 -1054px; +} + +.pagination .nav_prev a, +.pagination .nav_next a { + border-bottom-left-radius: 4px 4px; + border-bottom-right-radius: 4px 4px; + border-style: solid; + border-width: 2px; + border-top-left-radius: 4px 4px; + border-top-right-radius: 4px 4px; + background-repeat:no-repeat; + background-color: #D5C5B6; + color:#000000; + border-color:#7D6957; + border-top-color:#DAD5D0; + border-left-color:#DAD5D0; + 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); +} + +.pagination .nav_prev a { + background-position:10% -187px; +} + +.pagination .nav_next a { + background-position:105% -252px; +} + +.pagination .nav .processing { + background-image:url(../../base/images/icons/icon_processing.gif); + box-shadow:none; + -moz-box-shadow:none; + -webkit-box-shadow:none; + outline:none; +} + +.pagination .nav_next a.processing { + background-position:90% 47%; +} + +.pagination .nav_prev a.processing { + background-position:10% 47%; +} + +}/*end of @media screen, projection, tv*/ diff --git a/theme/victorian/css/ie.css b/theme/victorian/css/ie.css new file mode 100644 index 0000000000..2283471661 --- /dev/null +++ b/theme/victorian/css/ie.css @@ -0,0 +1,20 @@ +/* IE specific styles */ + +.notice-options input.submit { +color:#FFFFFF; +} +#site_nav_local_views a { +background-color:#C8D1D5; +} +.form_notice .form_note + label { +background:transparent url(../../base/images/icons/icons-01.gif) no-repeat 0 -328px; +} +.form_notice #notice_data-attach { +filter: alpha(opacity=0); +} +.notice-options form.form_favor input.submit { +background-position:0 -460px; +} +.notice-options form.form_disfavor input.submit { +background-position:0 -526px; +} diff --git a/theme/victorian/css/mp-screen.css b/theme/victorian/css/mp-screen.css new file mode 100644 index 0000000000..5639f290fb --- /dev/null +++ b/theme/victorian/css/mp-screen.css @@ -0,0 +1,292 @@ +/** theme: mobile profile screen + * + * @package StatusNet + * @author Sarven Capadisli + * @copyright 2009-2010 StatusNet, Inc. + * @license http://creativecommons.org/licenses/by/3.0/ Creative Commons Attribution 3.0 Unported + * @link http://status.net/ + */ + +#wrap { +min-width:0; +max-width:100%; +} + +#header { +margin:0; +padding:0.7em 2%; +width:96%; +} + +address { +margin:1em 0 0 0; +float:left; +width:100%; +} +address .vcard .photo { +margin-right:0; +} + +address img + .fn { +display:block; +margin-top:1em; +float:left; +} + +.vcard .photo { +margin-right:7px; +} + + +.form_settings fieldset { +margin-bottom:7px; +} + +.form_settings label { +width:auto; +display:block; +float:none; +} +.form_settings .form_data li { +margin-bottom:7px; +} + +.form_settings .form_data textarea, +.form_settings .form_data select, +.form_settings .form_data input { +margin-left:0; +display:block; +} +.form_settings .form_data textarea { +width:96.41%; +} + +.form_settings .form_data label { +float:none; +} + +.form_settings .form_data p.form_guide { +width:auto; +margin-left:0; +} + +#site_nav_global_primary { +margin:0; +width:100%; +list-style-type:none; +position:absolute; +top:0; +left:0; +} +#site_nav_global_primary li { +margin-left:0; +margin-right:4%; +float:left; +font-size:0.9em; +} + +#form_notice { +width:100%; +float: left; +} + +#form_notice textarea { +width:60%; +height:20px; +} + +#notice_text-count { +position:absolute; +bottom:2px; +right:40%; +z-index:9; +} + +/*input type=file no good in +iPhone/iPod Touch, Android, Opera Mini Simulator +*/ +#form_notice #notice_text-count + label, +#form_notice label[for="notice_data-attach"] { +display:none; +} +#form_notice #notice_data-attach { +position:static; +clear:both; +width:65%; +height:auto; +display:block; +z-index:9; +padding:0; +margin:0; +background:none; +opacity:1; +} + +#form_notice #notice_action-submit { +width:20%; +right:2%; +text-align:center; +} + +#site_nav_local_views { + margin-bottom: -0.5em; +} + +#site_nav_local_views li { +margin-left:0; +margin-right: 4px; +} +#site_nav_local_views li:first-child { +margin-left:0; +} +#site_nav_local_views a { +padding: 5px 10px; +display:block; +font-size:0.9em; +} +#site_nav_local_views .current a { +text-shadow:none; +} +#site_nav_local_views li { +-moz-box-shadow:none; +-webkit-box-shadow:none; +box-shadow:none; +} + + +#content { +width:96.41%; +min-height:auto; +} +#content, +#site_nav_local_views a, +#aside_primary { +border:0; +} + +.instructions p, +.instructions ul { +margin-bottom:4px; +} + +h1 { +margin-bottom:0; +} + +.notice, +.profile { +padding-top:4px; +padding-bottom:4px; +min-height:65px; +} +#content .notice .entry-title { +float:left; +width:100%; +margin-left:0; +} +#content .notice .author .photo { +position:static; +float:left; +} +#content .notice div.entry-content { +margin-left:0; +width:75%; +max-width:100%; +min-width:0; +} +.notice-options { +width:43px; +margin-right:1%; +} + +.notice-options form.processing { +background-image:none; +} +#wrap .notice-options form.processing input.submit { +background-position:0 47%; +} + +.notice .notice-options a, +.notice .notice-options input { +box-shadow:none; +-moz-box-shadow:none; +-webkit-box-shadow:none; +} +.notice .notice-options a, +.notice .notice-options form { +margin:-4px 0 0 0; +} +.notice .notice-options .form_repeat, +.notice .notice-options .notice_delete { +margin-top:11px; +} +.notice .notice-options .form_favor, +.notice .notice-options .form_disfavor, +.notice .notice-options .form_repeat { +margin-right:11px; +} + +.notice .notice-options .notice_delete { +float:left; +} + +.entity_profile { +width:auto; +} + +.entity_actions { +margin-right:0; +margin-left:0; +clear:both; +float:none; +width:100%; +max-width:9999px; +} + +.entity_profile { +margin-bottom:7px; +min-height:0; +} + +.entity_profile .entity_fn, +.entity_profile .entity_nickname, +.entity_profile .entity_location, +.entity_profile .entity_url, +.entity_profile .entity_note, +.entity_profile .entity_tags, +.entity_profile .entity_aliases { +line-height:1.4; +margin-left:0; +} + +.entity_profile .entity_depiction { +margin-bottom:1%; +margin-right:7px; +} + +.entity_actions { +margin-bottom:1%; +float:left; +width:100%; +} + +.entity_actions li { +float:left; +margin-right:1.5%; +margin-bottom:0; +height:29px; +width:40%; +} + +.user_in .entity_actions .entity_subscribe { +margin-bottom:47px; +width:auto; +height:auto; +margin-right:5%; +} + +#footer { +width:96%; +padding:2%; +} + diff --git a/theme/victorian/default-avatar-mini.png b/theme/victorian/default-avatar-mini.png new file mode 100644 index 0000000000..5ff4f440b9 Binary files /dev/null and b/theme/victorian/default-avatar-mini.png differ diff --git a/theme/victorian/default-avatar-orig.png b/theme/victorian/default-avatar-orig.png new file mode 100644 index 0000000000..0682e0c784 Binary files /dev/null and b/theme/victorian/default-avatar-orig.png differ diff --git a/theme/victorian/default-avatar-profile.png b/theme/victorian/default-avatar-profile.png new file mode 100644 index 0000000000..78ca9bca44 Binary files /dev/null and b/theme/victorian/default-avatar-profile.png differ diff --git a/theme/victorian/default-avatar-stream.png b/theme/victorian/default-avatar-stream.png new file mode 100644 index 0000000000..fbb9be276b Binary files /dev/null and b/theme/victorian/default-avatar-stream.png differ diff --git a/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.eot b/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.eot new file mode 100644 index 0000000000..7e6f04e5d3 Binary files /dev/null and b/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.eot differ diff --git a/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.svg b/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.svg new file mode 100644 index 0000000000..805958e5ca --- /dev/null +++ b/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.svg @@ -0,0 +1,241 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Designer : Philipp H. Poll +Foundry : Philipp H. Poll +Foundry URL : http://linuxlibertine.sf.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.ttf b/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.ttf new file mode 100644 index 0000000000..63a2810568 Binary files /dev/null and b/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.ttf differ diff --git a/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.woff b/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.woff new file mode 100644 index 0000000000..4de051ecfe Binary files /dev/null and b/theme/victorian/fonts/LinLibertineC_Re-4.0_.1_-webfont.woff differ diff --git a/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.eot b/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.eot new file mode 100644 index 0000000000..883a04d7a0 Binary files /dev/null and b/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.eot differ diff --git a/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.svg b/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.svg new file mode 100644 index 0000000000..251eede408 --- /dev/null +++ b/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.svg @@ -0,0 +1,241 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Designer : Philipp H. Poll +Foundry : Philipp H. Poll +Foundry URL : http://linuxlibertine.sf.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.ttf b/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.ttf new file mode 100644 index 0000000000..9ddc4b2d8c Binary files /dev/null and b/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.ttf differ diff --git a/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.woff b/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.woff new file mode 100644 index 0000000000..f5178bc6e9 Binary files /dev/null and b/theme/victorian/fonts/LinLibertine_Bd-4.0_.2_-webfont.woff differ diff --git a/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.eot b/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.eot new file mode 100644 index 0000000000..19f9b7831e Binary files /dev/null and b/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.eot differ diff --git a/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.svg b/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.svg new file mode 100644 index 0000000000..2a6ae3f183 --- /dev/null +++ b/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.svg @@ -0,0 +1,241 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Designer : Philipp H. Poll +Foundry : Philipp H. Poll +Foundry URL : http://linuxlibertine.sf.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.ttf b/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.ttf new file mode 100644 index 0000000000..89209c0e39 Binary files /dev/null and b/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.ttf differ diff --git a/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.woff b/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.woff new file mode 100644 index 0000000000..d78e0c6e9d Binary files /dev/null and b/theme/victorian/fonts/LinLibertine_It-4.0_.3_-webfont.woff differ diff --git a/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.eot b/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.eot new file mode 100644 index 0000000000..26f192376b Binary files /dev/null and b/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.eot differ diff --git a/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.svg b/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.svg new file mode 100644 index 0000000000..40609c6602 --- /dev/null +++ b/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.svg @@ -0,0 +1,241 @@ + + + + +This is a custom SVG webfont generated by Font Squirrel. +Designer : Philipp H. Poll +Foundry : Philipp H. Poll +Foundry URL : http://linuxlibertine.sf.net + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.ttf b/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.ttf new file mode 100644 index 0000000000..63afbdd39c Binary files /dev/null and b/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.ttf differ diff --git a/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.woff b/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.woff new file mode 100644 index 0000000000..cdfe614e07 Binary files /dev/null and b/theme/victorian/fonts/LinLibertine_Re-4.1_.8_-webfont.woff differ diff --git a/theme/victorian/fonts/Philipp Poll License - LinuxLibertine.txt b/theme/victorian/fonts/Philipp Poll License - LinuxLibertine.txt new file mode 100644 index 0000000000..e8bf53c1e3 --- /dev/null +++ b/theme/victorian/fonts/Philipp Poll License - LinuxLibertine.txt @@ -0,0 +1,98 @@ +This Font Software is Copyright (c) 2003-2006, Philipp H. Poll (http://linuxlibertine.sf.net/). +All Rights Reserved. + +"Linux Libertine" is a Reserved Font Name for this Font Software. + +This Font Software is licensed under the SIL Open Font License, Version 1.0. +No modification of the license is permitted, only verbatim copy is allowed. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.0 - 22 November 2005 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of cooperative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide an open +framework in which fonts may be shared and improved in partnership with +others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and sold with any software provided that the font +names of derivative works are changed. The fonts and derivatives, +however, cannot be released under any other type of license. + +DEFINITIONS +"Font Software" refers to any and all of the following: + - font files + - data files + - source code + - build scripts + - documentation + +"Reserved Font Name" refers to the Font Software name as seen by +users and any other names as specified after the copyright statement. + +"Standard Version" refers to the collection of Font Software +components as distributed by the Copyright Holder. + +"Modified Version" refers to any derivative font software made by +adding to, deleting, or substituting -- in part or in whole -- +any of the components of the Standard Version, by changing formats +or by porting the Font Software to a new environment. + +"Author" refers to any designer, engineer, programmer, technical +writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining +a copy of the Font Software, to use, study, copy, merge, embed, modify, +redistribute, and sell modified and unmodified copies of the Font +Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, +in Standard or Modified Versions, may be sold by itself. + +2) Standard or Modified Versions of the Font Software may be bundled, +redistributed and sold with any software, provided that each copy +contains the above copyright notice and this license. These can be +included either as stand-alone text files, human-readable headers or +in the appropriate machine-readable metadata fields within text or +binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font +Name(s), in part or in whole, unless explicit written permission is +granted by the Copyright Holder. This restriction applies to all +references stored in the Font Software, such as the font menu name and +other font description fields, which are used to differentiate the +font from others. + +4) The name(s) of the Copyright Holder or the Author(s) of the Font +Software shall not be used to promote, endorse or advertise any +Modified Version, except to acknowledge the contribution(s) of the +Copyright Holder and the Author(s) or with their explicit written +permission. + +5) The Font Software, modified or unmodified, in part or in whole, +must be distributed using this license, and may not be distributed +under any other license. + +TERMINATION +This license becomes null and void if any of the above conditions are +not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT +OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE +COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, +INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL +DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING +FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM +OTHER DEALINGS IN THE FONT SOFTWARE. diff --git a/theme/victorian/fonts/stylesheet.css b/theme/victorian/fonts/stylesheet.css new file mode 100644 index 0000000000..bbb24d16d7 --- /dev/null +++ b/theme/victorian/fonts/stylesheet.css @@ -0,0 +1,28 @@ +/* Generated by Font Squirrel (http://www.fontsquirrel.com) on September 5, 2010 08:38:55 PM America/New_York */ + + + +@font-face { + font-family: 'LinuxLibertineRegular'; + src: url('LinLibertine_Re-4.1_.8_-webfont.eot'); + src: local('☺'), url('LinLibertine_Re-4.1_.8_-webfont.woff') format('woff'), url('LinLibertine_Re-4.1_.8_-webfont.ttf') format('truetype'), url('LinLibertine_Re-4.1_.8_-webfont.svg#webfont3W3HuBJC') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'LinuxLibertineItalic'; + src: url('LinLibertine_It-4.0_.3_-webfont.eot'); + src: local('☺'), url('LinLibertine_It-4.0_.3_-webfont.woff') format('woff'), url('LinLibertine_It-4.0_.3_-webfont.ttf') format('truetype'), url('LinLibertine_It-4.0_.3_-webfont.svg#webfontJZPzbf10') format('svg'); + font-weight: normal; + font-style: normal; +} + +@font-face { + font-family: 'LinuxLibertineBold'; + src: url('LinLibertine_Bd-4.0_.2_-webfont.eot'); + src: local('☺'), url('LinLibertine_Bd-4.0_.2_-webfont.woff') format('woff'), url('LinLibertine_Bd-4.0_.2_-webfont.ttf') format('truetype'), url('LinLibertine_Bd-4.0_.2_-webfont.svg#webfontA4g6XhNd') format('svg'); + font-weight: normal; + font-style: normal; +} + diff --git a/theme/victorian/images/background.jpg b/theme/victorian/images/background.jpg new file mode 100644 index 0000000000..340a46e726 Binary files /dev/null and b/theme/victorian/images/background.jpg differ diff --git a/theme/victorian/images/icons/icons-01.gif b/theme/victorian/images/icons/icons-01.gif new file mode 100644 index 0000000000..4b1cb331a6 Binary files /dev/null and b/theme/victorian/images/icons/icons-01.gif differ diff --git a/theme/victorian/logo.png b/theme/victorian/logo.png new file mode 100644 index 0000000000..6ab9bd8b34 Binary files /dev/null and b/theme/victorian/logo.png differ diff --git a/theme/victorian/mobilelogo.png b/theme/victorian/mobilelogo.png new file mode 100644 index 0000000000..1ea5139686 Binary files /dev/null and b/theme/victorian/mobilelogo.png differ diff --git a/theme/victorian/theme.ini b/theme/victorian/theme.ini new file mode 100644 index 0000000000..33d0b67978 --- /dev/null +++ b/theme/victorian/theme.ini @@ -0,0 +1 @@ +include=base