2012-04-27 15:14:24 +00:00
< ? php
2013-03-18 21:03:42 +00:00
// Internationalisation file for Echo extension.
2012-04-27 15:14:24 +00:00
$messages = array ();
/**
* English
* @ author Andrew Garrett
*/
$messages [ 'en' ] = array (
2012-10-15 12:26:38 +00:00
'echo-desc' => 'Notifications system' ,
2012-04-27 15:14:24 +00:00
// Preferences
'prefs-echo' => 'Notifications' ,
2013-04-18 00:44:20 +00:00
'prefs-emailsettings' => 'Email settings' ,
2012-11-01 21:59:53 +00:00
'prefs-displaynotifications' => 'Display options' ,
2013-03-29 00:25:59 +00:00
'prefs-echosubscriptions' => 'Notify me about these events' ,
2013-04-18 00:44:20 +00:00
'echo-pref-send-me' => 'Send me:' ,
'echo-pref-send-to' => 'Send to:' ,
2013-01-14 23:52:46 +00:00
'echo-pref-web' => 'Web' ,
2013-02-27 11:44:01 +00:00
'echo-pref-email' => 'Email' ,
'echo-pref-email-frequency-never' => 'Do not send me any email notifications' ,
2012-11-16 21:03:57 +00:00
'echo-pref-email-frequency-immediately' => 'Individual notifications as they come in' ,
'echo-pref-email-frequency-daily' => 'A daily summary of notifications' ,
'echo-pref-email-frequency-weekly' => 'A weekly summary of notifications' ,
2013-03-20 01:10:23 +00:00
'echo-pref-notify-show-link' => 'Show notifications in my toolbar' ,
2012-04-27 15:14:24 +00:00
2013-01-14 23:52:46 +00:00
// Dismiss interface
'echo-dismiss-button' => 'Dismiss' ,
2013-02-13 02:08:36 +00:00
'echo-dismiss-message' => 'Turn off all $1 notifications' ,
2013-02-16 02:20:34 +00:00
'echo-dismiss-prefs-message' => 'You can turn these back on in Preferences' ,
2013-03-20 22:49:20 +00:00
// Category titles
2013-04-16 22:40:45 +00:00
'echo-category-title-edit-user-talk' => 'Talk page {{PLURAL:$1|post|posts}}' ,
'echo-category-title-article-linked' => 'Page {{PLURAL:$1|link|links}}' ,
'echo-category-title-reverted' => 'Edit {{PLURAL:$1|revert|reverts}}' ,
'echo-category-title-mention' => '{{PLURAL:$1|Mention|Mentions}}' ,
'echo-category-title-other' => '{{PLURAL:$1|Other}}' ,
'echo-category-title-system' => '{{PLURAL:$1|System}}' ,
2013-01-14 23:52:46 +00:00
2012-04-27 15:14:24 +00:00
// Errors
'echo-no-agent' => '[Nobody]' ,
2012-10-15 12:23:22 +00:00
'echo-no-title' => '[No page]' ,
2012-07-18 19:39:33 +00:00
'echo-error-no-formatter' => 'No formatting defined for notification' ,
2013-02-13 02:08:36 +00:00
'echo-error-preference' => 'Error: Could not set user preference' ,
'echo-error-token' => 'Error: Could not retrieve user token' ,
2012-04-27 15:14:24 +00:00
// Special:Notifications
2012-05-21 02:50:03 +00:00
'notifications' => 'Notifications' ,
2012-12-27 14:11:03 +00:00
'tooltip-pt-notifications' => 'Your notifications' ,
2013-03-27 01:03:46 +00:00
'echo-specialpage' => 'Notifications' ,
2012-08-05 22:50:38 +00:00
'echo-anon' => 'To receive notifications, [[Special:Userlogin/signup|create an account]] or [[Special:UserLogin|log in]].' ,
2012-12-17 21:58:18 +00:00
'echo-none' => 'You have no notifications.' ,
2013-01-04 21:56:30 +00:00
'echo-more-info' => 'More info' ,
2013-04-12 18:52:34 +00:00
'echo-feedback' => 'Feedback' ,
2012-04-27 15:14:24 +00:00
// Notification
2013-03-27 01:03:46 +00:00
'echo-quotation-marks' => '"$1"' ,
2013-01-07 22:44:58 +00:00
'notification-edit-talk-page2' => '[[User:$1|$1]] {{GENDER:$1|posted}} on your [[User talk:$2|talk page]].' ,
'notification-edit-talk-page-flyout2' => '$1 {{GENDER:$1|posted}} on your [[User talk:$2|talk page]].' ,
2013-01-15 23:21:39 +00:00
'notification-page-linked' => '[[$2|$2]] was {{GENDER:$1|linked}} from [[$3|$3]]: [[Special:WhatLinksHere/$2|See all links to this page]]' ,
'notification-page-linked-flyout' => '$2 was {{GENDER:$1|linked}} from $3: [[Special:WhatLinksHere/$2|See all links to this page]]' ,
2013-01-07 22:44:58 +00:00
'notification-add-comment2' => '[[User:$1|$1]] {{GENDER:$1|commented}} on "[[$3|$2]]" on the "$4" talk page' ,
'notification-add-talkpage-topic2' => '[[User:$1|$1]] {{GENDER:$1|posted}} a new topic "$2" on [[$3]]' ,
'notification-add-talkpage-topic-yours2' => '[[User:$1|$1]] {{GENDER:$1|sent}} you a message: "[[$3#$2|$2]]"' ,
'notification-add-comment-yours2' => '[[User:$1|$1]] {{GENDER:$1|commented}} on "[[$3#$2|$2]]" on your talk page' ,
2012-10-28 16:47:41 +00:00
'notification-mention' => '[[User:$1|$1]] {{GENDER:$1|mentioned}} you on [[$3#$2|$3]].' ,
'notification-mention-flyout' => '$1 {{GENDER:$1|mentioned}} you on [[$3#$2|$3]].' ,
2013-04-11 01:24:14 +00:00
'notification-user-rights' => 'Your user rights [[Special:Log/rights/$1|were {{GENDER:$1|changed}}]] by [[User:$1|$1]]. $2. [[Special:ListGroupRights|Learn more]]' ,
2013-03-13 00:49:19 +00:00
'notification-user-rights-flyout' => 'Your user rights were {{GENDER:$1|changed}} by $1. $2. [[Special:ListGroupRights|Learn more]]' ,
'notification-user-rights-add' => 'You are now a member of {{PLURAL:$2|this group|these groups}}: $1' ,
'notification-user-rights-remove' => 'You are no longer a member of {{PLURAL:$2|this group|these groups}}: $1' ,
2012-07-31 00:29:49 +00:00
'notification-talkpage-content' => '$1' , ## Do not translate unless you deliberately want to change behaviour
2013-03-29 03:21:23 +00:00
'notification-new-user' => " Welcome to { { SITENAME}}, $ 1! We're glad you're here. " ,
2013-01-07 22:44:58 +00:00
'notification-reverted2' => 'Your {{PLURAL:$4|edit on [[$2]] has|edits on [[$2]] have}} been {{GENDER:$1|reverted}} by [[User:$1|$1]] $3' ,
'notification-reverted-flyout2' => 'Your {{PLURAL:$4|edit on $2 has|edits on $2 have}} been {{GENDER:$1|reverted}} by $1 $3' ,
'notification-edit-talk-page-email-subject2' => 'You have a new talkpage message' ,
2013-03-06 00:04:48 +00:00
'notification-edit-talk-page-email-body2' => ' $ 1
2012-05-17 15:36:18 +00:00
2013-01-07 22:44:58 +00:00
$ 3
2012-05-17 15:36:18 +00:00
2012-12-18 01:50:00 +00:00
View more :
2012-07-18 19:39:33 +00:00
2013-01-07 22:44:58 +00:00
$ 2
2012-05-17 15:36:18 +00:00
2013-01-07 22:44:58 +00:00
$ 4 ' ,
'notification-edit-talk-page-email-batch-body2' => '$1 {{GENDER:$1|posted}} on your talk page' ,
2013-01-15 23:21:39 +00:00
'notification-page-linked-email-subject' => 'A page you started was linked on {{SITENAME}}' ,
2013-03-06 00:04:48 +00:00
'notification-page-linked-email-body' => ' $ 1
2012-12-26 22:05:29 +00:00
2013-01-15 23:21:39 +00:00
See all links to this page :
2012-12-26 22:05:29 +00:00
2013-01-15 23:21:39 +00:00
{{ canonicalurl : {{ #special:WhatLinksHere/$2}}}}
2012-12-26 22:05:29 +00:00
2013-01-15 23:21:39 +00:00
$ 3 ' ,
'notification-page-linked-email-batch-body' => '$2 was {{GENDER:$1|linked}} from $3' ,
2013-01-07 22:44:58 +00:00
'notification-reverted-email-subject2' => 'Your {{PLURAL:$3|edit on $2 was|edits on $2 were}} {{GENDER:$1|reverted}} by $1' ,
'notification-reverted-email-body2' => ' Your {{ PLURAL : $ 7 | edit on $ 2 has been | edits on $ 2 have been }} {{ GENDER : $ 1 | reverted }} by $ 1.
2012-07-18 19:39:33 +00:00
2013-01-07 22:44:58 +00:00
$ 5
2012-07-18 19:39:33 +00:00
2012-12-18 01:50:00 +00:00
View more :
2012-07-18 19:39:33 +00:00
2013-01-07 22:44:58 +00:00
$ 3
2012-07-18 19:39:33 +00:00
2013-01-07 22:44:58 +00:00
$ 6 ' ,
'notification-reverted-email-batch-body2' => 'Your {{PLURAL:$3|edit on $2 was|edits on $2 were}} {{GENDER:$1|reverted}} by $1' ,
2012-10-28 16:47:41 +00:00
'notification-mention-email-subject' => '$1 {{GENDER:$1|mentioned}} you on {{SITENAME}}' ,
'notification-mention-email-body' => ' {{ SITENAME }} user $ 1 {{ GENDER : $ 1 | mentioned }} you on $ 2.
$ 3
View more :
$ 4
$ 5 ' ,
'notification-mention-email-batch-body' => '$1 {{GENDER:$1|mentioned}} you on $2' ,
2013-03-13 00:49:19 +00:00
'notification-user-rights-email-subject' => 'Your user rights have changed on {{SITENAME}}' ,
'notification-user-rights-email-body' => ' Your user rights were {{ GENDER : $ 1 | changed }} by $ 1. $ 2
View more :
{{ canonicalurl : {{ #special:ListGroupRights}}}}
$ 3 ' ,
'notification-user-rights-email-batch-body' => 'Your user rights were {{GENDER:$1|changed}} by $1. $2' ,
2012-11-13 23:06:11 +00:00
'echo-notification-count' => '$1+' ,
2013-02-27 11:44:01 +00:00
// Email notification
2012-05-17 15:36:18 +00:00
'echo-email-subject-default' => 'New notification at {{SITENAME}}' ,
'echo-email-body-default' => ' You have a new notification at {{ SITENAME }} :
$ 1 ' ,
2013-04-04 21:56:05 +00:00
'echo-email-batch-body-default' => 'You have a new notification' ,
2012-12-18 01:50:00 +00:00
'echo-email-footer-default' => ' $ 2
2012-10-25 20:39:41 +00:00
2013-04-17 15:51:12 +00:00
To control which emails we send you , check your preferences :
2012-10-25 20:39:41 +00:00
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
$ 1 ' ,
2012-06-01 10:57:09 +00:00
// Notifications overlay
2012-06-24 15:46:23 +00:00
'echo-link-new' => '$1 new {{PLURAL:$1|notification|notifications}}' ,
2012-11-06 00:21:54 +00:00
'echo-link' => 'Notifications' ,
2012-12-10 05:01:00 +00:00
'echo-overlay-link' => 'All notifications' ,
2013-03-27 01:03:46 +00:00
'echo-overlay-title' => 'Notifications' ,
'echo-overlay-title-overflow' => 'Notifications (showing $1 of $2 unread)' ,
2013-04-17 01:00:21 +00:00
'echo-mark-all-as-read' => 'Mark all as read' ,
2012-12-07 01:08:33 +00:00
// Special page
'echo-date-today' => 'Today' ,
'echo-date-yesterday' => 'Yesterday' ,
'echo-date-header' => '$1 $2' ,
'echo-load-more-error' => 'An error occurred while fetching more results.' ,
2012-11-27 01:53:35 +00:00
2013-01-15 23:21:39 +00:00
// Bundle
'notification-edit-talk-page-bundle' => '$1 and $3 {{PLURAL:$4|other|others}} {{GENDER:$1|posted}} on your [[User talk:$2|talk page]].' ,
'notification-page-linked-bundle' => '$2 was {{GENDER:$1|linked}} from $3 and $4 other {{PLURAL:$5|page|pages}}. [[Special:WhatLinksHere/$2|See all links to this page]]' ,
2013-03-06 00:04:48 +00:00
'notification-edit-user-talk-email-batch-bundle-body' => '$1 and $2 {{PLURAL:$3|other|others}} {{GENDER:$1|posted}} on your talk page' ,
'notification-page-linked-email-batch-bundle-body' => '$2 was {{GENDER:$1|linked}} from $3 and $4 other {{PLURAL:$5|page|pages}}' ,
2013-01-15 23:21:39 +00:00
2013-02-27 11:44:01 +00:00
// Email batch
2012-11-27 01:53:35 +00:00
'echo-email-batch-separator' => '________________________________________________' , # only translate this message to other languages if you have to change it
'echo-email-batch-bullet' => '•' , # only translate this message to other languages if you have to change it
2013-04-16 22:40:45 +00:00
'echo-email-batch-subject-daily' => 'You have new {{PLURAL:$2|notification|notifications}} today' ,
'echo-email-batch-subject-weekly' => 'You have new {{PLURAL:$2|notification|notifications}} this week' ,
2012-11-27 01:53:35 +00:00
'echo-email-batch-body-daily' => ' $ 1 ,
2013-04-16 22:40:45 +00:00
You have new {{ PLURAL : $ 3 | notification | notifications }} on {{ SITENAME }} today . View them here :
2012-11-27 01:53:35 +00:00
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
$ 5 ' ,
'echo-email-batch-body-weekly' => ' $ 1 ,
2013-04-16 22:40:45 +00:00
You have new {{ PLURAL : $ 3 | notification | notifications }} on {{ SITENAME }} this week . View them here :
2012-11-27 01:53:35 +00:00
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
$ 5 ' ,
2012-04-27 15:14:24 +00:00
);
2013-04-07 20:51:39 +00:00
/** Message documentation ( Message documentation )
2012-07-02 22:12:04 +00:00
* @ author Amire80
2013-02-28 20:39:02 +00:00
* @ author Beta16
2012-08-01 20:04:58 +00:00
* @ author Kghbln
2012-11-03 23:21:18 +00:00
* @ author Krenair
2012-12-04 21:05:46 +00:00
* @ author Minh Nguyen
2013-04-19 20:27:12 +00:00
* @ author Mormegil
2012-08-06 19:26:34 +00:00
* @ author Nike
2012-08-01 20:04:58 +00:00
* @ author Raymond
2012-11-02 19:56:47 +00:00
* @ author Shirayuki
2012-08-03 16:18:35 +00:00
* @ author Siebrand
2013-03-22 20:04:44 +00:00
* @ author Toliño
2012-07-02 22:12:04 +00:00
*/
2012-04-27 15:14:24 +00:00
$messages [ 'qqq' ] = array (
2012-12-14 20:35:28 +00:00
'echo-desc' => '{{desc|name=Echo|url=http://www.mediawiki.org/wiki/Extension:Echo}}' ,
2013-01-13 20:36:48 +00:00
'prefs-echo' => ' Name of preferences section for Echo notifications .
{{ Identical | Notification }} ' ,
2013-04-19 20:27:12 +00:00
'prefs-emailsettings' => ' Header for the section of preferences that deals with how often notification emails are sent out and what address they are sent to .
{{ Identical | E - mail setting }} ' ,
2012-11-01 21:59:53 +00:00
'prefs-displaynotifications' => 'Header for the section of preferences that deals with how notifications are displayed' ,
2013-04-18 00:44:20 +00:00
'prefs-echosubscriptions' => 'Header for the section of preferences that deals with which notifications the user receives' ,
'echo-pref-send-me' => ' Label for the following email delivery options :
2013-02-13 20:59:03 +00:00
* {{ msg - mw | Echo - pref - email - frequency - never }}
2013-04-18 00:44:20 +00:00
* {{ msg - mw | Echo - pref - email - frequency - immediately }} ( default )
2013-02-13 20:59:03 +00:00
* {{ msg - mw | Echo - pref - email - frequency - daily }}
* {{ msg - mw | Echo - pref - email - frequency - weekly }} ' ,
2013-04-18 19:43:00 +00:00
'echo-pref-send-to' => 'Label for the address to send email notifications to.' ,
2013-03-29 00:25:59 +00:00
'echo-pref-web' => 'Label for list of notifications which are delivered on the web. In other words, on the wiki itself rather by email or another method. This should be kept very short.' ,
'echo-pref-email' => 'Label for list of notifications which are delivered via email. This should be kept very short.' ,
2013-01-04 21:26:29 +00:00
'echo-pref-email-frequency-never' => " Option for users who don't want to receive any email notifications
See also :
* {{ msg - mw | Echo - pref - email - frequency - immediately }}
* {{ msg - mw | Echo - pref - email - frequency - daily }}
* {{ msg - mw | Echo - pref - email - frequency - weekly }} " ,
2012-11-16 21:03:57 +00:00
'echo-pref-email-frequency-immediately' => 'Option for users who want to receive email for each notification as it occurs' ,
'echo-pref-email-frequency-daily' => 'Option for users who want to receive a daily digest of email notifications' ,
'echo-pref-email-frequency-weekly' => 'Option for users who want to receive a weekly digest of email notifications' ,
2013-03-20 01:10:23 +00:00
'echo-pref-notify-show-link' => " Label for a preference which enables the 'Notifications' link in the header and associated fly-out panel " ,
2013-03-01 21:20:28 +00:00
'echo-dismiss-button' => ' Text for the button that dismisses a notification type . Keep this short .
{{ Identical | Dismiss }} ' ,
2013-02-16 23:16:53 +00:00
'echo-dismiss-message' => ' Message asking the user if they want to turn off all notifications of a certain type . Parameters :
* $ 1 - the name of the type ; one of the following :
2013-03-20 22:49:20 +00:00
** {{ msg - mw | Echo - category - title - edit - user - talk }}
2013-03-29 00:25:59 +00:00
** {{ msg - mw | Echo - category - title - article - linked }}
2013-03-20 22:49:20 +00:00
** {{ msg - mw | Echo - category - title - reverted }}
** {{ msg - mw | Echo - category - title - mention }}
** {{ msg - mw | Echo - category - title - other }}
** {{ msg - mw | Echo - category - title - system }} ' ,
2013-03-25 19:45:38 +00:00
'echo-dismiss-prefs-message' => 'Used in Dismiss interface.' ,
2013-04-16 22:40:45 +00:00
'echo-category-title-edit-user-talk' => ' This is a short title for notification category . Used as < code > $ 1 </ code > in {{ msg - mw | Echo - dismiss - message }} and < code > $ 2 </ code > in {{ msg - mw | Echo - email - batch - category - header }} . Parameters :
* $ 1 - the number used for plural support ' ,
'echo-category-title-article-linked' => ' This is a short title for notification category . Used as < code > $ 1 </ code > in {{ msg - mw | Echo - dismiss - message }} and < code > $ 2 </ code > in {{ msg - mw | Echo - email - batch - category - header }} . Parameters :
* $ 1 - the number used for plural support ' ,
'echo-category-title-reverted' => ' This is a short title for notification category . Used as < code > $ 1 </ code > in {{ msg - mw | Echo - dismiss - message }} and < code > $ 2 </ code > in {{ msg - mw | Echo - email - batch - category - header }} . Parameters :
* $ 1 - the number used for plural support ' ,
'echo-category-title-mention' => ' This is a short title for notification category . Used as < code > $ 1 </ code > in {{ msg - mw | Echo - dismiss - message }} and < code > $ 2 </ code > in {{ msg - mw | Echo - email - batch - category - header }} . Parameters :
* $ 1 - the number used for plural support ' ,
2013-03-22 20:04:44 +00:00
'echo-category-title-other' => ' This is a short title for notification category .
Used as < code > $ 1 </ code > in {{ msg - mw | Echo - dismiss - message }} and < code > $ 2 </ code > in {{ msg - mw | Echo - email - batch - category - header }} .
2013-04-16 22:40:45 +00:00
{{ Identical | Other }} Parameters :
* $ 1 - the number used for plural support ' ,
2013-03-22 20:04:44 +00:00
'echo-category-title-system' => ' This is a short title for notification category . Used as < code > $ 1 </ code > in {{ msg - mw | Echo - dismiss - message }} and < code > $ 2 </ code > in {{ msg - mw | Echo - email - batch - category - header }} .
2013-04-16 22:40:45 +00:00
{{ Identical | System }} Parameters :
* $ 1 - the number used for plural support ' ,
2012-04-27 15:14:24 +00:00
'echo-no-agent' => ' Shown in place of a username in a notification
if the notification has no specified user . ' ,
2012-12-25 20:04:33 +00:00
'echo-no-title' => 'Shown in place of a page title in a notification if the notification has no specified page title.' ,
2012-07-18 19:39:33 +00:00
'echo-error-no-formatter' => " Error message displayed when no formatting has been defined for a notification. In other words, the extension doesn't know how to properly display the notification. " ,
2013-01-14 23:52:46 +00:00
'echo-error-preference' => 'Error message displayed when request to set user preference fails' ,
'echo-error-token' => 'Error message displayed when request to get user token fails' ,
2013-03-26 21:08:07 +00:00
'notifications' => ' {{ doc - special | Notifications }}
2013-01-13 20:36:48 +00:00
{{ Identical | Notification }} ' ,
2012-12-27 14:11:03 +00:00
'tooltip-pt-notifications' => 'This is used for the title (mouseover text) of the notifications user tool.' ,
2013-03-29 20:37:31 +00:00
'echo-specialpage' => ' Special page title for Special : Notifications .
{{ Identical | Notification }} ' ,
2012-04-27 15:14:24 +00:00
'echo-anon' => 'Error message shown to users who try to visit Special:Notifications as an anon.' ,
2012-06-08 05:55:01 +00:00
'echo-none' => 'Message shown to users who have no notifications. Also shown in the overlay.' ,
2013-01-04 21:56:30 +00:00
'echo-more-info' => 'This is used for the title (mouseover text) of an icon that links to a page with more information about the Echo extension.' ,
2013-04-19 20:27:12 +00:00
'echo-feedback' => ' Text for a link that goes to a feedback survey shown at [[ Special : Notifications ]] .
2013-04-16 19:44:42 +00:00
{{ Identical | Feedback }} ' ,
2013-03-27 01:03:46 +00:00
'echo-quotation-marks' => 'Puts the edit summary in quotation marks. Only translate if different than English.' ,
2013-01-07 22:44:58 +00:00
'notification-edit-talk-page2' => " Format for displaying notifications of a user talk page being edited
2012-08-03 16:18:35 +00:00
* $ 1 is the username of the person who edited , plain text . Can be used for GENDER .
2013-01-09 22:12:36 +00:00
* $ 2 is the current user ' s name , used in the link to their talk page .
See also :
* {{ msg - mw | Notification - edit - talk - page - flyout2 }}
* {{ msg - mw | Notification - add - talkpage - topic2 }} " ,
2013-01-07 22:44:58 +00:00
'notification-edit-talk-page-flyout2' => " Flyout-specific format for displaying notifications of a user talk page being edited
2012-08-06 19:26:34 +00:00
* $ 1 is the username of the person who edited , plain text . Can be used for GENDER .
2013-01-09 22:12:36 +00:00
* $ 2 is the current user ' s name , used in the link to their talk page .
See also :
* {{ msg - mw | Notification - edit - talk - page2 }}
* {{ msg - mw | Notification - add - talkpage - topic2 }} " ,
2013-01-15 23:21:39 +00:00
'notification-page-linked' => ' Format for displaying notifications of articles being linked
2013-01-07 22:44:58 +00:00
* $ 1 is the username of the person who linked the page , plain text . Can be used for GENDER .
2013-01-15 23:21:39 +00:00
* $ 2 is the page being linked
* $ 3 is the page linked from
2013-01-09 22:12:36 +00:00
See also :
2013-01-15 23:21:39 +00:00
* {{ msg - mw | Notification - page - linked - flyout }}
* {{ msg - mw | Notification - page - linked - email - batch - body }}
* {{ msg - mw | Notification - page - linked - email - subject }}
* {{ msg - mw | Notification - page - linked - email - body }} ' ,
'notification-page-linked-flyout' => ' Flyout - specific format for displaying notifications of articles being linked
2013-01-07 22:44:58 +00:00
* $ 1 is the username of the person who linked the page , plain text . Can be used for GENDER .
2013-01-15 23:21:39 +00:00
* $ 2 is the page being linked
* $ 3 is the page linked from
2013-01-09 22:12:36 +00:00
See also :
2013-01-15 23:21:39 +00:00
* {{ msg - mw | Notification - page - linked }}
* {{ msg - mw | Notification - page - linked - email - batch - body }}
* {{ msg - mw | Notification - page - linked - email - subject }}
* {{ msg - mw | Notification - page - linked - email - body }} ' ,
2013-01-07 22:44:58 +00:00
'notification-add-comment2' => ' Format for displaying notifications of a comment being added to an existing discussion . Parameters :
* $ 1 is the username of the person who edited , plain text . Can be used for GENDER .
* $ 2 is the section title of the discussion ,
* $ 3 is a link to a page and section ,
2013-01-09 22:12:36 +00:00
* $ 4 is the page on which the discussion exists , plain text .
See also :
* {{ msg - mw | Notification - add - comment - yours2 }} ' ,
'notification-add-talkpage-topic2' => ' Format for displaying notifications of a new discussion being added
2013-01-07 22:44:58 +00:00
* $ 1 is the username of the person who edited , plain text . Can be used for GENDER .
* $ 2 is the section title of the discussion .
2013-01-09 22:12:36 +00:00
* $ 3 is the page on which the discussion was added , plain text .
See also :
* {{ msg - mw | Notification - edit - talk - page2 }}
* {{ msg - mw | Notification - edit - talk - page - flyout2 }} ' ,
2013-01-07 22:44:58 +00:00
'notification-add-talkpage-topic-yours2' => ' Parameters :
* $ 1 is a username , plain text . Can be used for GENDER .
* $ 2 is a page section
* $ 3 is a page title . ' ,
'notification-add-comment-yours2' => ' Parameters :
* $ 1 is a username , plain text . Can be used for GENDER .
* $ 2 Discussion name ;
2013-01-09 22:12:36 +00:00
* $ 3 link to user talk page .
See also :
* {{ msg - mw | Notification - add - comment2 }} ' ,
2013-02-25 21:05:32 +00:00
'notification-mention' => " Format for displaying notifications of a comment including a link to another user's user page. Parameters:
2013-03-17 20:36:37 +00:00
* $ 1 - the username of the person who edited , plain text . Can be used for GENDER
* $ 2 - the section title of the discussion
* $ 3 - the page title of the discussion " ,
'notification-mention-flyout' => " Flyout-specific format for displaying notifications of a comment including a link to another user's user page.
Parameters :
* $ 1 - the username of the person who mentioned you , plain text . Can be used for GENDER .
* $ 2 - the section title of the discussion
* $ 3 - the page title of the discussion " ,
2013-03-13 00:49:19 +00:00
'notification-user-rights' => ' Format for displaying notifications of a user right change in notification page . Parameters :
* $ 1 is the username of the person who made the user right change . Can be used for GENDER support
2013-03-22 20:04:44 +00:00
* $ 2 is a semicolon separated list of {{ msg - mw | notification - user - rights - add }}, {{ msg - mw | notification - user - rights - remove }} ' ,
2013-03-13 00:49:19 +00:00
'notification-user-rights-flyout' => ' Format for displaying notifications of a user right change in notification flyout . Parameters :
2013-03-22 20:04:44 +00:00
* $ 1 - the username of the person who made the user right change . Can be used for GENDER support
* $ 2 - a semicolon separated list of {{ msg - mw | notification - user - rights - add }}, {{ msg - mw | notification - user - rights - remove }} ' ,
2013-03-13 00:49:19 +00:00
'notification-user-rights-add' => ' Message indicating that a user was added to a user group . Parameters :
* $ 1 is a comma separated list of user group names
* $ 2 is the number of user groups , this is used for PLURAL support ' ,
'notification-user-rights-remove' => ' Message indicating that a user was removed from a user group . Parameters :
* $ 1 is a comma separated list of user group names
* $ 2 is the number of user groups , this is used for PLURAL support ' ,
2012-10-22 01:14:40 +00:00
'notification-talkpage-content' => ' Message shown as the " content " of a talkpage - related action .
* $ 1 is the content of the talk page post .
{{ optional }} ' ,
2013-03-29 03:21:23 +00:00
'notification-new-user' => ' Text of the welcome notification . Parameters :
2013-01-11 20:33:02 +00:00
* $ 1 - the name of the new user
See also :
* {{ msg - mw | Guidedtour - tour - gettingstarted - start - title }} ' ,
2013-01-07 22:44:58 +00:00
'notification-reverted2' => " Format for displaying notifications of a user's edit being reverted.
* $ 1 is the username of the person who reverted , plain text . Can be used for GENDER .
* $ 2 is the page that was reverted , formatted .
* $ 3 is a diff link to the '' revert '' , possibly formatted .
2013-01-09 22:12:36 +00:00
* $ 4 is the number of edits that were reverted . NOTE : This will only be set to 1 or 2 , with 2 actually meaning 'an unknown number greater than 0' .
{{ Related | Notification - reverted }} " ,
2013-01-07 22:44:58 +00:00
'notification-reverted-flyout2' => " Flyout-specific format for displaying notifications of a user's edit being reverted.
2012-11-02 19:56:47 +00:00
* $ 1 is the username of the person who reverted , plain text . Can be used for GENDER .
2013-01-07 22:44:58 +00:00
* $ 2 is the page that was reverted , formatted .
* $ 3 is a diff link to the '' revert '' , possibly formatted .
2013-01-09 22:12:36 +00:00
* $ 4 is the number of edits that were reverted . NOTE : This will only be set to 1 or 2 , with 2 actually meaning 'an unknown number greater than 0' .
{{ Related | Notification - reverted }} " ,
2013-01-07 22:44:58 +00:00
'notification-edit-talk-page-email-subject2' => 'E-mail subject.' ,
'notification-edit-talk-page-email-body2' => ' E - mail notification . Parameters :
2013-04-12 18:12:31 +00:00
* $ 1 - the email intro , could be {{ msg - mw | notification - edit - talk - page - email - batch - body2 }} or {{ msg - mw | notification - edit - user - talk - email - batch - bundle - body }}
* $ 2 - a link to a change
* $ 3 - the edit summary
* $ 4 - the e - mail footer , {{ msg - mw | echo - email - footer - default }} ' ,
2013-01-07 22:44:58 +00:00
'notification-edit-talk-page-email-batch-body2' => ' E - mail notification for talk page edit
2013-04-19 20:27:12 +00:00
* $ 1 is a username
See also :
* {{ msg - mw | Notification - edit - talk - page2 }}
* {{ msg - mw | Notification - edit - talk - page - email - subject2 }}
* {{ msg - mw | Notification - edit - talk - page - flyout2 }} ' ,
2013-01-15 23:21:39 +00:00
'notification-page-linked-email-subject' => ' E - mail subject .
2013-01-09 22:12:36 +00:00
See also :
2013-01-15 23:21:39 +00:00
* {{ msg - mw | Notification - page - linked }}
* {{ msg - mw | Notification - page - linked - flyout }}
* {{ msg - mw | Notification - page - linked - email - batch - body }}
* {{ msg - mw | Notification - page - linked - email - body }} ' ,
'notification-page-linked-email-body' => ' E - mail notification . Parameters :
2013-03-06 00:04:48 +00:00
* $ 1 is the email intro , could be {{ msg - mw | notification - page - linked - email - batch - body }} or {{ msg - mw | notification - page - linked - email - batch - bundle - body }}
2013-01-15 23:21:39 +00:00
* $ 2 is the page being linked .
* $ 3 is the e - mail footer , {{ msg - mw | echo - email - footer - default }} .
2013-01-09 22:12:36 +00:00
See also :
2013-01-15 23:21:39 +00:00
* {{ msg - mw | Notification - page - linked }}
* {{ msg - mw | Notification - page - linked - flyout }}
* {{ msg - mw | Notification - page - linked - email - batch - body }}
* {{ msg - mw | Notification - page - linked - email - subject }} ' ,
'notification-page-linked-email-batch-body' => ' E - mail notification for page being linked . Parameters :
2013-01-07 22:44:58 +00:00
* $ 1 is the username of the person who linked the page , plain text . Can be used for GENDER .
2013-01-15 23:21:39 +00:00
* $ 2 is the page being linked .
* $ 3 is the page linked from
2013-01-09 22:12:36 +00:00
See also :
2013-01-15 23:21:39 +00:00
* {{ msg - mw | Notification - page - linked }}
* {{ msg - mw | Notification - page - linked - flyout }}
* {{ msg - mw | Notification - page - linked - email - subject }}
* {{ msg - mw | Notification - page - linked - email - body }} ' ,
2013-01-07 22:44:58 +00:00
'notification-reverted-email-subject2' => ' E - mail subject . Parameters :
* $ 1 is a username
* $ 2 is a page title
2013-01-09 22:12:36 +00:00
* $ 3 is the number of revert
{{ Related | Notification - reverted }} ' ,
2013-01-07 22:44:58 +00:00
'notification-reverted-email-body2' => " E-mail notification. Parameters:
* $ 1 is the username
* $ 2 is the page title
* $ 3 is the link to the change
* $ 4 is the e - mail recipient ' s username
* $ 5 is the edit summary
2013-01-12 20:27:14 +00:00
* $ 6 is the email footer , {{ msg - mw | echo - email - footer - default }}
2013-01-09 22:12:36 +00:00
* $ 7 is the number of revert
{{ Related | Notification - reverted }} " ,
2013-01-07 22:44:58 +00:00
'notification-reverted-email-batch-body2' => ' E - mail notification for page revert . Parameters :
* $ 1 is a username
* $ 2 is a page title
2013-01-09 22:12:36 +00:00
* $ 3 is the number of revert
{{ Related | Notification - reverted }} ' ,
2012-10-28 16:47:41 +00:00
'notification-mention-email-subject' => ' E - mail subject . Parameters :
2013-04-19 20:27:12 +00:00
* $ 1 is a username
See also :
* {{ msg - mw | Notification - mention }}
* {{ msg - mw | Notification - mention - flyout }}
* {{ msg - mw | Notification - mention - email - batch - body }}
* {{ msg - mw | Notification - mention - email - body }} ' ,
2012-10-28 16:47:41 +00:00
'notification-mention-email-body' => ' E - mail notification . Parameters :
* $ 1 is a username , plaintext . Can be used for gender support
* $ 2 is talk page title
* $ 3 is the edit summary
* $ 4 is the link to the talk page section title
2013-04-19 20:27:12 +00:00
* $ 5 is the email footer
See also :
* {{ msg - mw | Notification - mention }}
* {{ msg - mw | Notification - mention - flyout }}
* {{ msg - mw | Notification - mention - email - batch - body }}
* {{ msg - mw | Notification - mention - email - subject }} ' ,
2012-10-28 16:47:41 +00:00
'notification-mention-email-batch-body' => ' E - mail notification batch body . Parameters :
* $ 1 is a username , plaintext . Can be used for gender support
2013-04-19 20:27:12 +00:00
* $ 2 is talk page title
See also :
* {{ msg - mw | Notification - mention }}
* {{ msg - mw | Notification - mention - flyout }}
* {{ msg - mw | Notification - mention - email - body }}
* {{ msg - mw | Notification - mention - email - subject }} ' ,
'notification-user-rights-email-subject' => ' E - mail subject for user rights notification
See also :
* {{ msg - mw | Notification - user - rights }}
* {{ msg - mw | Notification - user - rights - flyout }}
* {{ msg - mw | Notification - user - rights - email - batch - body }}
* {{ msg - mw | Notification - user - rights - email - body }} ' ,
2013-03-13 00:49:19 +00:00
'notification-user-rights-email-body' => ' E - mail notification . Parameters :
2013-03-27 20:43:18 +00:00
* $ 1 - a user name , plaintext . Can be used for gender support
* $ 2 - a semicolon separated list of {{ msg - mw | notification - user - rights - add }}, {{ msg - mw | notification - user - rights - remove }}
2013-04-19 20:27:12 +00:00
* $ 3 - the email footer
See also :
* {{ msg - mw | Notification - user - rights }}
* {{ msg - mw | Notification - user - rights - flyout }}
* {{ msg - mw | Notification - user - rights - email - batch - body }}
* {{ msg - mw | Notification - user - rights - email - subject }} ' ,
2013-03-13 00:49:19 +00:00
'notification-user-rights-email-batch-body' => ' Email notification batch body . Parameters :
* $ 1 is a user name , plaintext . Can be used for gender support
2013-03-22 20:04:44 +00:00
* $ 2 is a semicolon separated list of {{ msg - mw | notification - user - rights - add }}, {{ msg - mw | notification - user - rights - remove }} ' ,
2012-12-18 20:35:47 +00:00
'echo-notification-count' => ' {{ optional }}
The new notification count next to notification link , for example : 99 +
* $ 1 is the count ' ,
2012-11-27 01:53:35 +00:00
'echo-email-subject-default' => 'Default subject for Echo e-mail notifications' ,
'echo-email-body-default' => ' Default message content for Echo e - mail notifications .
2012-06-15 22:03:34 +00:00
* $ 1 is a plain text description of the notification . ' ,
2013-04-04 21:56:05 +00:00
'echo-email-batch-body-default' => 'Default message for Echo e-mail digest notifications' ,
2012-11-27 01:53:35 +00:00
'echo-email-footer-default' => ' Default footer content for Echo e - mail notifications . Parameters :
2012-12-18 01:50:00 +00:00
* $ 1 is the address of the organization that sent the e - mail
2012-12-18 20:35:47 +00:00
* $ 2 is " -------... " ({{ msg - mw | echo - email - batch - separator }}) ' ,
2012-06-01 10:57:09 +00:00
'echo-link-new' => ' Shown in " personal links " when a user has unread notifications .
* $ 1 is number of unread notifications ' ,
2013-01-13 20:36:48 +00:00
'echo-link' => ' Shown in " personal links " when a user has JS . New notifications are indicated with a badge .
{{ Identical | Notification }} ' ,
2013-03-29 20:37:31 +00:00
'echo-overlay-link' => ' Link to " all notifications " at the bottom of the overlay .
{{ Identical | All notifications }} ' ,
'echo-overlay-title' => ' Title at the top of the notifications overlay .
{{ Identical | Notification }} ' ,
2012-12-18 20:35:47 +00:00
'echo-overlay-title-overflow' => ' Title at the top of the notifications overlay when there are additional unread notifications that are not being shown . Parameters :
* $ 1 - the number of unread notifications being shown
2013-03-29 20:37:31 +00:00
* $ 2 - the total number of unread notifications that exist
{{ Identical | Notification }} ' ,
2013-04-19 20:27:12 +00:00
'echo-mark-all-as-read' => ' Text for button that marks all unread notifications as read . Keep this short as possible .
{{ Identical | Mark all as read }} ' ,
2013-04-18 19:43:00 +00:00
'echo-date-today' => " The header text for today's notification section.
{{ Identical | Today }} " ,
2012-12-11 22:52:15 +00:00
'echo-date-yesterday' => " The header text for yesterday's notification section " ,
2012-12-14 20:35:28 +00:00
'echo-date-header' => ' {{ optional }}
The header text for each notification section which is grouped by date
2012-12-11 22:52:15 +00:00
* $ 1 is the month , it could be {{ msg - mw | january - gen }}, {{ msg - mw | february - gen }}, {{ msg - mw | march - gen }}, {{ msg - mw | april - gen }}, {{ msg - mw | may - gen }}, {{ msg - mw | june - gen }}, {{ msg - mw | july - gen }}, {{ msg - mw | august - gen }}, {{ msg - mw | september - gen }}, {{ msg - mw | october - gen }}, {{ msg - mw | november - gen }}, {{ msg - mw | december - gen }}
2012-12-07 01:08:33 +00:00
* $ 2 is the date of a month , eg 21 ' ,
'echo-load-more-error' => 'Error message for errors in loading more notifications' ,
2013-04-11 20:21:12 +00:00
'notification-edit-talk-page-bundle' => ' Bundled message for edit - user - talk notification . Parameters :
2013-04-12 18:12:31 +00:00
* $ 1 - the username who performs the action , which can be used for gender support
* $ 2 - the username
* $ 3 - the count of other action performers , could be number or {{ msg - mw | echo - notification - count }}, eg , 7 others or 99 + others
2013-04-19 20:27:12 +00:00
* $ 4 - a number used for plural support
See also :
* {{ msg - mw | Notification - edit - talk - page2 }}
* {{ msg - mw | Notification - edit - talk - page - email - batch - body2 }}
* {{ msg - mw | Notification - edit - talk - page - email - subject2 }}
* {{ msg - mw | Notification - edit - talk - page - email - body2 }} ' ,
2013-04-11 20:21:12 +00:00
'notification-page-linked-bundle' => ' Bundled message for page - linked notification . Parameters :
2013-04-12 18:12:31 +00:00
* $ 1 - the username who performs the action , which can be used for gender support
* $ 2 - the page title
* $ 3 - the page linked from
* $ 4 - the count of other action performers , could be number or {{ msg - mw | echo - notification - count }}, eg , 7 others or 99 + others
2013-04-19 20:27:12 +00:00
* $ 5 - a number used for plural support
See also :
* {{ msg - mw | Notification - page - linked }}
* {{ msg - mw | Notification - page - linked - flyout }}
* {{ msg - mw | Notification - page - linked - email - batch - body }}
* {{ msg - mw | Notification - page - linked - email - subject }} ' ,
2013-04-11 20:21:12 +00:00
'notification-edit-user-talk-email-batch-bundle-body' => ' Bundled message for edit - user - talk email digest notification . Parameters :
2013-04-12 18:12:31 +00:00
* $ 1 - the username who performs the action , which can be used for gender support
* $ 2 - the count of other action performers , could be number or {{ msg - mw | echo - notification - count }}
2013-04-19 20:27:12 +00:00
* $ 3 - a number used for plural support
See also :
* {{ msg - mw | Notification - edit - talk - page2 }}
* {{ msg - mw | Notification - edit - talk - page - flyout2 }}
* {{ msg - mw | Notification - edit - talk - page - email - batch - body2 }}
* {{ msg - mw | Notification - edit - talk - page - email - subject2 }}
* {{ msg - mw | Notification - edit - talk - page - email - body2 }} ' ,
2013-04-11 20:21:12 +00:00
'notification-page-linked-email-batch-bundle-body' => ' Bundled message for page - linked email digest notification . Parameters :
2013-04-12 18:12:31 +00:00
* $ 1 - the username who performs the action , which can be used for gender support
* $ 2 - the link - to page title
* $ 3 - the link - from page title
* $ 4 - the cout of other link - from page title , can be number or {{ msg - mw | echo - notification - count }}
2013-04-19 20:27:12 +00:00
* $ 5 - a number used for plural support
See also :
* {{ msg - mw | Notification - page - linked }}
* {{ msg - mw | Notification - page - linked - flyout }}
* {{ msg - mw | Notification - page - linked - email - batch - body }}
* {{ msg - mw | Notification - page - linked - email - subject }}
* {{ msg - mw | Notification - page - linked - email - body }} ' ,
2012-12-14 20:35:28 +00:00
'echo-email-batch-separator' => ' {{ optional }}
Email batch content separator ' ,
'echo-email-batch-bullet' => '{{optional}}' ,
2012-11-27 01:53:35 +00:00
'echo-email-batch-subject-daily' => ' Daily e - mail batch subject .
2013-04-16 22:40:45 +00:00
* $ 1 is currently not used , could be a numeric count or " 10+ " . See also : {{ msg - mw | echo - notification - count | optional message | notext = 1 }} .
2012-12-29 19:39:13 +00:00
* $ 2 is a numeric count , this is used for plural support
See also :
* {{ msg - mw | Echo - email - batch - subject - weekly }} ' ,
2012-11-27 01:53:35 +00:00
'echo-email-batch-subject-weekly' => ' Weekly e - mail batch subject .
2013-04-16 22:40:45 +00:00
* $ 1 is currently not used , could be a numeric count or " 10+ " . See also : {{ msg - mw | echo - notification - count | optional message | notext = 1 }}
2012-12-29 19:39:13 +00:00
* $ 2 is a numeric count , this is used for plural support
See also :
2013-01-09 22:12:36 +00:00
* {{ msg - mw | Echo - email - batch - subject - daily }} ' ,
2012-11-27 01:53:35 +00:00
'echo-email-batch-body-daily' => ' Daily e - mail batch body . Parameters :
* $ 1 is a username
2013-04-16 22:40:45 +00:00
* $ 2 is currently not used , could be a numeric count or " 10+ " . See also : {{ msg - mw | echo - notification - count | optional message | notext = 1 }} .
2012-11-27 01:53:35 +00:00
* $ 3 is a numeric count , this is used for plural support
2012-12-14 20:35:28 +00:00
* $ 4 is the e - mail batch content separated by " -------... " ({{ msg - mw | echo - email - batch - separator }})
2013-01-13 20:36:48 +00:00
* $ 5 is the e - mail footer , {{ msg - mw | echo - email - footer - default }}
2013-01-09 22:12:36 +00:00
See also :
* {{ msg - mw | Echo - email - batch - body - weekly }} ' ,
2012-11-27 01:53:35 +00:00
'echo-email-batch-body-weekly' => ' Weekly e - mail batch body . Parameters :
* $ 1 is a username
2013-04-16 22:40:45 +00:00
* $ 2 is currently not used , could be a numeric count or " 10+ " . See also : {{ msg - mw | echo - notification - count | optional message | notext = 1 }} .
2012-11-27 01:53:35 +00:00
* $ 3 is a numeric count , this is used for plural support
2012-12-14 20:35:28 +00:00
* $ 4 is the e - mail batch content separated by " --------... " ({{ msg - mw | echo - email - batch - separator }})
2013-01-13 20:36:48 +00:00
* $ 5 is the e - mail footer , {{ msg - mw | echo - email - footer - default }}
2013-01-09 22:12:36 +00:00
See also :
* {{ msg - mw | Echo - email - batch - body - daily }} ' ,
2012-06-15 22:03:34 +00:00
);
2012-06-01 10:57:09 +00:00
2012-08-11 19:17:10 +00:00
/** Afrikaans ( Afrikaans )
* @ author Naudefj
*/
$messages [ 'af' ] = array (
'echo-no-agent' => '[Niemand]' ,
2012-10-22 01:14:40 +00:00
'echo-no-title' => '[Geen titel]' , # Fuzzy
2012-08-11 19:17:10 +00:00
'notifications' => 'Kennisgewings' ,
'echo-specialpage' => 'My kennisgewings' ,
);
/** Arabic ( العربية )
* @ author Meno25
2013-01-14 21:53:26 +00:00
* @ author Mido
2012-12-30 19:42:03 +00:00
* @ author Zanatos
2012-08-11 19:17:10 +00:00
*/
$messages [ 'ar' ] = array (
'notifications' => 'إخطارات' ,
'echo-specialpage' => 'إخطاراتي' ,
2013-01-14 21:53:26 +00:00
'echo-link' => 'إخطاراتي' ,
2012-08-11 19:17:10 +00:00
'echo-overlay-title' => 'إخطاراتي' ,
);
2012-12-25 20:04:33 +00:00
/** South Azerbaijani ( تورکجه )
* @ author Mousa
*/
$messages [ 'azb' ] = array (
'echo-desc' => 'بیلدیریش سیستِمی' ,
'prefs-echo' => 'بیلدیریلر' ,
'prefs-displaynotifications' => 'گؤرونتو سئچَنکلری' ,
'prefs-emailsubscriptions' => 'بیر کس بو ایشی گؤرنده منی ایمیل ایله بیلدیر' ,
2013-01-08 20:27:52 +00:00
'prefs-emailfrequency' => 'نئچه واختدان بیر من ایمیل ایله بیلدیری آلیرام' , # Fuzzy
2012-12-25 20:04:33 +00:00
'echo-pref-email-edit-user-talk' => 'منیم دانیشیق صحیفهمه یازیر' ,
'echo-pref-email-reverted' => 'منیم دَییشیکلیکلریمی قایتار' ,
'echo-pref-email-frequency-never' => 'منه هئچ بیلدیری ایمیلی گؤندرمه' ,
'echo-pref-email-frequency-immediately' => 'آیری آیری هر بیلدیری گلنده' ,
'echo-pref-email-frequency-daily' => 'گونلوک بیلدیریلرین بیر خولاصهسی' ,
'echo-pref-email-frequency-weekly' => 'هفتهلیک بیلدیریلرین بیر خولاصهسی' ,
'echo-pref-notify-hide-link' => 'بیلدیریلرین باغلانتی و نیشانینی منیم آراجچوبوغومدان گیزلت' ,
'echo-no-agent' => '[هئچ کیمسه]' ,
'echo-no-title' => '[هئچ صحیفه]' ,
'echo-error-no-formatter' => 'بیلدیری اوچون بیر فورمت تعریفی یوخدور' ,
'notifications' => 'بیلدیریلر' ,
'echo-specialpage' => 'منیم بیلدیریلریم' ,
'echo-anon' => 'بیلدیریلری آلماق اوچون، [[Special:Userlogin/signup|بیر حساب یارادین]] یادا [[Special:UserLogin|گیریش ائدین]].' ,
'echo-none' => 'سیزین بیلدیرینیز یوخدور.' ,
'notification-new-user' => '{{SITENAME}}-ه خوش گلمیسینیز، $1!' ,
2013-01-04 21:26:29 +00:00
'notification-new-user-content' => 'لوطفاً دانیشیق صحیفهلرینده یوروملارینیزی ۴ تیلدا (~~~~) ایله ایمضالاماغی اونوتمایین.' ,
2012-12-25 20:04:33 +00:00
'echo-email-subject-default' => '{{SITENAME}}-ده یئنی بیلدیری' ,
'echo-email-body-default' => ' سیزین {{ SITENAME }} - ده یئنی بیلدیرینیز واردیر :
$ 1 ' ,
'echo-email-footer-default' => ' $ 2
سیزه هانکی ایمیللرین گله بیلهجگینی دَییشمگه، باخین :
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
$ 1 ' ,
'echo-link-new' => '$1 یئنی {{PLURAL:$1|بیلدیری}}' ,
'echo-link' => 'بیلدیریلر' ,
'echo-overlay-link' => 'بوتون بیلدیریلر' ,
'echo-overlay-title' => 'منیم بیلدیریلریم' ,
'echo-overlay-title-overflow' => 'منیم بیلدیریلریم ($2 اوخونمامیشدان $1-ی گؤستریلیر)' ,
'echo-date-today' => 'بوگون' ,
'echo-date-yesterday' => 'دونن' ,
'echo-load-more-error' => 'آرتیق نتیجهلری گتیرنده بیر خطا قاباغا گلدی.' ,
'echo-email-batch-subject-daily' => 'سیزین بوگون $1 {{PLURAL:$2|بیلدیرینیز}} واردیر' ,
'echo-email-batch-subject-weekly' => 'سیزین بو هفته $1 {{PLURAL:$2|بیلدیرینیز}} واردیر' ,
'echo-email-batch-body-daily' => ' $ 1 ،
سیزین بوگون {{ SITENAME }} - ده $ 2 {{ PLURAL : $ 3 | بیلدیرینیز }} واردیر . اونلارا بوردان باخین :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
$ 5 ' ,
'echo-email-batch-body-weekly' => ' $ 1 ،
سیزین بو هفته {{ SITENAME }} - ده $ 2 {{ PLURAL : $ 3 | بیلدیرینیز }} واردیر . اونلارا بوردان باخین :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
$ 5 ' ,
'echo-email-batch-category-header-edit-user-talk' => '$1 دانیشیق صحیفه {{PLURAL:$1|مئساژی}}' ,
'echo-email-batch-category-header-edit-revert' => '$1 دَییشیکلیک {{PLURAL:$1|قایتاریلماسی}}' ,
'echo-email-batch-category-header-other' => '$1 {{PLURAL:$1|آیری}}' ,
);
2012-12-30 19:42:03 +00:00
/** Bashkir ( башҡортса )
* @ author Ләйсән
*/
$messages [ 'ba' ] = array (
'prefs-echo' => 'Белдереүҙәр' ,
2012-12-31 20:41:20 +00:00
'notifications' => 'Белдереүҙәр' ,
'tooltip-pt-notifications' => 'Һеҙҙең белдереүҙәр' ,
'echo-specialpage' => 'Минең белдереүҙәр' ,
'echo-link' => 'Белдереүҙәр' ,
'echo-overlay-link' => 'Бөтә белдереүҙәр' ,
'echo-overlay-title' => 'Минең белдереүҙәр' ,
2012-12-30 19:42:03 +00:00
);
2013-04-12 18:12:31 +00:00
/** Batak Toba ( Batak Toba )
* @ author WBT001Erin
*/
$messages [ 'bbc-latn' ] = array (
2013-04-18 19:43:00 +00:00
'echo-category-title-article-linked' => 'Alaman pangait' , # Fuzzy
2013-04-12 18:12:31 +00:00
'notification-page-linked-email-body' => 'Ida saluhut pangait to alaman on' , # Fuzzy
'notification-edit-user-talk-email-batch-bundle-body' => 'alaman panghataion' , # Fuzzy
'notification-page-linked-email-batch-bundle-body' => 'alaman/alamanalaman' , # Fuzzy
);
2012-10-02 13:41:36 +00:00
/** Belarusian ( Taraškievica orthography ) ( беларуская ( тарашкевіца ) )
2012-12-14 20:35:28 +00:00
* @ author Base
2012-06-17 20:16:45 +00:00
* @ author Wizardist
*/
$messages [ 'be-tarask' ] = array (
2012-10-17 19:32:14 +00:00
'echo-desc' => 'Сыстэма апавяшчэньняў' ,
2012-06-17 20:16:45 +00:00
'prefs-echo' => 'Абвесткі' ,
2013-01-10 21:07:13 +00:00
'prefs-displaynotifications' => 'Налады паказу' ,
2013-04-18 19:43:00 +00:00
'prefs-echosubscriptions' => 'Паведамляць мне пра гэтыя падзеі' ,
2013-02-24 20:36:41 +00:00
'echo-pref-web' => 'Праз сайт' ,
'echo-pref-email' => 'Праз пошту' ,
2013-01-10 21:07:13 +00:00
'echo-pref-email-frequency-never' => 'Н е дасылаць мне абвестак праз e-mail' ,
'echo-pref-email-frequency-immediately' => 'Асобна кожнае, калі зьяўляецца' ,
'echo-pref-email-frequency-daily' => 'Штодзённая зборка абвестак' ,
'echo-pref-email-frequency-weekly' => 'Штотыднёвая зборка абвестак' ,
2013-04-18 19:43:00 +00:00
'echo-pref-notify-show-link' => 'Паказваць апавяшчэньні ў маёй панэлі' ,
2013-02-24 20:36:41 +00:00
'echo-dismiss-button' => 'Схаваць' ,
'echo-dismiss-message' => 'Выключыць у с е апавяшчэньні пра $1' ,
2013-03-13 21:11:21 +00:00
'echo-dismiss-prefs-message' => 'Вы можаце ўключыць і х зноў у наладах' ,
2013-04-18 19:43:00 +00:00
'echo-category-title-edit-user-talk' => 'запісы ў гутарках' , # Fuzzy
'echo-category-title-article-linked' => 'Спасыланьне на старонку' , # Fuzzy
'echo-category-title-reverted' => 'Адкат праўкі' , # Fuzzy
'echo-category-title-mention' => 'Згадваньне' , # Fuzzy
'echo-category-title-other' => 'Іншае' , # Fuzzy
'echo-category-title-system' => 'Сыстэмнае' , # Fuzzy
2012-06-17 20:16:45 +00:00
'echo-no-agent' => '[Ніхто]' ,
2012-10-17 19:32:14 +00:00
'echo-no-title' => '[Няма старонкі]' ,
2013-01-10 21:07:13 +00:00
'echo-error-no-formatter' => 'Фарматаваньне для абвестак ня вызначана' ,
2013-02-24 20:36:41 +00:00
'echo-error-preference' => 'Памылка: не ўдалося захаваць наладу' ,
'echo-error-token' => 'Памылка: не ўдалося атрымаць токен удзельніка' ,
2012-06-17 20:16:45 +00:00
'notifications' => 'Абвесткі' ,
2013-01-10 21:07:13 +00:00
'tooltip-pt-notifications' => 'Вашыя абвесткі' ,
2013-04-18 19:43:00 +00:00
'echo-specialpage' => 'Абвесткі' ,
2012-08-09 19:26:11 +00:00
'echo-anon' => 'Для атрыманьня абвестак [[Special:Userlogin/signup|стварыце рахунак]] а б о [[Special:UserLogin|увайдзіце]].' ,
2013-01-10 21:07:13 +00:00
'echo-none' => 'Вы ня маеце абвестак.' ,
'echo-more-info' => 'Болей' ,
2013-04-18 19:43:00 +00:00
'echo-feedback' => 'Водгук' ,
2013-01-10 21:07:13 +00:00
'notification-edit-talk-page2' => '[[User:$1|$1]] {{GENDER:$1|напісаў|напісала}} на вашую [[User talk:$2|старонку гутарак]].' ,
'notification-edit-talk-page-flyout2' => '$1 {{GENDER:$1|напісаў|напісала}} на вашую [[User talk:$2|старонку гутарак]].' ,
2013-01-13 20:36:48 +00:00
'notification-add-comment2' => '[[User:$1|$1]] {{GENDER:$1|пакінуў|пакінула}} камэнтар у тэме «[[$3|$2]]» на старонцы абмеркаваньня «$4»' ,
'notification-add-talkpage-topic2' => '[[User:$1|$1]] {{GENDER:$1|стварыў|стварыла}} новую тэму «$2» у [[$3]]' ,
'notification-add-talkpage-topic-yours2' => '[[User:$1|$1]] {{GENDER:$1|даслаў|даслала}} вам паведамленьне: «[[$3#$2|$2]]»' ,
'notification-add-comment-yours2' => '[[User:$1|$1]] {{GENDER:$1|пакінуў|пакінула}} камэнтар у тэме «[[$3#$2|$2]]» на вашай старонцы гутарак' ,
2013-02-28 20:39:02 +00:00
'notification-mention' => '[[User:$1|$1]] {{GENDER:$1|згадаў|згадала}} вас на [[$3#$2|$3]].' ,
'notification-mention-flyout' => '$1 {{GENDER:$1|згадаў|згадала}} вас на [[$3#$2|$3]].' ,
2013-04-11 20:21:12 +00:00
'notification-new-user' => 'Вітаем у {{GRAMMAR:месны|{{SITENAME}}}}, $1!' , # Fuzzy
2013-01-13 20:36:48 +00:00
'notification-reverted2' => '[[User:$1|$1]] {{GENDER:$1|скасаваў|скасавала}} {{PLURAL:$4|вашую праўку|вашыя праўкі}} на старонцы [[$2]] $3' ,
'notification-reverted-flyout2' => '$1 {{GENDER:$1|скасаваў|скасавала}} {{PLURAL:$4|вашую праўку|вашыя праўкі}} на старонцы $2 $3' ,
2013-01-10 21:07:13 +00:00
'notification-edit-talk-page-email-subject2' => 'Вы маеце новае паведамленьне на старонцы гутарак' ,
2013-01-13 20:36:48 +00:00
'notification-edit-talk-page-email-body2' => ' {{ GENDER : $ 1 | Удзельнік | Удзельніца }} {{ GRAMMAR : родны | {{ SITENAME }}}} {{ GENDER : $ 1 | напісаў | напісала }} вам на старонку гутарак :
$ 3
Падрабязьней :
$ 2
2013-04-11 20:21:12 +00:00
$ 4 ' , # Fuzzy
2013-01-13 20:36:48 +00:00
'notification-edit-talk-page-email-batch-body2' => '$1 {{GENDER:$1|напісаў|напісала}} вам на старонку гутарак' ,
2013-01-24 20:58:22 +00:00
'notification-reverted-email-subject2' => '$1 {{GENDER:$1|скасаваў|скасавала}} {{PLURAL:$3|вашую праўку|вашыя праўкі}} ў «$2»' ,
2013-01-30 20:48:22 +00:00
'notification-reverted-email-body2' => ' $ 1 {{ GENDER : $ 1 | скасаваў | скасавала }} {{ PLURAL : $ 7 | вашую праўку | вашыя праўкі }} ў « $ 2 » .
$ 5
Падрабязьней :
$ 3
$ 6 ' ,
'notification-reverted-email-batch-body2' => '$1 {{GENDER:$1|скасаваў|скасавала}} {{PLURAL:$3|вашую праўку|вашыя праўкі}} ў «$2»' ,
2013-02-28 20:39:02 +00:00
'notification-mention-email-subject' => '$1 {{GENDER:$1|згадаў|згадала}} вас у {{GRAMMAR:месны|{{SITENAME}}}}' ,
'notification-mention-email-body' => ' {{ GENDER : $ 1 | Удзельнік | Удзельніца }} {{ GRAMMAR : родны | {{ SITENAME }}}} $ 1 {{ GENDER : $ 1 | згадаў | згадала }} вас у $ 2.
$ 3
Падрабязьней :
$ 4
$ 5 ' ,
'notification-mention-email-batch-body' => '$1 {{GENDER:$1|згадаў|згадала}} вас на $2' ,
2012-06-25 20:17:39 +00:00
'echo-email-subject-default' => 'Новая абвестка ад {{GRAMMAR:родны|{{SITENAME}}}}' ,
2012-07-01 13:53:29 +00:00
'echo-email-body-default' => ' Для вас ёсьць новая абвестка ў {{ GRAMMAR : месны | {{ SITENAME }}}} :
2013-01-30 20:48:22 +00:00
$ 1 ' ,
'echo-email-footer-default' => ' $ 2
К а б выбраць , якія лісты мы будзем дасылаць вам , наведайце :
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2013-04-18 19:43:00 +00:00
$ 1 ' , # Fuzzy
2012-07-01 13:53:29 +00:00
'echo-link-new' => '$1 {{PLURAL:$1|новая абвестка|новыя абвесткі|новых абвестак}}' ,
2013-01-13 20:36:48 +00:00
'echo-link' => 'Абвесткі' ,
2012-12-14 20:35:28 +00:00
'echo-overlay-link' => 'У с е абвесткі' ,
2013-04-11 20:21:12 +00:00
'echo-overlay-title' => 'М а е абвесткі' , # Fuzzy
'echo-overlay-title-overflow' => 'М а е абвесткі (паказаныя $1 з $2)' , # Fuzzy
2013-01-10 21:07:13 +00:00
'echo-date-today' => 'Сёньня' ,
'echo-date-yesterday' => 'Учора' ,
2013-01-13 20:36:48 +00:00
'echo-date-header' => '$2 $1' ,
2013-01-10 21:07:13 +00:00
'echo-load-more-error' => 'Узьнікла памылка ў час атрыманьня дадатковых вынікаў.' ,
2013-04-18 19:43:00 +00:00
'echo-email-batch-subject-daily' => 'Сёньня вы атрымалі $1 {{PLURAL:$2|абвестку|абвесткі|абвестак}}' , # Fuzzy
'echo-email-batch-subject-weekly' => 'Н а гэтым тыдні вы атрымалі $1 {{PLURAL:$2|абвестку|абвесткі|абвестак}}' , # Fuzzy
2013-01-30 20:48:22 +00:00
'echo-email-batch-body-daily' => ' $ 1 ,
Сёньня ў {{ GRAMMAR : месны | {{ SITENAME }}}} для вас маецца $ 2 {{ PLURAL : $ 3 | апавяшчэньне | апавяшчэньні | апавяшчэньняў }} . Праверыць і х можна тут :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-18 19:43:00 +00:00
$ 5 ' , # Fuzzy
2013-01-30 20:48:22 +00:00
'echo-email-batch-body-weekly' => ' $ 1 ,
Н а гэтым тыдні ў {{ GRAMMAR : месны | {{ SITENAME }}}} вы маеце $ 2 {{ PLURAL : $ 3 | апавяшчэньне | апавяшчэньні | апавяшчэньняў }} . Праверыць і х можна тут :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-18 19:43:00 +00:00
$ 5 ' , # Fuzzy
2012-06-17 20:16:45 +00:00
);
2013-02-22 20:11:31 +00:00
/** Bulgarian ( български )
* @ author DCLXVI
*/
$messages [ 'bg' ] = array (
'prefs-echo' => 'Известия' ,
'echo-pref-web' => 'У е б ' ,
'echo-pref-email' => 'Е -поща' ,
'notifications' => 'Известия' ,
2013-02-23 20:34:53 +00:00
'tooltip-pt-notifications' => 'Вашите известия' ,
2013-02-22 20:11:31 +00:00
'echo-specialpage' => 'Моите известия' ,
'echo-more-info' => 'Повече информация' ,
'echo-link' => 'Известия' ,
'echo-overlay-link' => 'Всички известия' ,
'echo-overlay-title' => 'Моите известия' ,
'echo-overlay-title-overflow' => 'Моите известия (показване на $1 от $2 непрочетени)' ,
'echo-date-today' => 'Днес' ,
'echo-date-yesterday' => 'Вчера' ,
'echo-load-more-error' => 'Възникна грешка при извличане на още резултати.' ,
);
2013-04-15 20:57:21 +00:00
/** Bengali ( বাংলা )
* @ author Aftab1995
*/
$messages [ 'bn' ] = array (
'notification-edit-talk-page-email-body2' => ' $ 1
$ 3
আরো দেখুন :
$ 2
$ 4 ' ,
);
2012-06-24 20:04:07 +00:00
/** Breton ( brezhoneg )
2013-02-18 20:55:25 +00:00
* @ author Fohanno
2012-06-24 20:04:07 +00:00
* @ author Fulup
2012-08-19 14:45:03 +00:00
* @ author Y - M D
2012-06-24 20:04:07 +00:00
*/
$messages [ 'br' ] = array (
2013-03-11 20:28:30 +00:00
'echo-pref-web' => 'Web' ,
2013-02-18 20:55:25 +00:00
'echo-pref-email' => 'Postel' ,
2013-03-11 20:28:30 +00:00
'echo-pref-email-frequency-never' => 'Arabat kas posteloù kemenn din' ,
'echo-dismiss-button' => 'Disteurel' ,
2012-06-24 20:04:07 +00:00
'echo-no-agent' => '[Den]' ,
2012-10-22 01:14:40 +00:00
'echo-no-title' => '[Diditl]' , # Fuzzy
2013-03-11 20:28:30 +00:00
'notifications' => 'Kemennoù' ,
'tooltip-pt-notifications' => 'Ho kemennoù' ,
'echo-specialpage' => " Ma c'hemennoù " ,
'echo-more-info' => " Gouzout hiroc'h " ,
2013-02-18 20:55:25 +00:00
'notification-new-user' => 'Degemer mat er {{SITENAME}}, $1!' ,
2013-02-11 20:17:41 +00:00
'echo-link-new' => '$1 {{PLURAL:$1|kemenn|kemenn}} nevez' , # Fuzzy
'echo-link' => 'Kemennoù' ,
'echo-overlay-link' => 'An holl gemennoù' ,
'echo-overlay-title' => " Ma c'hemennoù " ,
'echo-overlay-title-overflow' => " Va c'hemennoù (o tiskouez $ 1 diwar $ 2 nann-lennet) " ,
'echo-date-today' => 'Hiziv' ,
'echo-date-yesterday' => " Dec'h " ,
'echo-email-batch-subject-daily' => '$1 kemenn{{PLURAL:$2||}} nevez hiziv' , # Fuzzy
'echo-email-batch-subject-weekly' => '$1 kemenn{{PLURAL:$2||}} nevez ar sizhun-mañ' , # Fuzzy
'echo-email-batch-category-header-other' => '$1 {{PLURAL:$1|all|all}}' , # Fuzzy
2012-06-24 20:04:07 +00:00
);
2012-08-13 19:47:46 +00:00
/** Catalan ( català )
2013-01-31 20:41:41 +00:00
* @ author Pitort
2012-08-13 19:47:46 +00:00
* @ author පසිඳු කාවින්ද
*/
$messages [ 'ca' ] = array (
2013-01-31 20:41:41 +00:00
'echo-desc' => 'Sistema de notificacions' ,
'prefs-echo' => 'Notificacions' ,
'prefs-displaynotifications' => 'Opcions de visualització' ,
'prefs-emailsubscriptions' => " Avisa'm per e-mail quan algú " ,
2012-08-13 19:47:46 +00:00
'notifications' => 'Notificacions' ,
2013-01-31 20:41:41 +00:00
'tooltip-pt-notifications' => 'Les vostres modificacions' ,
'echo-specialpage' => 'Les meves notificacions' ,
'echo-none' => 'No heu rebut cap notificació' ,
'echo-more-info' => 'Més informació' ,
'echo-email-subject-default' => 'Notificació de nou a {{SITENAME}}' ,
'echo-email-body-default' => ' Teniu una nova notificació a {{ SITENAME }} :
$ 1 ' ,
'echo-link-new' => '$1 {{PLURAL:$1|nova notificació|noves notificacions}}' ,
'echo-link' => 'Notificacions' ,
'echo-overlay-link' => 'Totes les notificacions' ,
'echo-overlay-title' => 'Les meves notificacions' ,
'echo-overlay-title-overflow' => 'Les meves notificacions (mostrant $1 de $2 no llegides)' ,
'echo-date-today' => 'Avui' ,
'echo-date-yesterday' => 'Ahir' ,
'echo-load-more-error' => " S'ha produït un error en obtenir més resultats. " ,
'echo-email-batch-subject-daily' => " Teniu $ 1 { { PLURAL: $ 2|notificació|notificacions}} d'avui " ,
'echo-email-batch-subject-weekly' => " Teniu $ 1 { { PLURAL: $ 2|notificació|notificacions}} d'aquesta setmana " ,
'echo-email-batch-category-header-edit-user-talk' => '$1 pàgina de discussió {{PLURAL:$1|missatge|missatges}}' ,
2012-08-13 19:47:46 +00:00
);
2013-03-10 21:32:35 +00:00
/** Sorani Kurdish ( کوردی )
* @ author Calak
*/
$messages [ 'ckb' ] = array (
'echo-pref-email' => 'ئیمەیل' ,
);
2012-08-09 19:26:11 +00:00
/** Czech ( česky )
* @ author Chmee2
2012-08-10 19:18:21 +00:00
* @ author Jkjk
2012-08-13 19:47:46 +00:00
* @ author Mormegil
2012-12-31 20:41:20 +00:00
* @ author Vks
2012-08-09 19:26:11 +00:00
*/
$messages [ 'cs' ] = array (
2012-11-19 20:16:30 +00:00
'echo-desc' => 'Notifikační systém' ,
2012-08-09 19:26:11 +00:00
'prefs-echo' => 'Upozornění' ,
2013-04-19 20:27:12 +00:00
'prefs-emailsettings' => 'Nastavení e-mailu' ,
2012-12-31 20:41:20 +00:00
'prefs-displaynotifications' => 'Možnosti zobrazení' ,
2013-04-19 20:27:12 +00:00
'prefs-echosubscriptions' => 'Upozorněte mě na…' ,
'echo-pref-send-me' => 'Posílejte mi:' ,
'echo-pref-send-to' => 'Posílat na:' ,
2013-03-11 20:28:30 +00:00
'echo-pref-web' => 'Web' ,
'echo-pref-email' => 'E-mail' ,
2013-01-08 20:27:52 +00:00
'echo-pref-email-frequency-never' => 'Neposílejte mi žádná upozornění e-mailem' ,
'echo-pref-email-frequency-immediately' => 'Jednotlivá upozornění, jakmile se objeví' ,
'echo-pref-email-frequency-daily' => 'Denní souhrn upozornění' ,
'echo-pref-email-frequency-weekly' => 'Týdenní souhrn upozornění' ,
2013-04-19 20:27:12 +00:00
'echo-pref-notify-show-link' => 'Zobrazovat upozornění v panelu nástrojů' ,
2013-04-02 19:02:29 +00:00
'echo-dismiss-button' => 'Zavřít' ,
'echo-dismiss-message' => 'Vypnout všechna upozornění na $1' ,
'echo-dismiss-prefs-message' => 'Znovu zapnout si je můžete v Nastavení' ,
2013-04-19 20:27:12 +00:00
'echo-category-title-edit-user-talk' => '{{PLURAL:$1|příspěvek|příspěvky}} v diskusi' ,
'echo-category-title-article-linked' => '{{PLURAL:$1|odkaz|odkazy}} na stránku' ,
'echo-category-title-reverted' => '{{PLURAL:$1|vrácenou úpravu|vrácené úpravy}}' ,
'echo-category-title-mention' => '{{PLURAL:$1|zmínku|zmínky}}' ,
'echo-category-title-other' => '{{PLURAL:$1|jinou událost|jiné události}}' ,
'echo-category-title-system' => '{{PLURAL:$1|systémovou událost|systémové události}}' ,
2012-08-09 19:26:11 +00:00
'echo-no-agent' => '[Nikdo]' ,
2012-11-19 20:16:30 +00:00
'echo-no-title' => '[Žádná stránka]' ,
2013-01-08 20:27:52 +00:00
'echo-error-no-formatter' => 'Upozornění nemá definováno formátování' ,
2013-04-02 19:02:29 +00:00
'echo-error-preference' => 'Chyba: Nepodařilo se uložit uživatelské nastavení' ,
'echo-error-token' => 'Chyba: Nepodařilo se získat uživatelský token' ,
2012-08-09 19:26:11 +00:00
'notifications' => 'Upozornění' ,
2012-12-31 20:41:20 +00:00
'tooltip-pt-notifications' => 'Vaše upozornění' ,
2013-04-02 19:02:29 +00:00
'echo-specialpage' => 'Upozornění' ,
2012-08-11 19:17:10 +00:00
'echo-anon' => 'Pro zobrazování upozornění je nutné [[Special:Userlogin/signup|vytvořit si účet]] nebo [[Special:UserLogin|se přihlásit]].' ,
2013-03-11 20:28:30 +00:00
'echo-none' => 'Nemáte žádné upozornění.' ,
'echo-more-info' => 'Více informací' ,
2013-04-19 20:27:12 +00:00
'echo-feedback' => 'Názor' ,
'notification-edit-talk-page2' => '[[User:$1|$1]] vám {{GENDER:$1|napsal|napsala}} na [[User talk:$2|vaši diskusní stránku]].' ,
'notification-edit-talk-page-flyout2' => '$1 vám {{GENDER:$1|napsal|napsala}} na [[User talk:$2|vaši diskusní stránku]].' ,
'notification-page-linked' => 'Do stránky [[$3|$3]] {{GENDER:$1|byl přidán}} odkaz na stránku [[$2|$2]]: [[Special:WhatLinksHere/$2|Zobrazit všechny odkazy na tuto stránku]]' ,
'notification-page-linked-flyout' => 'Do stránky $3 {{GENDER:$1|byl přidán}} odkaz na stránku $2: [[Special:WhatLinksHere/$2|Zobrazit všechny odkazy na tuto stránku]]' ,
'notification-add-comment2' => '[[User:$1|$1]] {{GENDER:$1|přidal|přidala}} komentář k „[[$3|$2]]“ na stránce „$4“' ,
'notification-add-talkpage-topic2' => '[[User:$1|$1]] {{GENDER:$1|přidal|přidala}} komentář na nové téma „$2“ na stránce „[[$3]]“' ,
'notification-add-talkpage-topic-yours2' => '[[User:$1|$1]] vám {{GENDER:$1|poslal|poslala}} zprávu: „[[$3#$2|$2]]“' ,
'notification-add-comment-yours2' => '[[User:$1|$1]] {{GENDER:$1|přidal|přidala}} komentář k „[[$3#$2|$2]]“ na vaší diskusní stránce' ,
'notification-mention' => '[[User:$1|$1]] vás {{GENDER:$1|zmínil|zmínila}} v diskusi [[$3#$2|$3]]' ,
'notification-mention-flyout' => '$1 vás {{GENDER:$1|zmínil|zmínila}} v diskusi [[$3#$2|$3]]' ,
'notification-user-rights' => '[[User:$1|$1]] [[Special:Log/rights/$1|{{GENDER:$1|změnil|změnila}}]] vaše uživatelská práva. $2. [[Special:ListGroupRights|Více informací]]' ,
'notification-user-rights-flyout' => '$1 {{GENDER:$1|změnil|změnila}} vaše uživatelská práva. $2. [[Special:ListGroupRights|Více informací]]' ,
'notification-user-rights-add' => 'Nyní patříte do {{PLURAL:$2|této skupiny|těchto skupin}}: $1' ,
'notification-user-rights-remove' => 'Nadále už nepatříte do {{PLURAL:$2|této skupiny|těchto skupin}}: $1' ,
'notification-new-user' => 'Vítejte na {{grammar:6sg|{{SITENAME}}}}, $1! Těší nás, že jste tu.' ,
'notification-reverted2' => '[[User:$1|$1]] {{GENDER:$1|revertoval|revertovala}} {{PLURAL:$4|vaši editaci|vaše editace}} stránky [[$2]] $3' ,
'notification-reverted-flyout2' => '$1 {{GENDER:$1|revertoval|revertovala}} {{PLURAL:$4|vaši editaci|vaše editace}} stránky $2 $3' ,
'notification-edit-talk-page-email-subject2' => 'V diskusi máte novou zprávu' ,
'notification-edit-talk-page-email-body2' => ' $ 1
$ 3
Podrobnosti :
$ 2
$ 4 ' ,
'notification-edit-talk-page-email-batch-body2' => '$1 vám {{GENDER:$1|napsal|napsala}} na vaši diskusní stránku' ,
'notification-page-linked-email-subject' => 'Na {{grammar:6sg|{{SITENAME}}}} někdo odkázal na vámi založenou stránku' ,
'notification-page-linked-email-body' => ' $ 1
Zobrazit všechny odkazy na tuto stránku :
{{ canonicalurl : {{ #special:WhatLinksHere/$2}}}}
$ 3 ' ,
'notification-page-linked-email-batch-body' => 'Do stránky $3 {{GENDER:$1|byl přidán}} odkaz na stránku $2' ,
'notification-reverted-email-subject2' => '$1 {{GENDER:$1|revertoval|revertovala}} {{PLURAL:$3|vaši editaci|vaše editace}} stránky $2' ,
'notification-reverted-email-body2' => ' $ 1 {{ GENDER : $ 1 | revertoval | revertovala }} {{ PLURAL : $ 7 | vaši editaci | vaše editace }} stránky $ 2.
$ 5
Podrobnosti :
$ 3
$ 6 ' ,
'notification-reverted-email-batch-body2' => '$1 {{GENDER:$1|revertoval|revertovala}} {{PLURAL:$3|vaši editaci|vaše editace}} stránky $2.' ,
'notification-mention-email-subject' => '$1 vás na {{grammar:6sg|{{SITENAME}}}} {{GENDER:$1|zmínil|zmínila}}' ,
'notification-mention-email-body' => ' {{ GENDER : $ 1 | Uživatel | Uživatelka }} $ 1 na {{ grammar : 6 sg | {{ SITENAME }}}} vás {{ GENDER : $ 1 | zmínil | zmínila }} v diskusi $ 2.
$ 3
Podrobnosti :
$ 4
$ 5 ' ,
'notification-mention-email-batch-body' => '$1 vás {{GENDER:$1|zmínil|zmínila}} v diskusi $2' ,
'notification-user-rights-email-subject' => 'Na {{grammar:6sg|{{SITENAME}}}} byla změněna vaše uživatelská práva' ,
'notification-user-rights-email-body' => ' $ 1 {{ GENDER : $ 1 | změnil | změnila }} vaše uživatelská práva . $ 2
Více informací :
{{ canonicalurl : {{ #special:ListGroupRights}}}}
$ 3 ' ,
'notification-user-rights-email-batch-body' => '$1 {{GENDER:$1|změnil|změnila}} vaše uživatelská práva. $2' ,
2013-01-08 20:27:52 +00:00
'echo-email-subject-default' => 'Nové upozornění na {{grammar:6sg|{{SITENAME}}}}' ,
'echo-email-body-default' => ' Na {{ grammar : 6 sg | {{ SITENAME }}}} máte nové upozornění :
$ 1 ' ,
2013-04-19 20:27:12 +00:00
'echo-email-batch-body-default' => 'Máte nové upozornění' ,
2013-01-08 20:27:52 +00:00
'echo-email-footer-default' => ' $ 2
2013-04-19 20:27:12 +00:00
Posílání e - mailů si můžete přizpůsobit v nastavení :
2013-01-08 20:27:52 +00:00
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2012-08-11 19:17:10 +00:00
$ 1 ' ,
'echo-link-new' => '$1 {{PLURAL:$1|nové upozornění|nová upozornění|nových upozornění}}' ,
2013-04-02 19:02:29 +00:00
'echo-link' => 'Upozornění' ,
2013-01-08 20:27:52 +00:00
'echo-overlay-link' => 'Všechna upozornění' ,
2013-04-02 19:02:29 +00:00
'echo-overlay-title' => 'Upozornění' ,
'echo-overlay-title-overflow' => 'Upozornění (zobrazuje se $1 z $2 nepřečtených)' ,
2013-04-19 20:27:12 +00:00
'echo-mark-all-as-read' => 'Označit vše jako přečtené' ,
2013-01-08 20:27:52 +00:00
'echo-date-today' => 'Dnes' ,
'echo-date-yesterday' => 'Včera' ,
'echo-load-more-error' => 'Při načítání dalších výsledků došlo k chybě.' ,
2013-04-19 20:27:12 +00:00
'notification-edit-talk-page-bundle' => '$1 a $3 {{PLURAL:$4|další}} vám napsali na [[User talk:$2|vaši diskusní stránku]].' ,
'notification-page-linked-bundle' => 'Do stránky $3 a $4 {{PLURAL:$5|další stránky|dalších stránek}} {{GENDER:$1|byly přidány}} odkazy na stránku $2: [[Special:WhatLinksHere/$2|Zobrazit všechny odkazy na tuto stránku]]' ,
'notification-edit-user-talk-email-batch-bundle-body' => '$1 a $2 {{PLURAL:$3|další}} vám napsali na vaši diskusní stránku' ,
'notification-page-linked-email-batch-bundle-body' => 'Do stránky $3 a $4 {{PLURAL:$5|další stránky|dalších stránek}} {{GENDER:$1|byly přidány}} odkazy na stránku $2' ,
'echo-email-batch-subject-daily' => 'Dnes máte {{PLURAL:$2|nové|nová}} upozornění' ,
'echo-email-batch-subject-weekly' => 'Tento týden máte {{PLURAL:$2|nové|nová}} upozornění' ,
'echo-email-batch-body-daily' => ' {{ GENDER : $ 1 | Vážený uživateli | Vážená uživatelko }} $ 1 ,
na {{ grammar : 6 sg | {{ SITENAME }}}} dnes máte {{ PLURAL : $ 3 | nové oznámení | nová oznámení }} . Můžete si je prohlédnout na :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
$ 5 ' ,
'echo-email-batch-body-weekly' => ' {{ GENDER : $ 1 | Vážený uživateli | Vážená uživatelko }} $ 1 ,
na {{ grammar : 6 sg | {{ SITENAME }}}} máte tento týden {{ PLURAL : $ 3 | nové oznámení | nová oznámení }} . Můžete si je prohlédnout na :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
$ 5 ' ,
2012-08-09 19:26:11 +00:00
);
2012-12-23 21:49:55 +00:00
/** Danish ( dansk )
2012-12-29 19:39:13 +00:00
* @ author Christian List
2012-12-23 21:49:55 +00:00
* @ author Tjernobyl
*/
$messages [ 'da' ] = array (
'prefs-echo' => 'Meddelelser' ,
2012-12-29 19:39:13 +00:00
'prefs-emailsubscriptions' => 'Giv mig besked via e-mail, når nogen' ,
2012-12-23 21:49:55 +00:00
'echo-no-agent' => '[Ingen]' ,
'echo-no-title' => '[Ingen side]' ,
'notifications' => 'Meddelelser' ,
'echo-specialpage' => 'Mine meddelelser' ,
'echo-link' => 'Meddelelser' ,
'echo-overlay-link' => 'Alle meddelelser' ,
'echo-overlay-title' => 'Mine meddelelser' ,
'echo-overlay-title-overflow' => 'Mine meddelelser (viser $1 af $2 ulæste)' ,
'echo-date-today' => 'I dag' ,
'echo-date-yesterday' => 'I går' ,
);
2012-06-15 22:03:34 +00:00
/** German ( Deutsch )
* @ author Kghbln
2012-08-01 20:04:58 +00:00
* @ author Metalhead64
2012-06-15 22:03:34 +00:00
*/
$messages [ 'de' ] = array (
2013-01-06 20:09:24 +00:00
'echo-desc' => 'Ermöglicht ein Benachrichtigungssystem' ,
2012-06-15 22:03:34 +00:00
'prefs-echo' => 'Benachrichtigungen' ,
2013-04-18 19:43:00 +00:00
'prefs-emailsettings' => 'E-Mail-Einstellungen' ,
2012-12-04 21:05:46 +00:00
'prefs-displaynotifications' => 'Anzeigeoptionen' ,
2013-04-12 18:12:31 +00:00
'prefs-echosubscriptions' => 'Mich bei diesen Ereignissen benachrichtigen' ,
2013-04-18 19:43:00 +00:00
'echo-pref-send-me' => 'Sende mir:' ,
'echo-pref-send-to' => 'Senden an:' ,
2013-02-13 20:59:03 +00:00
'echo-pref-web' => 'Web' ,
'echo-pref-email' => 'E-Mail' ,
2013-01-04 21:26:29 +00:00
'echo-pref-email-frequency-never' => 'Keine Benachrichtigungen' ,
'echo-pref-email-frequency-immediately' => 'Individuelle Benachrichtigung zu jedem Ereignis' ,
2013-01-06 20:09:24 +00:00
'echo-pref-email-frequency-daily' => 'Tägliche Benachrichtigung zu den Ereignissen' ,
'echo-pref-email-frequency-weekly' => 'Wöchentliche Benachrichtigung zu den Ereignissen' ,
2013-04-18 19:43:00 +00:00
'echo-pref-notify-show-link' => 'Benachrichtigungen in meiner Werkzeugleiste anzeigen' ,
2013-02-13 20:59:03 +00:00
'echo-dismiss-button' => 'Ausblenden' ,
2013-02-14 20:29:43 +00:00
'echo-dismiss-message' => 'Alle „$1“-Benachrichtigungen abschalten' ,
2013-03-06 21:51:05 +00:00
'echo-dismiss-prefs-message' => 'Du kannst dies in deinen Einstellungen wieder aktivieren' ,
2013-04-19 20:27:12 +00:00
'echo-category-title-edit-user-talk' => '{{PLURAL:$1|Diskussionsseitennachricht|Diskussionsseitennachrichten}}' ,
'echo-category-title-article-linked' => '{{PLURAL:$1|Seitenverlinkung|Seitenverlinkungen}}' ,
'echo-category-title-reverted' => '{{PLURAL:$1|Rückgängigmachung einer Bearbeitung|Rückgängigmachungen von Bearbeitungen}}' ,
'echo-category-title-mention' => '{{PLURAL:$1|Erwähnung|Erwähnungen}}' ,
'echo-category-title-other' => '{{PLURAL:$1|Andere}}' ,
'echo-category-title-system' => '{{PLURAL:$1|System}}' ,
2012-06-15 22:03:34 +00:00
'echo-no-agent' => '[Niemand]' ,
2012-10-15 20:06:24 +00:00
'echo-no-title' => '[Keine Seite]' ,
2012-11-02 19:56:47 +00:00
'echo-error-no-formatter' => 'Keine Formatierung zur Benachrichtigung definiert' ,
2013-02-15 20:32:50 +00:00
'echo-error-preference' => 'Fehler: Benutzereinstellung konnte nicht festgelegt werden.' ,
'echo-error-token' => 'Fehler: Benutzertoken konnte nicht abgerufen werden' ,
2012-06-15 22:03:34 +00:00
'notifications' => 'Benachrichtigungen' ,
2012-12-29 19:39:13 +00:00
'tooltip-pt-notifications' => 'Deine Benachrichtigungen' ,
2013-03-29 20:37:31 +00:00
'echo-specialpage' => 'Benachrichtigungen' ,
2012-08-06 19:26:34 +00:00
'echo-anon' => 'Um Benachrichtigungen erhalten zu können, muss man ein [[Special:Userlogin/signup|Benutzerkonto anlegen]] oder sich [[Special:UserLogin|anmelden]].' ,
2012-12-18 20:35:47 +00:00
'echo-none' => 'Du hast keine Benachrichtigungen.' ,
2013-01-09 22:12:36 +00:00
'echo-more-info' => 'Mehr Informationen' ,
2013-04-16 19:44:42 +00:00
'echo-feedback' => 'Rückmeldung' ,
2013-01-09 22:12:36 +00:00
'notification-edit-talk-page2' => '[[User:$1|$1]] {{GENDER:$1|hinterließ}} eine Nachricht auf deiner [[User talk:$2|Diskussionsseite]].' ,
'notification-edit-talk-page-flyout2' => '$1 {{GENDER:$1|hinterließ}} eine Nachricht auf deiner [[User talk:$2|Diskussionsseite]].' ,
2013-04-05 22:26:28 +00:00
'notification-page-linked' => '[[$2|$2]] wurde von der Seite [[$3|$3]] {{GENDER:$1|verlinkt}}: [[Special:WhatLinksHere/$2|Alle Links auf diese Seite ansehen]]' ,
'notification-page-linked-flyout' => '$2 wurde von der Seite $3 {{GENDER:$1|verlinkt}}: [[Special:WhatLinksHere/$2|Alle Links auf diese Seite ansehen]]' ,
2013-01-09 22:12:36 +00:00
'notification-add-comment2' => '[[User:$1|$1]] {{GENDER:$1|kommentierte}} auf „[[$3|$2]]“ auf der Diskussionsseite von „$4“' ,
'notification-add-talkpage-topic2' => '[[User:$1|$1]] {{GENDER:$1|startete}} das neue Thema „$2“ auf [[$3]]' ,
'notification-add-talkpage-topic-yours2' => '[[User:$1|$1]] hat dir eine Nachricht {{GENDER:$1|gesandt}}: „[[$3#$2|$2]]“' ,
'notification-add-comment-yours2' => '[[User:$1|$1]] {{GENDER:$1|kommentierte}} auf „[[$3#$2|$2]]“ auf deiner Diskussionsseite' ,
2013-02-25 21:05:32 +00:00
'notification-mention' => '[[User:$1|$1]] {{GENDER:$1|erwähnte}} dich auf „[[$3#$2|$3]]“.' ,
'notification-mention-flyout' => '$1 {{GENDER:$1|erwähnte}} dich auf „[[$3#$2|$3]]“.' ,
2013-04-11 20:21:12 +00:00
'notification-user-rights' => 'Deine Benutzerrechte [[Special:Log/rights/$1|wurden von [[User:$1|$1]] {{GENDER:$1|geändert}}]]. $2. [[Special:ListGroupRights|Mehr erfahren]]' ,
2013-03-22 20:04:44 +00:00
'notification-user-rights-flyout' => 'Deine Benutzerrechte wurden von $1 {{GENDER:$1|geändert}}. $2. [[Special:ListGroupRights|Mehr erfahren]]' ,
'notification-user-rights-add' => 'Du bist jetzt Mitglied dieser {{PLURAL:$2|Gruppe|Gruppen}}: $1' ,
'notification-user-rights-remove' => 'Du bist nicht länger Mitglied dieser {{PLURAL:$2|Gruppe|Gruppen}}: $1' ,
2013-04-05 22:26:28 +00:00
'notification-new-user' => 'Willkommen bei {{SITENAME}}, $1! Wir freuen uns, dass du hier bist.' ,
2013-01-09 22:12:36 +00:00
'notification-reverted2' => 'Deine {{PLURAL:$4|Bearbeitung an der Seite [[$2]] wurde|Bearbeitungen an der Seite [[$2]] wurden}} von [[User:$1|$1]] {{GENDER:$1|rückgängig}} gemacht. $3' ,
'notification-reverted-flyout2' => 'Deine {{PLURAL:$4|Bearbeitung an der Seite $2 wurde|Bearbeitungen an der Seite $2 wurden}} von $1 {{GENDER:$1|rückgängig}} gemacht. $3' ,
'notification-edit-talk-page-email-subject2' => 'Du hast eine neue Diskussionsseitennachricht' ,
2013-04-12 18:12:31 +00:00
'notification-edit-talk-page-email-body2' => ' $ 1
2012-06-15 22:03:34 +00:00
2013-01-09 22:12:36 +00:00
$ 3
2012-06-15 22:03:34 +00:00
2013-01-04 21:26:29 +00:00
Mehr :
2012-11-02 19:56:47 +00:00
2013-01-09 22:12:36 +00:00
$ 2
2012-06-15 22:03:34 +00:00
2013-04-12 18:12:31 +00:00
$ 4 ' ,
2013-01-09 22:12:36 +00:00
'notification-edit-talk-page-email-batch-body2' => '$1 {{GENDER:$1|hinterließ}} eine Nachricht auf deiner Diskussionsseite' ,
2013-04-05 22:26:28 +00:00
'notification-page-linked-email-subject' => 'Eine Seite, die du angelegt hast, wurde auf {{SITENAME}} verlinkt' ,
2013-04-12 18:12:31 +00:00
'notification-page-linked-email-body' => ' $ 1
2013-04-05 22:26:28 +00:00
Alle Links auf diese Seite ansehen :
{{ canonicalurl : {{ #special:WhatLinksHere/$2}}}}
2013-04-12 18:12:31 +00:00
$ 3 ' ,
2013-04-05 22:26:28 +00:00
'notification-page-linked-email-batch-body' => '$2 wurde von der Seite $3 {{GENDER:$1|verlinkt}}' ,
2013-01-09 22:12:36 +00:00
'notification-reverted-email-subject2' => 'Deine {{PLURAL:$3|Bearbeitung an der Seite $2 wurde|Bearbeitungen an der Seite $2 wurden}} von $1 {{GENDER:$1|rückgängig}} gemacht' ,
'notification-reverted-email-body2' => ' Deine {{ PLURAL : $ 7 | Bearbeitung an der Seite $ 2 wurde | Bearbeitungen an der Seite $ 2 wurden }} von $ 1 {{ GENDER : $ 1 | rückgängig }} gemacht .
2012-11-02 19:56:47 +00:00
2013-01-09 22:12:36 +00:00
$ 5
2012-11-02 19:56:47 +00:00
2013-01-04 21:26:29 +00:00
Mehr :
2012-11-02 19:56:47 +00:00
2013-01-09 22:12:36 +00:00
$ 3
2012-11-02 19:56:47 +00:00
2013-01-09 22:12:36 +00:00
$ 6 ' ,
'notification-reverted-email-batch-body2' => 'Deine {{PLURAL:$3|Bearbeitung an der Seite $2 wurde|Bearbeitungen an der Seite $2 wurden}} von $1 {{GENDER:$1|rückgängig}} gemacht' ,
2013-02-25 21:05:32 +00:00
'notification-mention-email-subject' => '$1 {{GENDER:$1|erwähnte}} dich auf {{SITENAME}}' ,
'notification-mention-email-body' => ' {{ GENDER : $ 1 | Der {{ SITENAME }} - Benutzer | Die {{ SITENAME }} - Benutzerin }} $ 1 hat dich auf der Seite „ $ 2 “ erwähnt .
$ 3
Mehr :
$ 4
$ 5 ' ,
'notification-mention-email-batch-body' => '$1 {{GENDER:$1|erwähnte}} dich auf „$2“' ,
2013-03-22 20:04:44 +00:00
'notification-user-rights-email-subject' => 'Deine Benutzerrechte auf {{SITENAME}} wurden geändert.' ,
'notification-user-rights-email-body' => ' Deine Benutzerrechte wurden von $ 1 {{ GENDER : $ 1 | geändert }} . $ 2
Mehr ansehen :
{{ canonicalurl : {{ #special:ListGroupRights}}}}
$ 3 ' ,
'notification-user-rights-email-batch-body' => 'Deine Benutzerrechte wurden von $1 {{GENDER:$1|geändert}}. $2' ,
2012-06-15 22:03:34 +00:00
'echo-email-subject-default' => 'Neue Benachrichtigung auf {{SITENAME}}' ,
'echo-email-body-default' => ' Es gibt eine neue Benachrichtigung auf {{ SITENAME }} :
2012-12-02 20:41:24 +00:00
$ 1 ' ,
2013-04-06 19:50:26 +00:00
'echo-email-batch-body-default' => 'Du hast eine neue Benachrichtigung' ,
2012-12-18 20:35:47 +00:00
'echo-email-footer-default' => ' $ 2
2012-12-02 20:41:24 +00:00
2013-04-18 19:43:00 +00:00
Um zu kontrollieren , welche E - Mails wir dir senden , überprüfe bitte deine Einstellungen :
2012-12-02 20:41:24 +00:00
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2012-06-15 22:03:34 +00:00
$ 1 ' ,
2012-07-02 22:12:04 +00:00
'echo-link-new' => '$1 neue {{PLURAL:$1|Benachrichtigung|Benachrichtigungen}}' ,
2012-11-06 20:57:54 +00:00
'echo-link' => 'Benachrichtigungen' ,
2012-12-12 21:12:57 +00:00
'echo-overlay-link' => 'Alle Benachrichtigungen' ,
2013-03-29 20:37:31 +00:00
'echo-overlay-title' => 'Benachrichtigungen' ,
'echo-overlay-title-overflow' => 'Benachrichtigungen ($1 von $2 ungelesenen werden angezeigt)' ,
2013-04-19 20:27:12 +00:00
'echo-mark-all-as-read' => 'Alle als gelesen markieren' ,
2012-12-11 22:52:15 +00:00
'echo-date-today' => 'Heute' ,
'echo-date-yesterday' => 'Gestern' ,
'echo-load-more-error' => 'Beim Abrufen mehrerer Ergebnisse ist ein Fehler aufgetreten.' ,
2013-04-05 22:26:28 +00:00
'notification-edit-talk-page-bundle' => '$1 und {{PLURAL:$4|ein weiterer Benutzer|$3 weitere Benutzer}} {{GENDER:$1|hinterließen}} Nachrichten auf deiner [[User talk:$2|Diskussionsseite]].' ,
'notification-page-linked-bundle' => '$2 wurde von $3 und {{PLURAL:$5|einer weiteren Seite|$4 weiteren Seiten}} {{GENDER:$1|verlinkt}}. [[Special:WhatLinksHere/$2|Alle Links auf diese Seite ansehen]]' ,
2013-04-12 18:12:31 +00:00
'notification-edit-user-talk-email-batch-bundle-body' => '$1 und {{PLURAL:$3|ein weiterer Benutzer|$2 weitere Benutzer}} {{GENDER:$1|hinterließen}} eine Nachricht auf deiner Diskussionsseite' ,
'notification-page-linked-email-batch-bundle-body' => '$2 wurde von $3 und {{PLURAL:$5|einer weiteren Seite|$4 weiteren Seiten}} {{GENDER:$1|verlinkt}}' ,
2013-04-19 20:27:12 +00:00
'echo-email-batch-subject-daily' => 'Du hast heute {{PLURAL:$2|eine neue Benachrichtigung|neue Benachrichtigungen}}' ,
'echo-email-batch-subject-weekly' => 'Du hast diese Woche {{PLURAL:$2|eine neue Benachrichtigung|neue Benachrichtigungen}}' ,
2012-12-14 20:35:28 +00:00
'echo-email-batch-body-daily' => ' $ 1 ,
2013-04-19 20:27:12 +00:00
du hast heute {{ PLURAL : $ 3 | eine neue Benachrichtigung | neue Benachrichtigungen }} auf {{ SITENAME }} . Sehe sie hier ein :
2012-12-14 20:35:28 +00:00
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-19 20:27:12 +00:00
$ 5 ' ,
2012-12-14 20:35:28 +00:00
'echo-email-batch-body-weekly' => ' $ 1 ,
2013-04-19 20:27:12 +00:00
du hast diese Woche {{ PLURAL : $ 3 | eine neue Benachrichtigung | neue Benachrichtigungen }} auf {{ SITENAME }} . Sehe sie hier ein :
2012-12-14 20:35:28 +00:00
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-19 20:27:12 +00:00
$ 5 ' ,
2012-06-15 22:03:34 +00:00
);
2012-10-02 13:41:36 +00:00
/** German ( formal address ) ( Deutsch ( Sie - Form ) )
2012-06-15 22:03:34 +00:00
* @ author Kghbln
*/
$messages [ 'de-formal' ] = array (
2013-01-10 21:07:13 +00:00
'prefs-emailfrequency' => 'Wann möchten Sie E-Mail-Benachrichtigungen erhalten?' ,
2013-03-28 19:04:47 +00:00
'prefs-echosubscriptions' => 'Benachrichtigen Sie mich, wenn jemand …' ,
2013-01-04 21:26:29 +00:00
'echo-none' => 'Sie haben in letzter Zeit keine Benachrichtigungen erhalten.' , # Fuzzy
2012-06-15 22:03:34 +00:00
);
2012-08-05 19:27:45 +00:00
/** Zazaki ( Zazaki )
* @ author Erdemaslancan
2012-10-22 01:14:40 +00:00
* @ author Mirzali
2012-08-05 19:27:45 +00:00
*/
$messages [ 'diq' ] = array (
2012-08-19 14:45:03 +00:00
'prefs-echo' => 'Tebliği' ,
2012-10-22 01:14:40 +00:00
'echo-no-title' => '[Pele Çı niya]' ,
2012-08-19 14:45:03 +00:00
'notifications' => 'Tebliği' ,
'echo-specialpage' => 'Tebliğê me' ,
2012-11-20 20:50:24 +00:00
'echo-link' => 'Tebliği' ,
2013-01-27 17:36:02 +00:00
'echo-overlay-link' => 'Tebliği pêro...' , # Fuzzy
2012-08-19 14:45:03 +00:00
'echo-overlay-title' => 'Tebliğê me' ,
2012-08-05 19:27:45 +00:00
);
2012-08-09 19:26:11 +00:00
/** Greek ( Ελληνικά )
2012-11-02 19:56:47 +00:00
* @ author Aitolos
2012-08-09 19:26:11 +00:00
* @ author Glavkos
2013-01-06 20:09:24 +00:00
* @ author Protnet
2012-12-22 22:08:46 +00:00
* @ author ZaDiak
2012-08-09 19:26:11 +00:00
*/
$messages [ 'el' ] = array (
2012-12-22 22:08:46 +00:00
'echo-desc' => 'Σύστημα ειδοποιήσεων' ,
2012-08-09 19:26:11 +00:00
'prefs-echo' => 'Ειδοποιήσεις' ,
2012-12-22 22:08:46 +00:00
'prefs-displaynotifications' => 'Επιλογές εμφάνισης' ,
2013-01-08 20:27:52 +00:00
'prefs-emailfrequency' => 'Πόσο συχνά λαμβάνω ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου' , # Fuzzy
2013-02-13 20:59:03 +00:00
'prefs-echosubscriptions' => 'Ειδοποιήστε με όταν κάποιος...' ,
'echo-pref-web' => 'Διαδίκτυο' ,
'echo-pref-email' => 'Ηλεκτρονικό Ταχυδρομείο' ,
'echo-pref-subscription-edit-user-talk' => 'Δημοσιεύσεις στη σελίδα συζήτησής μου' ,
'echo-pref-subscription-article-linked' => 'Δημιουργεί σύνδεσμο με μια σελίδα που δημιούργησα' ,
'echo-pref-subscription-reverted' => 'Αναστρέφει την επεξεργασία μου' ,
2012-12-29 19:39:13 +00:00
'echo-pref-email-frequency-never' => 'Μην μου στέλνετε ειδοποιήσεις μέσω ηλεκτρονικού ταχυδρομείου' ,
2013-01-01 20:21:34 +00:00
'echo-pref-email-frequency-daily' => 'Μ ι α ημερήσια σύνοψη ειδοποιήσεων' ,
'echo-pref-email-frequency-weekly' => 'Μ ι α εβδομαδιαία σύνοψη ειδοποιήσεων' ,
2013-02-13 20:59:03 +00:00
'echo-dismiss-title-edit-user-talk' => 'Ανάρτηση σελίδας συζήτησης' ,
2012-08-10 19:18:21 +00:00
'echo-no-agent' => '[Κανένας]' ,
2012-11-02 19:56:47 +00:00
'echo-no-title' => '[Χωρίς σελίδα]' ,
2012-08-10 19:18:21 +00:00
'notifications' => 'Ειδοποιήσεις' ,
2012-12-29 19:39:13 +00:00
'tooltip-pt-notifications' => 'Ο ι ειδοποιήσεις σας' ,
2012-08-10 19:18:21 +00:00
'echo-specialpage' => 'Ο ι ειδοποιήσεις μου' ,
2012-12-29 19:39:13 +00:00
'echo-anon' => 'Για ν α λαμβάνετε ειδοποιήσεις, [[Special:Userlogin/signup|δημιουργήστε ένα λογαριασμό]] ή [[Special:UserLogin|συνδεθείτε]].' ,
'echo-none' => 'Δεν έχετε ειδοποιήσεις.' ,
'notification-new-user' => 'Καλώς ήρθατε στο {{SITENAME}}, $1!' ,
'echo-email-subject-default' => 'Νέα ειδοποίηση στο {{SITENAME}}' ,
2012-11-06 20:57:54 +00:00
'echo-link' => 'Ο ι ειδοποιήσεις μου' , # Fuzzy
2012-12-22 22:08:46 +00:00
'echo-overlay-link' => 'Όλες ο ι ειδοποιήσεις...' , # Fuzzy
2012-08-10 19:18:21 +00:00
'echo-overlay-title' => 'Ο ι ειδοποιήσεις μου' ,
2012-12-22 22:08:46 +00:00
'echo-date-today' => 'Σήμερα' ,
'echo-date-yesterday' => 'Χθες' ,
2013-02-13 20:59:03 +00:00
'echo-email-batch-category-header-other' => '$1 {{PLURAL:$1|άλλος|άλλοι}}' ,
2012-08-09 19:26:11 +00:00
);
2013-03-06 21:51:05 +00:00
/** British English ( British English )
* @ author Shirayuki
*/
$messages [ 'en-gb' ] = array (
'echo-email-batch-category-header-other' => '$1 uncategorised {{PLURAL:$1|notification|notifications}}' ,
);
2012-08-13 19:47:46 +00:00
/** Esperanto ( Esperanto )
* @ author Yekrats
*/
$messages [ 'eo' ] = array (
2012-12-23 21:49:55 +00:00
'echo-no-agent' => '[Neniu]' ,
'echo-no-title' => '[Sen Paĝo]' ,
'notification-new-user' => 'Bonvenon al {{SITENAME}}, $1!' ,
2012-08-13 19:47:46 +00:00
'echo-email-body-default' => ' Vi havas novan noton ĉe {{ SITENAME }} :
$ 1 ' ,
'echo-link-new' => '$1 {{PLURAL:$1|nova noto|novaj notoj}}' ,
2012-12-23 21:49:55 +00:00
'echo-link' => 'Miaj notoj' , # Fuzzy
'echo-overlay-link' => 'Ĉiuj notoj...' , # Fuzzy
2012-08-13 19:47:46 +00:00
'echo-overlay-title' => 'Miaj notoj' ,
2012-12-23 21:49:55 +00:00
'echo-date-today' => 'Hodiaŭ' ,
'echo-date-yesterday' => 'Hieraŭ' ,
'echo-email-batch-category-header-edit-user-talk' => '$1 Diskuto-paĝo {{PLURAL:$1|mesaĝo|mesaĝoj}}' ,
'echo-email-batch-category-header-edit-revert' => '$1 {{PLURAL:$1|malfaro de redakto|malfaroj de redaktoj}}' ,
'echo-email-batch-category-header-other' => '{{PLURAL:$1|Alia|$1 Aliaj}}' ,
2012-08-13 19:47:46 +00:00
);
2012-06-17 20:16:45 +00:00
/** Spanish ( español )
* @ author Armando - Martin
2013-02-13 20:59:03 +00:00
* @ author Fitoschido
2013-01-12 20:27:14 +00:00
* @ author Invadinado
2012-11-12 21:02:03 +00:00
* @ author Ralgis
2012-12-31 20:41:20 +00:00
* @ author TheBITLINK
2012-11-02 19:56:47 +00:00
* @ author Vivaelcelta
2012-06-17 20:16:45 +00:00
*/
$messages [ 'es' ] = array (
2012-10-16 19:18:08 +00:00
'echo-desc' => 'Sistema de notificaciones' ,
2012-06-17 20:16:45 +00:00
'prefs-echo' => 'Notificaciones' ,
2012-12-04 21:05:46 +00:00
'prefs-displaynotifications' => 'Opciones de visualización' ,
2013-01-08 20:27:52 +00:00
'prefs-emailfrequency' => '¿Con qué frecuencia recibo notificaciones por correo electrónico?' , # Fuzzy
2013-02-13 20:59:03 +00:00
'prefs-echosubscriptions' => 'Notificarme cuando alguien…' ,
'echo-pref-web' => 'Web' ,
'echo-pref-email' => 'Correo electrónico' ,
'echo-pref-subscription-edit-user-talk' => 'Publique en mi página de discusión' ,
'echo-pref-subscription-article-linked' => 'Cree un enlace a una página que yo creé' ,
'echo-pref-subscription-reverted' => 'Revierte mi edición' ,
2012-12-15 23:54:58 +00:00
'echo-pref-email-frequency-never' => 'No me envíes notificaciones por correo electrónico' ,
'echo-pref-email-frequency-immediately' => 'Enviarme las notificaciones individuales en cuanto lleguen' ,
'echo-pref-email-frequency-daily' => 'Un resumen diario de notificaciones' ,
'echo-pref-email-frequency-weekly' => 'Un resumen semanal de las notificaciones' ,
'echo-pref-notify-hide-link' => 'Ocultar el enlace y la insignia para las notificaciones en mi barra de herramientas' ,
2013-02-13 20:59:03 +00:00
'echo-dismiss-button' => 'Ocultar' ,
2012-06-17 20:16:45 +00:00
'echo-no-agent' => '[Nadie]' ,
2012-10-16 19:18:08 +00:00
'echo-no-title' => '[No hay ninguna página]' ,
2012-11-02 19:56:47 +00:00
'echo-error-no-formatter' => 'Sin formato definido para notificaciones' ,
2013-02-14 20:29:43 +00:00
'echo-error-preference' => '<b>Error:</b> No se pudo establecer $1.' , # Fuzzy
2012-06-17 20:16:45 +00:00
'notifications' => 'Notificaciones' ,
2012-12-31 20:41:20 +00:00
'tooltip-pt-notifications' => 'Notificaciones' ,
2012-06-17 20:16:45 +00:00
'echo-specialpage' => 'Mis notificaciones' ,
2012-08-06 19:26:34 +00:00
'echo-anon' => 'Para recibir notificaciones, [[Special:Userlogin/signup|crea una cuenta]] o [[Special:UserLogin|inicia sesión]].' ,
2012-12-31 20:41:20 +00:00
'echo-none' => 'No tienes notificaciones' ,
2013-01-12 20:27:14 +00:00
'echo-more-info' => 'Más información' ,
2012-09-05 19:19:12 +00:00
'notification-new-user' => '¡Bienvenido a {{SITENAME}}, $1!' ,
2013-01-04 21:26:29 +00:00
'notification-new-user-content' => 'Recuerda firmar cualquier comentario en las páginas de discusión con 4 tildes (~ ~ ~ ~).' ,
2012-06-17 20:16:45 +00:00
'echo-email-subject-default' => 'Nueva notificación en {{SITENAME}}' ,
'echo-email-body-default' => ' Tienes una nueva notificación en {{ SITENAME }} :
2012-12-02 20:41:24 +00:00
$ 1 ' ,
2012-12-31 20:41:20 +00:00
'echo-email-footer-default' => ' $ 2
2012-12-02 20:41:24 +00:00
2012-12-31 20:41:20 +00:00
Para controlar los emails que te enviamos , visita :
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2012-12-02 20:41:24 +00:00
2012-12-31 20:41:20 +00:00
$ 1 ' ,
2012-07-02 22:12:04 +00:00
'echo-link-new' => '$1 {{PLURAL:$1|notificación nueva|notificaciones nuevas}}' ,
2012-11-12 21:02:03 +00:00
'echo-link' => 'Notificaciones' ,
2012-12-15 23:54:58 +00:00
'echo-overlay-link' => 'Todas las notificaciones' ,
2012-06-17 20:16:45 +00:00
'echo-overlay-title' => 'Mis notificaciones' ,
2012-12-31 20:41:20 +00:00
'echo-overlay-title-overflow' => 'Notificaciones: (Mostrando $1 de $2 sin leer)' ,
2012-12-15 23:54:58 +00:00
'echo-date-today' => 'Hoy' ,
'echo-date-yesterday' => 'Ayer' ,
'echo-load-more-error' => 'Se ha producido un error al intentar obtener más resultados.' ,
'echo-email-batch-subject-daily' => 'Hoy tienes $1 {{PLURAL:$2|notificación|notificaciones}}' ,
'echo-email-batch-subject-weekly' => 'Esta semana tienes $1 {{PLURAL:$2|notificación|notificaciones}}' ,
'echo-email-batch-body-daily' => ' $ 1 ,
Hoy tienes $ 2 {{ PLURAL : $ 3 | notificación | notificaciones }} en {{ SITENAME }} . Verlas aquí :
{ canonicalurl : {{ #special:Notifications}}}
$ 4
$ 5 ' ,
'echo-email-batch-body-weekly' => ' $ 1 ,
Esta semana tienes $ 2 {{ PLURAL : $ 3 | notificación | notificaciones }} en {{ SITENAME }} . Verlas aquí :
{ canonicalurl : {{ #special:Notifications}}}
$ 4
$ 5 ' ,
'echo-email-batch-category-header-edit-user-talk' => '$1 {{PLURAL:$1|mensaje|mensajes}} en la página de discusión' ,
'echo-email-batch-category-header-edit-revert' => 'Editar $1 {{PLURAL:$1|edición revertida|ediciones revertidas}}' ,
'echo-email-batch-category-header-other' => '$1 {{PLURAL:$1|Otro|Otros}}' ,
2012-06-17 20:16:45 +00:00
);
2012-08-10 19:18:21 +00:00
/** Estonian ( eesti )
* @ author Avjoska
* @ author Pikne
*/
$messages [ 'et' ] = array (
2012-12-25 20:04:33 +00:00
'prefs-echo' => 'Teavitused' ,
'prefs-displaynotifications' => 'Kuvaseaded' ,
2012-08-10 19:18:21 +00:00
'echo-no-agent' => '[Eikeegi]' ,
2012-12-26 21:07:31 +00:00
'echo-no-title' => '[Lehekülge pole]' ,
2012-12-25 20:04:33 +00:00
'notifications' => 'Teavitused' ,
2013-03-29 20:37:31 +00:00
'echo-specialpage' => 'Teavitused' ,
2012-12-25 20:04:33 +00:00
'echo-anon' => 'Et teavitusi saada, [[Special:Userlogin/signup|loo konto]] või [[Special:UserLogin|logi sisse]].' ,
2013-04-15 20:57:21 +00:00
'notification-new-user' => 'Tere tulemast saidile {{SITENAME}}, $1! Meil on hea meel, et siin oled.' ,
2012-12-25 20:04:33 +00:00
'echo-link-new' => '$1 {{PLURAL:$1|uus teavitus|uut teavitust}}' ,
'echo-link' => 'Teavitused' ,
'echo-overlay-link' => 'Kõik teavitused' ,
2013-03-29 20:37:31 +00:00
'echo-overlay-title' => 'Teavitused' ,
2012-12-22 22:08:46 +00:00
'echo-date-today' => 'Täna' ,
'echo-date-yesterday' => 'Eile' ,
2012-08-10 19:18:21 +00:00
);
2012-08-09 19:26:11 +00:00
/** Persian ( فارسی )
* @ author Mjbmr
*/
$messages [ 'fa' ] = array (
2012-08-10 19:18:21 +00:00
'prefs-echo' => 'اعلامیهها' ,
2012-12-22 22:08:46 +00:00
'prefs-displaynotifications' => 'گزینههای نمایش' ,
2012-08-09 19:26:11 +00:00
'echo-no-agent' => '[هیچ کس]' ,
2012-10-22 01:14:40 +00:00
'echo-no-title' => '[بدون عنوان]' , # Fuzzy
2012-08-09 19:26:11 +00:00
'echo-email-body-default' => ' شما در {{ SITENAME }} اعلان جدید دارید :
$ 1 ' ,
2012-12-22 22:08:46 +00:00
'echo-link' => 'اعلامیههای من' , # Fuzzy
'echo-overlay-link' => 'همهٔ اعلامیهها...' , # Fuzzy
2012-08-10 19:18:21 +00:00
'echo-overlay-title' => 'اعلامیههای من' ,
2012-12-22 22:08:46 +00:00
'echo-date-today' => 'امروز' ,
'echo-date-yesterday' => 'دیروز' ,
2012-08-09 19:26:11 +00:00
);
2012-08-06 19:26:34 +00:00
/** Finnish ( suomi )
2012-10-16 19:18:08 +00:00
* @ author Crt
2012-11-28 20:15:32 +00:00
* @ author Nedergard
2012-08-06 19:26:34 +00:00
* @ author Nike
2013-04-02 19:02:29 +00:00
* @ author Silvonen
2012-12-26 21:07:31 +00:00
* @ author VezonThunder
2012-08-06 19:26:34 +00:00
*/
$messages [ 'fi' ] = array (
2012-10-16 19:18:08 +00:00
'echo-desc' => 'Ilmoitusjärjestelmä' ,
2012-08-06 19:26:34 +00:00
'prefs-echo' => 'Ilmoitukset' ,
2012-12-09 20:25:32 +00:00
'prefs-displaynotifications' => 'Näyttöasetukset' ,
2012-12-27 21:19:24 +00:00
'echo-pref-email-frequency-never' => 'Älä lähetä minulle sähköposti-ilmoituksia' ,
'echo-pref-email-frequency-immediately' => 'Yksittäisiä ilmoituksia niiden tullessa' ,
'echo-pref-email-frequency-daily' => 'Päivittäinen yhteenveto ilmoituksista' ,
'echo-pref-email-frequency-weekly' => 'Viikottainen yhteenveto ilmoituksista' ,
2012-08-06 19:26:34 +00:00
'echo-no-agent' => '[Ei kukaan]' ,
'echo-no-title' => '[Ei sivua]' ,
2012-12-27 21:19:24 +00:00
'echo-error-no-formatter' => 'Ilmoitukselle ei ole määritetty muotoilua' ,
2012-08-06 19:26:34 +00:00
'notifications' => 'Ilmoitukset' ,
'echo-specialpage' => 'Ilmoitukset' ,
2012-11-28 20:15:32 +00:00
'echo-anon' => 'Jos haluat saada ilmoituksia, [[Special:Userlogin/signup|luo käyttäjätunnus]] tai [[Special:UserLogin|kirjaudu sisään]].' ,
2012-12-20 20:43:13 +00:00
'echo-none' => 'Ei uusia ilmoituksia.' ,
2013-04-12 18:12:31 +00:00
'notification-add-talkpage-topic-yours2' => '[[User:$1|$1]] {{GENDER:$1|lähetti}} sinulle viestin: ”[[$3#$2|$2]]”' ,
'notification-mention' => '[[User:$1|$1]] {{GENDER:$1|mainitsi}} sinut sivulla [[$3#$2|$3]].' ,
'notification-user-rights-add' => 'Olet nyt {{PLURAL:$2|tämän ryhmän|näiden ryhmien}} jäsen: $1' ,
'notification-user-rights-remove' => 'Et ole enää {{PLURAL:$2|tämän ryhmän|näiden ryhmien}} jäsen: $1' ,
2013-04-04 19:58:34 +00:00
'notification-new-user' => 'Tervetuloa sivustolle {{SITENAME}}, $1!' , # Fuzzy
2013-04-12 18:12:31 +00:00
'notification-mention-email-batch-body' => '$1 {{GENDER:$1|mainitsi}} sinut sivulla $2' ,
2012-12-27 21:19:24 +00:00
'echo-email-subject-default' => 'Uusi ilmoitus sivustolla {{SITENAME}}' ,
'echo-email-body-default' => ' Sinulle on uusi ilmoitus sivustolla {{ SITENAME }} :
$ 1 ' ,
'echo-email-footer-default' => ' $ 2
Hallitaksesi sitä , mitä sähköposteja lähetämme sinulle , käy sivulla :
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2013-04-18 19:43:00 +00:00
$ 1 ' , # Fuzzy
2012-12-27 21:19:24 +00:00
'echo-link-new' => '$1 {{PLURAL:$1|uusi ilmoitus|uutta ilmoitusta}}' ,
2012-11-28 20:15:32 +00:00
'echo-link' => 'Ilmoitukset' ,
2012-12-14 20:35:28 +00:00
'echo-overlay-link' => 'Kaikki ilmoitukset' ,
2012-08-06 19:26:34 +00:00
'echo-overlay-title' => 'Ilmoitukset' ,
2013-04-02 19:02:29 +00:00
'echo-overlay-title-overflow' => 'Ilmoitukset (näytetään $1/$2 lukematonta)' ,
2012-12-14 20:35:28 +00:00
'echo-date-today' => 'Tänään' ,
'echo-date-yesterday' => 'Eilen' ,
2012-12-27 21:19:24 +00:00
'echo-load-more-error' => 'Virhe haettaessa lisää tuloksia.' ,
2013-04-18 19:43:00 +00:00
'echo-email-batch-subject-daily' => 'Sinulle on $1 {{PLURAL:$2|ilmoitus|ilmoitusta}} tänään' , # Fuzzy
'echo-email-batch-subject-weekly' => 'Sinulle on $1 {{PLURAL:$2|ilmoitus|ilmoitusta}} tällä viikolla' , # Fuzzy
2012-12-27 21:19:24 +00:00
'echo-email-batch-body-daily' => ' $ 1 ,
Sinulle on $ 2 {{ PLURAL : $ 3 | ilmoitus | ilmoitusta }} sivustolla {{ SITENAME }} tänään . Katso ne täällä :
$ 4
2013-04-18 19:43:00 +00:00
$ 5 ' , # Fuzzy
2012-12-27 21:19:24 +00:00
'echo-email-batch-body-weekly' => ' $ 1 ,
Sinulle on $ 2 {{ PLURAL : $ 3 | ilmoitus | ilmoitusta }} sivustolla {{ SITENAME }} tällä viikolla . Katso ne täällä :
$ 4
2013-04-18 19:43:00 +00:00
$ 5 ' , # Fuzzy
2012-08-06 19:26:34 +00:00
);
2012-06-17 20:16:45 +00:00
/** French ( français )
2012-11-03 23:21:18 +00:00
* @ author Crochet . david
2012-06-17 20:16:45 +00:00
* @ author DavidL
2012-11-06 20:57:54 +00:00
* @ author Gomoko
2012-11-03 23:21:18 +00:00
* @ author Hello71
2012-08-05 19:27:45 +00:00
* @ author IAlex
2012-08-03 16:18:35 +00:00
* @ author Jean - Frédéric
2013-04-06 19:50:26 +00:00
* @ author Metroitendo
2013-03-28 19:04:47 +00:00
* @ author Peter17
2012-07-02 22:12:04 +00:00
* @ author Tititou36
2013-04-15 20:57:21 +00:00
* @ author Urhixidur
2013-03-29 20:37:31 +00:00
* @ author Wyz
2012-06-17 20:16:45 +00:00
*/
$messages [ 'fr' ] = array (
2012-10-29 21:47:33 +00:00
'echo-desc' => 'Système de notifications' ,
2012-06-17 20:16:45 +00:00
'prefs-echo' => 'Notifications' ,
2013-04-18 19:43:00 +00:00
'prefs-emailsettings' => 'Paramètres de courriel' ,
2012-12-04 21:05:46 +00:00
'prefs-displaynotifications' => " Options d'affichage " ,
2013-04-12 18:12:31 +00:00
'prefs-echosubscriptions' => 'Me prévenir de ces événements' ,
2013-04-18 19:43:00 +00:00
'echo-pref-send-me' => " M'envoyer : " ,
'echo-pref-send-to' => 'Envoyer à :' ,
2013-02-13 20:59:03 +00:00
'echo-pref-web' => 'Web' ,
'echo-pref-email' => 'Courriel' ,
2012-12-17 21:25:38 +00:00
'echo-pref-email-frequency-never' => " Ne pas m'envoyer de notification par courriel " ,
'echo-pref-email-frequency-immediately' => " Notifications individuelles au fil de l'eau " ,
'echo-pref-email-frequency-daily' => 'Un sommaire quotidien des notifications' ,
'echo-pref-email-frequency-weekly' => 'Un sommaire hebdomadaire des notifications' ,
2013-04-18 19:43:00 +00:00
'echo-pref-notify-show-link' => " Afficher les notifications dans ma barre d'outils " ,
2013-02-13 20:59:03 +00:00
'echo-dismiss-button' => 'Rejeter' ,
2013-02-14 20:29:43 +00:00
'echo-dismiss-message' => 'Désactiver toutes les $1 notifications' ,
2013-03-06 21:51:05 +00:00
'echo-dismiss-prefs-message' => 'Vous pouvez les remettre en place dans les Préférences' ,
2013-04-19 20:27:12 +00:00
'echo-category-title-edit-user-talk' => '{{PLURAL:$1|Message}} de la page de discussion' ,
'echo-category-title-article-linked' => 'Article {{PLURAL:$1|lié}}' ,
2013-04-18 19:43:00 +00:00
'echo-category-title-reverted' => 'Modification annulée' , # Fuzzy
'echo-category-title-mention' => 'Mention' , # Fuzzy
2013-04-19 20:27:12 +00:00
'echo-category-title-other' => '{{PLURAL:$1|Autres}}' ,
'echo-category-title-system' => '{{PLURAL:$1|Système}}' ,
2012-06-17 20:16:45 +00:00
'echo-no-agent' => '[Personne]' ,
2012-10-29 21:47:33 +00:00
'echo-no-title' => '[Aucune page]' ,
2012-11-03 23:21:18 +00:00
'echo-error-no-formatter' => 'Aucune mise en forme définies pour la notification' ,
2013-04-15 20:57:21 +00:00
'echo-error-preference' => 'Erreur : Impossible de définir la préférence utilisateur' ,
'echo-error-token' => 'Erreur : Impossible de récupérer le jeton de l’ utilisateur' ,
2012-06-17 20:16:45 +00:00
'notifications' => 'Notifications' ,
2012-12-31 20:41:20 +00:00
'tooltip-pt-notifications' => 'Vos notifications' ,
2013-03-29 20:37:31 +00:00
'echo-specialpage' => 'Notifications' ,
2012-08-06 19:26:34 +00:00
'echo-anon' => 'Pour recevoir des notifications, [[Special:Userlogin/signup|créez un compte]] ou [[Special:UserLogin|connectez-vous]].' ,
2012-12-18 20:35:47 +00:00
'echo-none' => " Vous n'avez reçu aucune notification. " ,
2013-01-09 22:12:36 +00:00
'echo-more-info' => " Plus d'information " ,
2013-04-16 19:44:42 +00:00
'echo-feedback' => 'Avis' ,
2013-01-09 22:12:36 +00:00
'notification-edit-talk-page2' => '[[User:$1|$1]] {{GENDER:$1|a publié}} sur votre [[User talk:$2|page de discussion]].' ,
'notification-edit-talk-page-flyout2' => '$1 {{GENDER:$1|a publié}} sur votre [[User talk:$2|page de discussion]].' ,
2013-04-05 22:26:28 +00:00
'notification-page-linked' => '[[$2|$2]] a été {{GENDER:$1|référencé}} depuis [[$3|$3]]: [[Special:WhatLinksHere/$2|Voir tous les liens vers cette page]]' ,
'notification-page-linked-flyout' => '$2 a été {{GENDER:$1|référencé}} depuis $3: [[Special:WhatLinksHere/$2|Voir tous les liens vers cette page]]' ,
2013-01-09 22:12:36 +00:00
'notification-add-comment2' => '[[User:$1|$1]] {{GENDER:$1|a fait un commentaire}} sur "[[$3|$2]]" sur la page de discussion "$4"' ,
'notification-add-talkpage-topic2' => '[[User:$1|$1]] {{GENDER:$1|a publié}} un nouveau sujet "$2" sur [[$3]]' ,
'notification-add-talkpage-topic-yours2' => '[[User:$1|$1]] vous {{GENDER:$1|a envoyé}} un message: "[[$3#$2|$2]]"' ,
'notification-add-comment-yours2' => '[[User:$1|$1]] {{GENDER:$1|a fait un commentaire}} sur "[[$3#$2|$2]]" sur votre page de discussion' ,
2013-02-25 21:05:32 +00:00
'notification-mention' => '[[User:$1|$1]] vous {{GENDER:$1|a mentionné}} sur [[$3#$2|$3]].' ,
'notification-mention-flyout' => '$1 vous {{GENDER:$1|a mentionné}} sur [[$3#$2|$3]].' ,
2013-04-12 18:12:31 +00:00
'notification-user-rights' => 'Vos droits d’ utilisateur [[Special:Log/rights/$1|ont été {{GENDER:$1|modifiés}}]] par [[User:$1|$1]]. $2. [[Special:ListGroupRights|En savoir plus]]' ,
2013-03-22 20:04:44 +00:00
'notification-user-rights-flyout' => 'Vos droits d’ utilisateur {{GENDER:$1|ont été modifiés}} par $1. $2. [[Special:ListGroupRights|En savoir plus]]' ,
'notification-user-rights-add' => 'Vous êtes maintenant membre de {{PLURAL:$2|ce groupe|ces groupes}}: $1' ,
'notification-user-rights-remove' => 'Vous n’ êtes plus membre de {{PLURAL:$2|ce groupe|ces groupes}}: $1' ,
2013-04-05 22:26:28 +00:00
'notification-new-user' => 'Bienvenue sur {{SITENAME}}, $1 ! Nous sommes heureux de vous voir ici.' ,
2013-01-09 22:12:36 +00:00
'notification-reverted2' => '{{PLURAL:$4|Votre modification sur [[$2]] a|Vos modifications sur [[$2]] ont}} été {{GENDER:$1|annulée}}{{PLURAL:$4||s}} par [[User:$1|$1]] $3' ,
'notification-reverted-flyout2' => '{{PLURAL:$4|Votre modification sur $2 a|Vos modifications sur $2 ont}} été {{GENDER:$1|annulée}}{{PLURAL:$4||s}} par $1 $3' ,
'notification-edit-talk-page-email-subject2' => 'Vous avez un nouveau message sur votre page de discussion' ,
2013-04-12 18:12:31 +00:00
'notification-edit-talk-page-email-body2' => ' $ 1
2012-11-03 23:21:18 +00:00
2012-12-18 20:35:47 +00:00
$ 3
2012-06-17 20:16:45 +00:00
2013-01-04 21:26:29 +00:00
En savoir plus :
2013-01-09 22:12:36 +00:00
$ 2
2012-11-03 23:21:18 +00:00
2013-04-12 18:12:31 +00:00
$ 4 ' ,
2013-01-09 22:12:36 +00:00
'notification-edit-talk-page-email-batch-body2' => '$1 {{GENDER:$1|a publié}} sur votre page de discussion' ,
2013-04-05 22:26:28 +00:00
'notification-page-linked-email-subject' => 'Une page que vous avez commencée a été référencée sur {{SITENAME}}' ,
2013-04-12 18:12:31 +00:00
'notification-page-linked-email-body' => ' $ 1
2013-04-05 22:26:28 +00:00
Voir tous les liens vers cette page :
{{ canonicalurl : {{ #special:WhatLinksHere/$2}}}}
2013-04-12 18:12:31 +00:00
$ 3 ' ,
2013-04-05 22:26:28 +00:00
'notification-page-linked-email-batch-body' => '$2 a été {{GENDER:$1|référencé}} depuis $3' ,
2013-01-10 21:07:13 +00:00
'notification-reverted-email-subject2' => '{{PLURAL:$3|Votre modification sur $2 a été annulée|Vos modifications sur $2 ont été annulées}} {{GENDER:$1|}} par $1' ,
'notification-reverted-email-body2' => ' {{ PLURAL : $ 7 | Votre modification sur $ 2 a été annulée | Vos modifications sur $ 2 ont été annulées }} {{ GENDER : $ 1 | }} par $ 1.
$ 5
En savoir plus :
$ 3
$ 6 ' ,
'notification-reverted-email-batch-body2' => '{{PLURAL:$3|Votre modification sur $2 a été annulée|Vos modifications sur $2 ont été annulées}} {{GENDER:$1|}} par $1' ,
2013-02-25 21:05:32 +00:00
'notification-mention-email-subject' => '$1 vous {{GENDER:$1|a mentionné}} sur {{SITENAME}}' ,
'notification-mention-email-body' => ' L’ utilisateur $ 1 de {{ SITENAME }} vous {{ GENDER : $ 1 | a mentionné }} sur $ 2.
$ 3
En savoir plus :
$ 4
$ 5 ' ,
'notification-mention-email-batch-body' => '$1 vous {{GENDER:$1|a mentionné}} sur $2' ,
2013-03-22 20:04:44 +00:00
'notification-user-rights-email-subject' => 'Vos droits d’ utilisateur ont été modifiés sur {{SITENAME}}' ,
'notification-user-rights-email-body' => ' Vos droits d’ utilisateur {{ GENDER : $ 1 | ont été modifiés }} par $ 1. $ 2
En voir plus :
{{ canonicalurl : {{ #special:ListGroupRights}}}}
$ 3 ' ,
'notification-user-rights-email-batch-body' => 'Vos droits d’ utilisateur {{GENDER:$1|ont été modifiés}} par $1. $2' ,
2012-06-17 20:16:45 +00:00
'echo-email-subject-default' => 'Nouvelle notification sur {{SITENAME}}' ,
'echo-email-body-default' => ' Vous avez une nouvelle notification sur {{ SITENAME }} :
$ 1 ' ,
2013-04-06 19:50:26 +00:00
'echo-email-batch-body-default' => 'Vous avez une nouvelle notification' ,
2012-12-18 20:35:47 +00:00
'echo-email-footer-default' => ' $ 2
2012-12-03 21:02:52 +00:00
2013-04-18 19:43:00 +00:00
Pour vérifier quels courriels nous vous envoyons , allez dans vos préférences :
2012-12-03 21:02:52 +00:00
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2012-12-18 20:35:47 +00:00
$ 1 ' ,
2012-07-02 22:12:04 +00:00
'echo-link-new' => '$1 {{PLURAL:$1|nouvelle notification|nouvelles notifications}}' ,
2012-11-06 20:57:54 +00:00
'echo-link' => 'Notifications' ,
2012-12-17 21:25:38 +00:00
'echo-overlay-link' => 'Toutes les notifications' ,
2013-03-29 20:37:31 +00:00
'echo-overlay-title' => 'Notifications' ,
'echo-overlay-title-overflow' => 'Notifications ($1 de $2 non lues affichées)' ,
2012-12-11 22:52:15 +00:00
'echo-date-today' => " Aujourd'hui " ,
'echo-date-yesterday' => 'Hier' ,
'echo-load-more-error' => " Un erreur s'est produite en analysant davantage de résultats. " ,
2013-04-05 22:26:28 +00:00
'notification-edit-talk-page-bundle' => '$1 et $3 {{PLURAL:$4|autre|autres}} {{GENDER:$1|ont écrit}} sur votre [[User talk:$2|page de discussion]].' ,
'notification-page-linked-bundle' => '$2 a été {{GENDER:$1|référencé}} depuis $3 et $4 {{PLURAL:$5|autre page|autres pages}}. [[Special:WhatLinksHere/$2|Voir tous les liens vers cette page]]' ,
2013-04-15 20:57:21 +00:00
'notification-edit-user-talk-email-batch-bundle-body' => '$1 et $2 {{PLURAL:$3|autre|autres}} ont {{GENDER:$1|posté}} sur votre page de discussion' ,
'notification-page-linked-email-batch-bundle-body' => '$2 a été {{GENDER:$1|lié}} depuis $3 et $4 autres {{PLURAL:$5|page|pages}}' ,
2013-04-18 19:43:00 +00:00
'echo-email-batch-subject-daily' => " Vous avez $ 1 { { PLURAL: $ 2|notification|notifications}} aujourd'hui " , # Fuzzy
'echo-email-batch-subject-weekly' => 'Vous avez $1 {{PLURAL:$2|notification|notifications}} cette semaine' , # Fuzzy
2012-12-17 21:25:38 +00:00
'echo-email-batch-body-daily' => " $ 1,
Vous avez $ 2 {{ PLURAL : $ 3 | notification | notifications }} sur {{ SITENAME }} aujourd ' hui . Regardez - les ici :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-18 19:43:00 +00:00
$ 5 " , # Fuzzy
2012-12-17 21:25:38 +00:00
'echo-email-batch-body-weekly' => ' $ 1 ,
Vous avez $ 2 {{ PLURAL : $ 3 | notification | notifications }} sur {{ SITENAME }} cette semaine . Regardez - les ici :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-18 19:43:00 +00:00
$ 5 ' , # Fuzzy
2012-06-17 20:16:45 +00:00
);
2012-08-14 19:37:09 +00:00
/** Franco - Provençal ( arpetan )
* @ author ChrisPtDe
*/
$messages [ 'frp' ] = array (
2012-12-30 19:42:03 +00:00
'echo-desc' => 'Sistèmo de notificacions' ,
2012-08-14 19:37:09 +00:00
'prefs-echo' => 'Notificacions' ,
2012-12-30 19:42:03 +00:00
'prefs-displaynotifications' => 'Chouèx de visualisacion' ,
'echo-pref-email-edit-user-talk' => 'Mèssâjos sur ma pâge de discussion' ,
'echo-pref-email-reverted' => 'Anular mon changement' ,
2012-08-14 19:37:09 +00:00
'echo-no-agent' => '[Nion]' ,
2012-12-30 19:42:03 +00:00
'echo-no-title' => '[Niona pâge]' ,
2012-08-14 19:37:09 +00:00
'notifications' => 'Notificacions' ,
2012-12-30 19:42:03 +00:00
'tooltip-pt-notifications' => 'Voutres notificacions' ,
2012-08-14 19:37:09 +00:00
'echo-specialpage' => 'Mes notificacions' ,
2012-12-30 19:42:03 +00:00
'echo-none' => 'Vos éd reçu gins de notificacion.' ,
'notification-new-user' => 'Benvegnua sur {{SITENAME}}, $1 !' ,
2013-01-04 21:26:29 +00:00
'notification-new-user-content' => 'Volyéd pas oubliar de signér voutros comentèros sur les pâges de discussion avouéc 4 tildes (~~~~).' ,
2012-08-14 19:37:09 +00:00
'echo-email-subject-default' => 'Novèla notificacion dessus {{SITENAME}}' ,
'echo-email-body-default' => ' Vos avéd na novèla notificacion dessus {{ SITENAME }} :
2012-12-30 19:42:03 +00:00
$ 1 ' ,
'echo-email-footer-default' => ' $ 2
Por controlar quints mèssâjos nos vos mandens , visitâd :
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2012-08-14 19:37:09 +00:00
$ 1 ' ,
'echo-link-new' => '$1 {{PLURAL:$1|novèla notificacion|novèles notificacions}}' ,
2012-12-30 19:42:03 +00:00
'echo-link' => 'Notificacions' ,
'echo-overlay-link' => 'Totes les notificacions' ,
2012-08-14 19:37:09 +00:00
'echo-overlay-title' => 'Mes notificacions' ,
2012-12-30 19:42:03 +00:00
'echo-overlay-title-overflow' => 'Mes notificacions (montrent $1 sur $2 pas liesues)' ,
'echo-date-today' => 'Houé' ,
'echo-date-yesterday' => 'Hièr' ,
'echo-load-more-error' => 'Na fôta est arrevâye pendent la rècupèracion de més de rèsultats.' ,
'echo-email-batch-subject-daily' => 'Vos avéd $1 notificacion{{PLURAL:$2||s}} houé' ,
'echo-email-batch-subject-weekly' => 'Vos avéd $1 notificacion{{PLURAL:$2||s}} ceta semana' ,
'echo-email-batch-body-daily' => ' $ 1 ,
vos avéd $ 2 notificacion {{ PLURAL : $ 3 || s }} dessus {{ SITENAME }} houé . Vêde - les ique :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
$ 5 ' ,
'echo-email-batch-body-weekly' => ' $ 1 ,
vos avéd $ 2 notificacion {{ PLURAL : $ 3 || s }} dessus {{ SITENAME }} ceta semana . Vêde - les ique :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
$ 5 ' ,
'echo-email-batch-category-header-edit-user-talk' => '$1 mèssâjo{{PLURAL:$1||s}} de pâge de discussion' ,
'echo-email-batch-category-header-edit-revert' => '$1 {{PLURAL:$1|changement anulâ|changements anulâs}}' ,
'echo-email-batch-category-header-other' => '$1 ôtro{{PLURAL:$1||s}}' ,
2012-08-14 19:37:09 +00:00
);
2012-06-19 19:27:11 +00:00
/** Galician ( galego )
2012-06-17 20:16:45 +00:00
* @ author Toliño
2012-11-02 19:56:47 +00:00
* @ author Vivaelcelta
2012-06-17 20:16:45 +00:00
*/
$messages [ 'gl' ] = array (
2012-10-16 19:18:08 +00:00
'echo-desc' => 'Sistema de notificación' ,
2012-06-17 20:16:45 +00:00
'prefs-echo' => 'Notificacións' ,
2013-04-19 20:27:12 +00:00
'prefs-emailsettings' => 'Configuración do correo electrónico' ,
2012-12-04 21:05:46 +00:00
'prefs-displaynotifications' => 'Opcións de visualización' ,
2013-04-18 19:43:00 +00:00
'prefs-echosubscriptions' => 'Notificádeme sobre estes eventos' ,
2013-04-19 20:27:12 +00:00
'echo-pref-send-me' => 'Enviádeme:' ,
'echo-pref-send-to' => 'Enviar a:' ,
2013-02-14 20:29:43 +00:00
'echo-pref-web' => 'Web' ,
'echo-pref-email' => 'Correo electrónico' ,
2012-12-19 19:58:50 +00:00
'echo-pref-email-frequency-never' => 'Non me enviedes ningunha notificación por correo electrónico' ,
'echo-pref-email-frequency-immediately' => 'Notificacións individuais en canto cheguen' ,
'echo-pref-email-frequency-daily' => 'Un resumo diario das notificacións' ,
'echo-pref-email-frequency-weekly' => 'Un resumo semanal das notificacións' ,
2013-04-18 19:43:00 +00:00
'echo-pref-notify-show-link' => 'Mostrar as notificacións na miña barra de ferramentas' ,
2013-02-14 20:29:43 +00:00
'echo-dismiss-button' => 'Agochar' ,
2013-03-22 20:04:44 +00:00
'echo-dismiss-message' => 'Desactivar todas as notificacións do tipo $1' ,
2013-03-07 21:53:57 +00:00
'echo-dismiss-prefs-message' => 'Pode activar isto de novo nas preferencias' ,
2013-04-19 20:27:12 +00:00
'echo-category-title-edit-user-talk' => '{{PLURAL:$1|Mensaxe|Mensaxes}} na páxina de conversa' ,
'echo-category-title-article-linked' => '{{PLURAL:$1|Ligazón|Ligazóns}} a unha páxina' ,
'echo-category-title-reverted' => '{{PLURAL:$1|Reversión|Reversións}} dunha edición' ,
'echo-category-title-mention' => '{{PLURAL:$1|Mención|Mencións}}' ,
'echo-category-title-other' => '{{PLURAL:$1|Outras}}' ,
'echo-category-title-system' => '{{PLURAL:$1|Sistema}}' ,
2012-06-17 20:16:45 +00:00
'echo-no-agent' => '[Ninguén]' ,
2012-10-16 19:18:08 +00:00
'echo-no-title' => '[Ningunha páxina]' ,
2012-11-02 19:56:47 +00:00
'echo-error-no-formatter' => 'Non se definiu formato ningún para a notificación' ,
2013-02-15 20:32:50 +00:00
'echo-error-preference' => 'Erro: Non se puido establecer a preferencia de usuario' ,
'echo-error-token' => 'Erro: Non se puido recuperar o pase de usuario' ,
2012-06-17 20:16:45 +00:00
'notifications' => 'Notificacións' ,
2012-12-29 19:39:13 +00:00
'tooltip-pt-notifications' => 'As súas notificacións' ,
2013-03-29 20:37:31 +00:00
'echo-specialpage' => 'Notificacións' ,
2012-08-06 19:26:34 +00:00
'echo-anon' => 'Para recibir notificacións, [[Special:Userlogin/signup|cree unha conta]] ou [[Special:UserLogin|acceda ao sistema]].' ,
2012-12-19 19:58:50 +00:00
'echo-none' => 'Non ten ningunha notificación.' ,
2013-01-09 22:12:36 +00:00
'echo-more-info' => 'Máis información' ,
2013-04-18 19:43:00 +00:00
'echo-feedback' => 'Comentarios' ,
2013-01-09 22:12:36 +00:00
'notification-edit-talk-page2' => '[[User:$1|$1]] {{GENDER:$1|deixou}} unha mensaxe na súa [[User talk:$2|páxina de conversa]].' ,
'notification-edit-talk-page-flyout2' => '$1 {{GENDER:$1|deixou}} unha mensaxe na súa [[User talk:$2|páxina de conversa]].' ,
2013-04-05 22:26:28 +00:00
'notification-page-linked' => '"[[$2|$2]]" foi {{GENDER:$1|ligada}} desde "[[$3|$3]]": [[Special:WhatLinksHere/$2|Ollar todas as ligazóns cara a esta páxina]]' ,
'notification-page-linked-flyout' => '"$2" foi {{GENDER:$1|ligada}} desde "$3": [[Special:WhatLinksHere/$2|Ollar todas as ligazóns cara a esta páxina]]' ,
2013-01-09 22:12:36 +00:00
'notification-add-comment2' => '[[User:$1|$1]] {{GENDER:$1|comentou}} en "[[$3|$2]]" na páxina de conversa "$4"' ,
'notification-add-talkpage-topic2' => '[[User:$1|$1]] {{GENDER:$1|comezou}} o fío de conversa "$2" en "[[$3]]"' ,
'notification-add-talkpage-topic-yours2' => '[[User:$1|$1]] {{GENDER:$1|envioulle}} unha mensaxe: "[[$3#$2|$2]]"' ,
'notification-add-comment-yours2' => '[[User:$1|$1]] {{GENDER:$1|comentou}} en "[[$3#$2|$2]]" na páxina de conversa' ,
2013-02-25 21:05:32 +00:00
'notification-mention' => '[[User:$1|$1]] {{GENDER:$1|fíxolle}} unha mención en "[[$3#$2|$3]]".' ,
'notification-mention-flyout' => '$1 {{GENDER:$1|fíxolle}} unha mención en "[[$3#$2|$3]]".' ,
2013-04-18 19:43:00 +00:00
'notification-user-rights' => '[[User:$1|$1]] [[Special:Log/rights/$1|{{GENDER:$1|mudou}} os seus dereitos de usuario]]. $2. [[Special:ListGroupRights|Máis información]]' ,
2013-03-22 20:04:44 +00:00
'notification-user-rights-flyout' => '$1 {{GENDER:$1|mudou}} os seus dereitos de usuario. $2. [[Special:ListGroupRights|Máis información]]' ,
'notification-user-rights-add' => 'Agora pertence a {{PLURAL:$2|este grupo|estes grupos}}: $1' ,
'notification-user-rights-remove' => 'Xa non pertence a {{PLURAL:$2|este grupo|estes grupos}}: $1' ,
2013-04-05 22:26:28 +00:00
'notification-new-user' => 'Dámoslle a benvida a {{SITENAME}}, $1! Alegrámonos de que estea aquí.' ,
2013-01-09 22:12:36 +00:00
'notification-reverted2' => '[[User:$1|$1]] {{GENDER:$1|reverteu}} {{PLURAL:$4|a súa edición|as súas edicións}} en "[[$2]]" $3' ,
'notification-reverted-flyout2' => '$1 {{GENDER:$1|reverteu}} {{PLURAL:$4|a súa edición|as súas edicións}} en "$2" $3' ,
'notification-edit-talk-page-email-subject2' => 'Ten unha nova mensaxe na súa páxina de conversa' ,
2013-04-18 19:43:00 +00:00
'notification-edit-talk-page-email-body2' => ' $ 1
2012-06-17 20:16:45 +00:00
2013-01-09 22:12:36 +00:00
$ 3
Ollar máis :
$ 2
2013-04-18 19:43:00 +00:00
$ 4 ' ,
2013-01-09 22:12:36 +00:00
'notification-edit-talk-page-email-batch-body2' => '$1 {{GENDER:$1|deixou}} unha mensaxe na súa páxina de conversa' ,
2013-04-05 22:26:28 +00:00
'notification-page-linked-email-subject' => 'Unha páxina que comezou foi ligada en {{SITENAME}}' ,
2013-04-18 19:43:00 +00:00
'notification-page-linked-email-body' => ' $ 1
2013-04-05 22:26:28 +00:00
Ollar todas as ligazóns cara a esta páxina :
{{ canonicalurl : {{ #special:WhatLinksHere/$2}}}}
2013-04-18 19:43:00 +00:00
$ 3 ' ,
2013-04-05 22:26:28 +00:00
'notification-page-linked-email-batch-body' => '"$2" foi {{GENDER:$1|ligada}} desde "$3"' ,
2013-01-09 22:12:36 +00:00
'notification-reverted-email-subject2' => '$1 {{GENDER:$1|reverteu}} {{PLURAL:$3|a súa edición|as súas edicións}} en "$2"' ,
'notification-reverted-email-body2' => ' $ 1 {{ GENDER : $ 1 | reverteu }} {{ PLURAL : $ 7 | a súa edición | as súas edicións }} en " $ 2 " .
2012-11-02 19:56:47 +00:00
2013-01-09 22:12:36 +00:00
$ 5
2012-11-02 19:56:47 +00:00
2012-12-19 19:58:50 +00:00
Ollar máis :
2012-11-02 19:56:47 +00:00
2013-01-09 22:12:36 +00:00
$ 3
2012-11-02 19:56:47 +00:00
2013-01-09 22:12:36 +00:00
$ 6 ' ,
'notification-reverted-email-batch-body2' => '$1 {{GENDER:$1|reverteu}} {{PLURAL:$3|a súa edición|as súas edicións}} en "$2"' ,
2013-02-25 21:05:32 +00:00
'notification-mention-email-subject' => '$1 {{GENDER:$1|fíxolle}} unha mención en {{SITENAME}}' ,
'notification-mention-email-body' => ' {{ GENDER : $ 1 | O editor | A editora }} $ 1 fíxolle unha mención en $ 2 :
$ 3
Ollar máis :
$ 4
$ 5 ' ,
'notification-mention-email-batch-body' => '$1 {{GENDER:$1|fíxolle}} unha mención en $2' ,
2013-03-22 20:04:44 +00:00
'notification-user-rights-email-subject' => 'Os seus dereitos de usuario cambiaron en {{SITENAME}}' ,
'notification-user-rights-email-body' => ' $ 1 {{ GENDER : $ 1 | mudou }} os seus dereitos de usuario . $ 2
Ollar máis :
{{ canonicalurl : {{ #special:ListGroupRights}}}}
$ 3 ' ,
'notification-user-rights-email-batch-body' => '$1 {{GENDER:$1|mudou}} os seus dereitos de usuario. $2' ,
2012-06-17 20:16:45 +00:00
'echo-email-subject-default' => 'Nova notificación en {{SITENAME}}' ,
'echo-email-body-default' => ' Ten unha nova notificación en {{ SITENAME }} :
2012-12-02 20:41:24 +00:00
$ 1 ' ,
2013-04-06 19:50:26 +00:00
'echo-email-batch-body-default' => 'Ten unha nova notificación' ,
2012-12-19 19:58:50 +00:00
'echo-email-footer-default' => ' $ 2
2012-12-02 20:41:24 +00:00
2013-04-18 19:43:00 +00:00
Para controlar os correos electrónicos que lle enviamos , comprobe as súas preferencias :
2012-12-02 20:41:24 +00:00
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2012-12-19 19:58:50 +00:00
$ 1 ' ,
2012-07-02 22:12:04 +00:00
'echo-link-new' => '$1 {{PLURAL:$1|nova notificación|novas notificacións}}' ,
2012-11-08 21:08:06 +00:00
'echo-link' => 'Notificacións' ,
2012-12-12 21:12:57 +00:00
'echo-overlay-link' => 'Todas as notificacións' ,
2013-03-29 20:37:31 +00:00
'echo-overlay-title' => 'Notificacións' ,
'echo-overlay-title-overflow' => 'Notificacións (mostrando $1 de $2 sen ler)' ,
2013-04-19 20:27:12 +00:00
'echo-mark-all-as-read' => 'Marcar todo como lido' ,
2012-12-12 21:12:57 +00:00
'echo-date-today' => 'Hoxe' ,
'echo-date-yesterday' => 'Onte' ,
2013-02-11 20:17:41 +00:00
'echo-date-header' => '$2 de $1' ,
2012-12-12 21:12:57 +00:00
'echo-load-more-error' => 'Houbo un erro ao procurar máis resultados.' ,
2013-04-05 22:26:28 +00:00
'notification-edit-talk-page-bundle' => '$1 e {{PLURAL:$4|outra persoa|$3 persoas máis}} {{GENDER:$1|deixaron}} mensaxes na súa [[User talk:$2|páxina de conversa]].' ,
'notification-page-linked-bundle' => '"$2" foi {{GENDER:$1|ligada}} desde "$3" e $4 {{PLURAL:$5|páxina|páxinas}} máis. [[Special:WhatLinksHere/$2|Ollar todas as ligazóns cara a esta páxina]]' ,
2013-04-18 19:43:00 +00:00
'notification-edit-user-talk-email-batch-bundle-body' => '$1 e {{PLURAL:$3|outra persoa|$2 persoas máis}} {{GENDER:$1|deixaron}} mensaxes na súa páxina de conversa' ,
'notification-page-linked-email-batch-bundle-body' => '"$2" foi {{GENDER:$1|ligada}} desde "$3" e {{PLURAL:$5|outra páxina|$4 páxinas máis}}' ,
2013-04-19 20:27:12 +00:00
'echo-email-batch-subject-daily' => 'Hoxe ten {{PLURAL:$2|unha nova notificación|novas notificacións}}' ,
'echo-email-batch-subject-weekly' => 'Esta semana ten {{PLURAL:$2|unha nova notificación|novas notificacións}}' ,
2012-12-20 20:43:13 +00:00
'echo-email-batch-body-daily' => ' $ 1 :
2013-04-19 20:27:12 +00:00
Hoxe ten {{ PLURAL : $ 3 | unha nova notificación | novas notificacións }} en {{ SITENAME }} . Bótelles unha ollada aquí :
2012-12-20 20:43:13 +00:00
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-19 20:27:12 +00:00
$ 5 ' ,
2012-12-20 20:43:13 +00:00
'echo-email-batch-body-weekly' => ' $ 1 :
2013-04-19 20:27:12 +00:00
Esta semana ten {{ PLURAL : $ 3 | unha nova notificación | novas notificacións }} en {{ SITENAME }} . Bótelles unha ollada aquí :
2012-12-20 20:43:13 +00:00
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-19 20:27:12 +00:00
$ 5 ' ,
2012-06-17 20:16:45 +00:00
);
2013-04-10 20:31:37 +00:00
/** Gujarati ( ગુજરાતી )
* @ author KartikMistry
*/
$messages [ 'gu' ] = array (
'echo-email-batch-body-default' => 'તમને નવો સંદેશ આવેલો છે' ,
);
2012-07-02 22:12:04 +00:00
/** Hebrew ( עברית )
* @ author Amire80
2012-08-09 19:26:11 +00:00
* @ author Inkbug
2012-11-11 20:52:58 +00:00
* @ author חיים
2012-07-02 22:12:04 +00:00
*/
$messages [ 'he' ] = array (
2012-10-22 18:33:15 +00:00
'echo-desc' => 'מערכת הודעות' ,
2012-07-02 22:12:04 +00:00
'prefs-echo' => 'הודעות' ,
2012-12-04 21:05:46 +00:00
'prefs-displaynotifications' => 'אפשרויות תצוגה' ,
2013-01-14 21:53:26 +00:00
'prefs-emailfrequency' => 'באיזו תדירות ברצונך לקבל הודעות בדואר אלקטרוני?' ,
2013-04-11 20:21:12 +00:00
'prefs-echosubscriptions' => 'להודיע לי כשמישהו...' , # Fuzzy
2013-02-19 20:37:04 +00:00
'echo-pref-web' => 'אינטרנט' ,
'echo-pref-email' => 'דואר אלקטרוני' ,
2012-12-20 20:43:13 +00:00
'echo-pref-email-frequency-never' => 'לא לשלוח לי הודעות הדואר אלקטרוני' ,
'echo-pref-email-frequency-immediately' => 'הודעות בודדות כשהן מגיעות' ,
'echo-pref-email-frequency-daily' => 'סיכום יומי של הודעות' ,
'echo-pref-email-frequency-weekly' => 'סיכום שבועי של הודעות' ,
'echo-pref-notify-hide-link' => 'להסתיר את הקישור ואת התג להתראות בסרגל שלי' ,
2013-02-19 20:37:04 +00:00
'echo-dismiss-button' => 'סגירה' ,
'echo-dismiss-message' => 'כיבוי כל ההודעת על $1' ,
2013-03-15 20:00:14 +00:00
'echo-dismiss-prefs-message' => 'אפשר להפעיל את אלה שוב בהעדפות' ,
2013-03-21 22:40:37 +00:00
'echo-category-title-edit-user-talk' => 'כתיבה בדף שיחה' ,
2013-04-11 20:21:12 +00:00
'echo-category-title-article-linked' => 'קישור לדף' , # Fuzzy
'echo-category-title-reverted' => 'שחזור עריכה' , # Fuzzy
2013-03-21 22:40:37 +00:00
'echo-category-title-mention' => 'אזכור' ,
2012-07-02 22:12:04 +00:00
'echo-no-agent' => '[לא צוין]' ,
2012-10-22 18:33:15 +00:00
'echo-no-title' => '[ללא דף]' ,
2012-11-02 19:56:47 +00:00
'echo-error-no-formatter' => 'לא הוגדת עיצוב להודעות' ,
2013-02-19 20:37:04 +00:00
'echo-error-preference' => 'שגיאה: לא ניתן להגדיר העדפת משתמש' ,
'echo-error-token' => 'שגיאה: לא ניתן לקבל אסימון משתמש' ,
2012-07-02 22:12:04 +00:00
'notifications' => 'הודעות' ,
2013-01-06 20:09:24 +00:00
'tooltip-pt-notifications' => 'ההודעות שלך' ,
2013-04-11 20:21:12 +00:00
'echo-specialpage' => 'ההודעות שלי' , # Fuzzy
2012-08-06 19:26:34 +00:00
'echo-anon' => 'כדי לקבל הודעות, [[Special:Userlogin/signup|יש ליצור חשבון]] או [[Special:UserLogin|להיכנס]].' ,
2012-12-20 20:43:13 +00:00
'echo-none' => 'אין לך הודעות' ,
2013-01-14 21:53:26 +00:00
'echo-more-info' => 'מידע נוסף' ,
'notification-edit-talk-page2' => '[[User:$1|$1]] {{GENDER:$1|כתב|כתבה}} ב[[User talk:$2|הדף השיחה]] שלך.' ,
2013-02-11 20:17:41 +00:00
'notification-edit-talk-page-flyout2' => '$1 {{GENDER:$1|כתב|כתבה}} ב[[User talk:$2|דף השיחה שלך]].' ,
2013-02-12 20:22:40 +00:00
'notification-add-comment2' => '[[User:$1|$1]] {{GENDER:$1|העיר|העירה}} על הנושא "[[$3|$2]]" בדף השיחה של "$4"' ,
'notification-add-talkpage-topic2' => '[[User:$1|$1]] {{GENDER:$1|והוסיף|הוסיפה}} את נושא החדש "$2" לדף [[$3]]' ,
'notification-add-talkpage-topic-yours2' => '[[User:$1|$1]] {{GENDER:$1|שלח|שלחה}} לך הודעה: "[[$3#$2|$2]]"' ,
'notification-add-comment-yours2' => '[[User:$1|$1]] {{GENDER:$1|העיר|העירה}} על הנושא "[[$3#$2|$2]]" בדף השיחה שלך' ,
2013-03-15 20:00:14 +00:00
'notification-mention' => '[[User:$1|$1]] {{GENDER:$1|הזכיר|הזכירה}} אותך בדיון [[$3#$2|$3]].' ,
'notification-mention-flyout' => '$1 {{GENDER:$1|הזכיר|הזכירה}} אותך בדיון [[$3#$2|$3]].' ,
2013-04-11 20:21:12 +00:00
'notification-new-user' => 'ברוך בואך ל{{GRAMMAR:תחילית|{{SITENAME}}}}, $1!' , # Fuzzy
2013-02-12 20:22:40 +00:00
'notification-reverted2' => '[[User:$1|$1]] {{GENDER:$1|שחזר|שחזרה}} {{PLURAL:$4|עריכה שלך|עריכות שלך}} בדף [[$2]] $3' ,
'notification-reverted-flyout2' => '$1 {{GENDER:$1|שחזר|שחזרה}} {{PLURAL:$4|עריכה שלך|עריכות שלך}} בדף $2 $3' ,
2013-01-14 21:53:26 +00:00
'notification-edit-talk-page-email-subject2' => 'יש לך הודעה חדשה בדף השיחה' ,
2013-02-12 20:22:40 +00:00
'notification-edit-talk-page-email-body2' => ' {{ GENDER : $ 1 | משתמש | משתמשת }} {{ SITENAME }} $ 1 {{ GENDER : $ 1 | כתב | כתבה }} בדף השיחה שלך :
$ 3
מידע נוסף :
$ 2
2013-04-11 20:21:12 +00:00
$ 4 ' , # Fuzzy
2013-02-11 20:17:41 +00:00
'notification-edit-talk-page-email-batch-body2' => '$1 {{GENDER:$1|כתב|כתבה}} הדף השיחה שלך' ,
2013-02-12 20:22:40 +00:00
'notification-reverted-email-subject2' => '$1 {{GENDER:$1|שחזר|שחזרה}} {{PLURAL:$3|עריכה שלך|עריכות שלך}} בדף $2' ,
'notification-reverted-email-body2' => ' $ 1 {{ GENDER : $ 1 | שחזר | שחזרה }} {{ PLURAL : $ 7 | עריכה שלך | עריכות שלך }} בדף $ 2.
$ 5
מידע נוסף :
$ 3
$ 6 ' ,
'notification-reverted-email-batch-body2' => '$1 {{GENDER:$1|שחזר|שחזרה}} {{PLURAL:$3|עריכה שלך|עריכות שלך}} בדף $2' ,
2013-03-15 20:00:14 +00:00
'notification-mention-email-subject' => '$1 {{GENDER:$1|הזכיר|הזכירה}} אותך באתר {{SITENAME}}' ,
'notification-mention-email-body' => ' $ 1 {{ GENDER : $ 1 | הזכיר | הזכירה }} אותך בדף $ 2
$ 3
מידע נוסף :
$ 4
$ 5 ' ,
'notification-mention-email-batch-body' => '$1 {{GENDER:$1|הזכיר|הזכירה}} אותך בדף $2' ,
2013-02-11 20:17:41 +00:00
'echo-notification-count' => 'יותר מ־$1' ,
2012-08-01 20:04:58 +00:00
'echo-email-subject-default' => 'הודעה חדשה באתר {{SITENAME}}' ,
'echo-email-body-default' => ' יש לך הודעה חדשה באתר {{ SITENAME }} :
2012-12-04 21:05:46 +00:00
$ 1 ' ,
2013-02-11 20:17:41 +00:00
'echo-email-footer-default' => ' $ 2
2012-12-04 21:05:46 +00:00
אפשר לשנות את העדפות הדוא " ל שלך בדף הבא:
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2013-02-11 20:17:41 +00:00
$ 1 ' ,
2012-08-01 20:04:58 +00:00
'echo-link-new' => '{{PLURAL:$1|הודעה אחת חדשה|$1 הודעות חדשות}}' ,
2012-11-11 20:52:58 +00:00
'echo-link' => 'התראות' ,
2012-12-12 21:12:57 +00:00
'echo-overlay-link' => 'כל ההודעות' ,
2013-04-11 20:21:12 +00:00
'echo-overlay-title' => 'ההודעות שלי' , # Fuzzy
'echo-overlay-title-overflow' => 'ההודעות שלי (מוצגות $1 מתוך $2 שלא נקראו)' , # Fuzzy
2012-12-12 21:12:57 +00:00
'echo-date-today' => 'היום' ,
'echo-date-yesterday' => 'אתמול' ,
'echo-load-more-error' => 'אירעה שגיאה בעת אחזור תוצאות נוספות.' ,
2013-01-14 21:53:26 +00:00
'echo-email-batch-subject-daily' => 'יש לך {{PLURAL:$2|הודעה אחת|$1 הודעה}} היום' ,
'echo-email-batch-subject-weekly' => 'יש לך {{PLURAL:$2|הודעה אחת|$1 הודעה}} השבוע' ,
2013-02-11 20:17:41 +00:00
'echo-email-batch-body-daily' => ' $ 1 ,
יש לך {{ PLURAL : $ 3 | הודעה אחת | $ 2 הודעות }} באתר {{ SITENAME }} היום . אפשר לראות אותן כאן :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-02-12 20:22:40 +00:00
$ 5 ' ,
'echo-email-batch-body-weekly' => ' $ 1 ,
קיבלת $ 2 {{ PLURAL : $ 3 | הודעה | הודעות }} באתר {{ SITENAME }} השבוע . אפשר לראות אותן כאן :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-02-11 20:17:41 +00:00
$ 5 ' ,
2012-07-02 22:12:04 +00:00
);
2012-12-31 20:41:20 +00:00
/** Hindi ( हिन्दी )
2013-02-17 20:38:37 +00:00
* @ author Akash . bhargude
2012-12-31 20:41:20 +00:00
* @ author Ansumang
2013-01-07 20:56:27 +00:00
* @ author Siddhartha Ghai
2012-12-31 20:41:20 +00:00
*/
$messages [ 'hi' ] = array (
2013-02-17 20:38:37 +00:00
'prefs-echo' => 'मला म़ारा' ,
'prefs-displaynotifications' => 'Display options' ,
'prefs-emailfrequency' => 'When would you like to receive e-mail notifications?' ,
'prefs-echosubscriptions' => 'Notify me when someone…' ,
2012-12-31 20:41:20 +00:00
'echo-no-agent' => '[कोई नहीं]' ,
'echo-no-title' => '[कोई पृष्ठ नहीं]' ,
2013-01-07 20:56:27 +00:00
'notifications' => 'सूचनाएँ' ,
'tooltip-pt-notifications' => 'आपकी सूचनाएँ' ,
'echo-specialpage' => 'मेरी सूचनाएँ' ,
'echo-link' => 'सूचनाएँ' ,
'echo-overlay-link' => 'सभी सूचनाएँ' ,
'echo-overlay-title' => 'मेरी सूचनाएँ' ,
'echo-date-today' => 'आज' ,
2012-12-31 20:41:20 +00:00
'echo-date-yesterday' => 'कल' ,
);
2012-06-23 20:12:43 +00:00
/** Upper Sorbian ( hornjoserbsce )
2012-06-22 18:07:05 +00:00
* @ author Michawiki
*/
$messages [ 'hsb' ] = array (
2012-10-18 19:21:27 +00:00
'echo-desc' => 'Zdźělenski system' ,
2012-06-22 18:07:05 +00:00
'prefs-echo' => 'Zdźělenki' ,
2012-12-06 20:14:02 +00:00
'prefs-displaynotifications' => 'Zwobraznjenske opcije' ,
2013-03-19 21:37:22 +00:00
'echo-pref-web' => 'Web' ,
'echo-pref-email' => 'E-mejl' ,
'echo-dismiss-button' => 'Zaćisnyć' ,
2012-06-22 18:07:05 +00:00
'echo-no-agent' => '[Nichtó]' ,
2012-10-18 19:21:27 +00:00
'echo-no-title' => '[Žana strona]' ,
2012-11-03 23:21:18 +00:00
'echo-error-no-formatter' => 'Za zdźělenje njeje so formatowanje definowało' ,
2012-06-22 18:07:05 +00:00
'notifications' => 'Zdźělenki' ,
2013-03-19 21:37:22 +00:00
'tooltip-pt-notifications' => 'Twoje zdźělenki' ,
2012-06-22 18:07:05 +00:00
'echo-specialpage' => 'Moje zdźělenki' ,
2012-08-06 19:26:34 +00:00
'echo-anon' => 'Zo by zdźělenki dóstał, dyrbiš [[Special:Userlogin/signup|konto załožić]] abo [[Special:UserLogin|so přizjewić]].' ,
2012-12-20 20:43:13 +00:00
'echo-none' => 'Nimaš zdźělenki.' ,
2013-03-19 21:37:22 +00:00
'echo-more-info' => 'Dalše informacije' ,
2012-09-05 19:19:12 +00:00
'notification-new-user' => 'Witaj do {{GRAMMAR:genitiw|{{SITENAME}}}}, $1!' ,
2013-01-04 21:26:29 +00:00
'notification-new-user-content' => 'Prošu njezabudź komentary na diskusijnych stronach z 4 tildami (~~~~) podpisać .' ,
2012-06-22 18:07:05 +00:00
'echo-email-subject-default' => 'Nowa zdźělenka na {{GRAMMAR:lokatiw|{{SITENAME}}}}' ,
'echo-email-body-default' => ' Maš nowu zdźělenku na {{ GRAMMAR : lokatiw | {{ SITENAME }}}} :
2012-12-02 20:41:24 +00:00
$ 1 ' ,
2013-01-06 20:09:24 +00:00
'echo-email-footer-default' => ' $ 2
2012-12-02 20:41:24 +00:00
2013-01-06 20:09:24 +00:00
Zo by kontrolował , kotre e - mejle ći sćelemy , wopytaj :
2012-12-02 20:41:24 +00:00
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2013-01-06 20:09:24 +00:00
$ 1 ' ,
2012-06-22 18:07:05 +00:00
'echo-link-new' => '$1 {{PLURAL:$1|nowa zdźělenka|nowej zdźělence|nowe zdźělenki|nowych zdźělenkow}}' ,
2012-12-02 20:41:24 +00:00
'echo-link' => 'Zdźělenki' ,
2012-12-20 20:43:13 +00:00
'echo-overlay-link' => 'Wšě zdźělenki' ,
2012-06-22 18:07:05 +00:00
'echo-overlay-title' => 'Moje zdźělenki' ,
2012-12-11 22:52:15 +00:00
'echo-date-today' => 'Dźensa' ,
'echo-date-yesterday' => 'Wčera' ,
'echo-load-more-error' => 'Při wobstarowanju dalšich wuslědkow je zmylk wustupił.' ,
2012-06-22 18:07:05 +00:00
);
2012-08-13 19:47:46 +00:00
/** Hungarian ( magyar )
* @ author Dj
2013-03-11 20:28:30 +00:00
* @ author TK - 999
2012-08-13 19:47:46 +00:00
*/
$messages [ 'hu' ] = array (
2012-12-29 19:39:13 +00:00
'echo-desc' => 'Értesítési rendszer' ,
2012-08-13 19:47:46 +00:00
'prefs-echo' => 'Értesítések' ,
2012-12-29 19:39:13 +00:00
'prefs-displaynotifications' => 'Megjelenítési beállítások' ,
2013-01-27 17:36:02 +00:00
'prefs-emailfrequency' => 'Milyen gyakran kapok értesítést e-mailen' , # Fuzzy
2013-04-11 20:21:12 +00:00
'prefs-echosubscriptions' => 'Értesítést kérek, ha valaki...' , # Fuzzy
2013-03-11 20:28:30 +00:00
'echo-pref-email' => 'E-mail' ,
2012-12-29 19:39:13 +00:00
'echo-pref-email-frequency-never' => 'Egyáltalán ne küldjön e-mail értesítést' ,
'echo-pref-email-frequency-immediately' => 'egyéni értesítést, ahogy az esemény bekövetkezik' ,
'echo-pref-email-frequency-daily' => 'értesítések napi összefoglalója' ,
'echo-pref-email-frequency-weekly' => 'értesítések heti összefoglalója' ,
2013-03-11 20:28:30 +00:00
'echo-pref-notify-hide-link' => 'Rejtse el az értesítések hivatkozásait és jelvényét az eszköztáramban' ,
'echo-dismiss-button' => 'elrejt' ,
'echo-dismiss-message' => 'Minden "$1" típusú értesítés kikapcsolása' ,
'echo-dismiss-prefs-message' => 'Visszakapcsolhatod ezeket a beállításaidban.' ,
2013-04-11 20:21:12 +00:00
'echo-category-title-edit-user-talk' => 'vitalapi üzenet' ,
'echo-category-title-article-linked' => 'hivatkozott lap' , # Fuzzy
'echo-category-title-reverted' => 'visszaállított szerkesztés' , # Fuzzy
'echo-category-title-mention' => 'említés' ,
2012-12-29 19:39:13 +00:00
'echo-no-agent' => '[Senki]' ,
'echo-no-title' => '[Nincs lap]' ,
'echo-error-no-formatter' => 'Nincs értesítési formatálás definiálva' ,
2013-03-11 20:28:30 +00:00
'echo-error-preference' => 'Hiba: Nem sikerült beállítani a felhasználói beállítást' ,
2012-08-13 19:47:46 +00:00
'notifications' => 'Értesítések' ,
2013-03-11 20:28:30 +00:00
'tooltip-pt-notifications' => 'Értesítéseim' ,
2013-04-11 20:21:12 +00:00
'echo-specialpage' => 'Értesítéseim' , # Fuzzy
2012-12-29 19:39:13 +00:00
'echo-anon' => 'Értesítések fogadásához [[Special:Userlogin/signup|hozz létre egy fiókot]] vagy [[Special:UserLogin|jelentkezzen be]].' ,
'echo-none' => 'Nincsenek értesítések.' ,
2013-03-11 20:28:30 +00:00
'echo-more-info' => 'További információ' ,
'notification-edit-talk-page2' => '[[User:$1|$1]] üzenetet írt [[User talk:$2|a vitalapodra]].' ,
'notification-edit-talk-page-flyout2' => '$1 üzenetet írt [[User talk:$2|a vitalapodra]].' ,
'notification-add-comment2' => '[[User:$1|$1]] hozzászólt a(z) "[[$3|$2]]" témához a(z) "$4" vitalapon' ,
2013-04-11 20:21:12 +00:00
'notification-new-user' => 'Üdvözlet a {{SITENAME}} oldalon, $1!' , # Fuzzy
2012-12-29 19:39:13 +00:00
'echo-link-new' => '$1 új értesítés' ,
2012-12-25 20:04:33 +00:00
'echo-link' => 'Értesítések' ,
'echo-overlay-link' => 'Összes értesítés…' , # Fuzzy
2013-04-11 20:21:12 +00:00
'echo-overlay-title' => 'Értesítéseim' , # Fuzzy
'echo-overlay-title-overflow' => 'Értesüléseim ($2 olvasatlanból $1 megjelenítve)' , # Fuzzy
2012-12-27 21:19:24 +00:00
'echo-date-today' => 'Ma' ,
'echo-date-yesterday' => 'Tegnap' ,
2012-12-29 19:39:13 +00:00
'echo-load-more-error' => 'Hiba történt a további eredmények lekérdezése során.' ,
2012-08-13 19:47:46 +00:00
);
2012-06-20 20:24:48 +00:00
/** Interlingua ( interlingua )
* @ author McDutchie
*/
$messages [ 'ia' ] = array (
2012-11-03 23:21:18 +00:00
'echo-desc' => 'Systema de notificationes' ,
2012-06-20 20:24:48 +00:00
'prefs-echo' => 'Notificationes' ,
'echo-no-agent' => '[Nemo]' ,
2012-10-22 01:14:40 +00:00
'echo-no-title' => '[Sin titulo]' , # Fuzzy
2012-06-20 20:24:48 +00:00
'notifications' => 'Notificationes' ,
'echo-specialpage' => 'Mi notificationes' ,
2012-08-21 20:07:20 +00:00
'echo-anon' => 'Pro reciper notificationes, [[Special:Userlogin/signup|crea un conto]] o [[Special:UserLogin|aperi session]].' ,
2013-01-27 17:36:02 +00:00
'echo-none' => 'Tu non ha recipite notificationes recentemente.' , # Fuzzy
2012-06-20 20:24:48 +00:00
'echo-email-subject-default' => 'Nove notification in {{SITENAME}}' ,
'echo-email-body-default' => ' Tu ha un nove notification in {{ SITENAME }} :
$ 1 ' ,
2012-07-04 20:07:08 +00:00
'echo-link-new' => '$1 nove {{PLURAL:$1|notification|notificationes}}' ,
2012-11-06 20:57:54 +00:00
'echo-link' => 'Mi notificationes' , # Fuzzy
2012-12-11 22:52:15 +00:00
'echo-overlay-link' => 'Tote le notificationes…' , # Fuzzy
2012-06-20 20:24:48 +00:00
'echo-overlay-title' => 'Mi notificationes' ,
);
2012-12-22 22:08:46 +00:00
/** Indonesian ( Bahasa Indonesia )
* @ author Farras
2012-12-23 21:49:55 +00:00
* @ author පසිඳු කාවින්ද
2012-12-22 22:08:46 +00:00
*/
$messages [ 'id' ] = array (
'echo-desc' => 'Sistem notifikasi' ,
'prefs-echo' => 'Notifikasi' ,
2012-12-23 21:49:55 +00:00
'notifications' => 'Notifikasi' ,
2012-12-22 22:08:46 +00:00
'notification-new-user' => 'Selamat datang di {{SITENAME}}, $1!' ,
);
2012-12-26 21:07:31 +00:00
/** Igbo ( Igbo )
* @ author Ukabia
*/
$messages [ 'ig' ] = array (
'echo-date-today' => 'Ta' ,
'echo-date-yesterday' => 'Nnyáfụ̀' ,
);
2012-12-23 21:49:55 +00:00
/** Icelandic ( íslenska )
* @ author පසිඳු කාවින්ද
*/
$messages [ 'is' ] = array (
'echo-link' => 'Tilkynningar' ,
);
2012-07-10 19:38:32 +00:00
/** Italian ( italiano )
* @ author Beta16
2012-08-09 19:26:11 +00:00
* @ author Darth Kule
2013-02-27 21:15:37 +00:00
* @ author Eleonora negri
2013-04-18 19:43:00 +00:00
* @ author Pietrodn
2012-12-29 19:39:13 +00:00
* @ author Raoli
2013-01-01 20:21:34 +00:00
* @ author Vituzzu
2012-07-10 19:38:32 +00:00
*/
$messages [ 'it' ] = array (
2012-10-15 20:06:24 +00:00
'echo-desc' => 'Sistema per le notifiche' ,
2012-07-10 19:38:32 +00:00
'prefs-echo' => 'Notifiche' ,
2013-04-19 20:27:12 +00:00
'prefs-emailsettings' => 'Impostazioni email' ,
2012-12-04 21:05:46 +00:00
'prefs-displaynotifications' => 'Opzioni di visualizzazione' ,
2013-04-15 20:57:21 +00:00
'prefs-echosubscriptions' => 'Inviami una notifica su questi eventi' ,
2013-04-19 20:27:12 +00:00
'echo-pref-send-me' => 'Inviami:' ,
'echo-pref-send-to' => 'Invia a:' ,
2013-02-18 20:55:25 +00:00
'echo-pref-web' => 'Web' ,
'echo-pref-email' => 'Email' ,
2012-12-14 20:35:28 +00:00
'echo-pref-email-frequency-never' => 'Non inviarmi alcuna notifica via e-mail' ,
'echo-pref-email-frequency-immediately' => 'Notifiche individuali come arrivano' ,
'echo-pref-email-frequency-daily' => 'Un riepilogo giornaliero delle notifiche' ,
'echo-pref-email-frequency-weekly' => 'Un riepilogo settimanale delle notifiche' ,
2013-04-18 19:43:00 +00:00
'echo-pref-notify-show-link' => 'Visualizza le notifiche nella mia barra degli strumenti' ,
2013-02-18 20:55:25 +00:00
'echo-dismiss-button' => 'Nascondi' ,
2013-04-03 19:44:08 +00:00
'echo-dismiss-message' => 'Nascondi tutte le notifiche di $1' ,
2013-04-18 19:43:00 +00:00
'echo-dismiss-prefs-message' => 'È possibile riattivarle nelle preferenze' ,
2013-04-19 20:27:12 +00:00
'echo-category-title-edit-user-talk' => '{{PLURAL:$1|Messaggio|Messaggi}} sulla pagina di discussione' ,
'echo-category-title-article-linked' => '{{PLURAL:$1|Collegamento|Collegamenti}} alla pagina' ,
'echo-category-title-reverted' => '{{PLURAL:$1|Modifica annullata|Modifiche annullate}}' ,
'echo-category-title-mention' => '{{PLURAL:$1|Menzione|Menzioni}}' ,
'echo-category-title-other' => '{{PLURAL:$1|Altro}}' ,
'echo-category-title-system' => '{{PLURAL:$1|Sistema}}' ,
2012-07-10 19:38:32 +00:00
'echo-no-agent' => '[Nessuno]' ,
2012-10-15 20:06:24 +00:00
'echo-no-title' => '[Nessuna pagina]' ,
2012-11-02 19:56:47 +00:00
'echo-error-no-formatter' => 'Nessuna formattazione definita per le notifiche' ,
2013-03-04 21:32:25 +00:00
'echo-error-preference' => " Errore: impossibile impostare le preferenze dell'utente " ,
'echo-error-token' => 'Errore: impossibile recuperare token utente' ,
2012-07-10 19:38:32 +00:00
'notifications' => 'Notifiche' ,
2013-01-01 20:21:34 +00:00
'tooltip-pt-notifications' => 'Tutte le notifiche' ,
2013-04-03 19:44:08 +00:00
'echo-specialpage' => 'Notifiche' ,
2012-08-09 19:26:11 +00:00
'echo-anon' => " Per ricevere le notifiche, [[Special:Userlogin/signup|crea un account]] o [[Special:UserLogin|effettua l'accesso]]. " ,
2012-12-18 20:35:47 +00:00
'echo-none' => 'Non hai notifiche.' ,
2013-01-09 22:12:36 +00:00
'echo-more-info' => 'Altre informazioni' ,
2013-04-18 19:43:00 +00:00
'echo-feedback' => 'Feedback' ,
2013-01-15 21:31:25 +00:00
'notification-edit-talk-page2' => '[[User:$1|$1]] {{GENDER:$1|ha postato}} sulla tua [[User talk:$2|pagina di discussione]].' ,
'notification-edit-talk-page-flyout2' => '$1 {{GENDER:$1|ha postato}} sulla tua [[User talk:$2|pagina di discussione]].' ,
'notification-add-comment2' => '[[User:$1|$1]] {{GENDER:$1|ha lasciato un commento}} riguardo a "[[$3|$2]]" nella pagina di discussione di "$4"' ,
'notification-add-talkpage-topic2' => '[[User:$1|$1]] {{GENDER:$1|ha postato}} un nuovo argomento "$2" su [[$3]]' ,
'notification-add-talkpage-topic-yours2' => '[[User:$1|$1]] ti {{GENDER:$1|ha inviato}} un messaggio: "[[$3#$2|$2]]"' ,
'notification-add-comment-yours2' => '[[User:$1|$1]] {{GENDER:$1|ha lasciato un commento}} riguardo a "[[$3#$2|$2]]" nella tua pagina di discussione' ,
2013-02-28 20:39:02 +00:00
'notification-mention' => '[[User:$1|$1]] ti ha {{GENDER:$1|menzionato|menzionata|menzionato/a}} su [[$3#$2|$3]].' ,
'notification-mention-flyout' => '$1 ti ha {{GENDER:$1|menzionato|menzionata|menzionato/a}} su [[$3#$2|$3]].' ,
2013-04-07 20:51:39 +00:00
'notification-new-user' => 'Benvenuto su {{SITENAME}}, $1! Siamo felici che tu sia qui.' ,
2013-01-15 21:31:25 +00:00
'notification-reverted2' => '{{PLURAL:$4|La tua modifica|Le tue modifiche}} su [[$2]] {{PLURAL:$4|è stata annullata|sono state annullate}} {{GENDER:$1|da}} [[User:$1|$1]] $3' ,
'notification-reverted-flyout2' => '{{PLURAL:$4|La tua modifica|Le tue modifiche}} su $2 {{PLURAL:$4|è stata annullata|sono state annullate}} {{GENDER:$1|da}} $1 $3' ,
'notification-edit-talk-page-email-subject2' => 'Hai un nuovo messaggio nella pagina di discussione' ,
2013-04-15 20:57:21 +00:00
'notification-edit-talk-page-email-body2' => ' $ 1
2013-01-15 21:31:25 +00:00
$ 3
Vedi anche :
$ 2
2013-04-15 20:57:21 +00:00
$ 4 ' ,
2013-01-15 21:31:25 +00:00
'notification-edit-talk-page-email-batch-body2' => '$1 {{GENDER:$1|ha postato}} sulla tua pagina di discussione' ,
2013-01-16 20:34:53 +00:00
'notification-reverted-email-subject2' => '{{PLURAL:$3|La tua modifica|Le tue modifiche}} su $2 {{PLURAL:$3|è stata annullata|sono state annullate}} {{GENDER:$1|da}} $1' ,
'notification-reverted-email-body2' => ' {{ PLURAL : $ 7 | La tua modifica | Le tue modifiche }} alla pagina $ 2 {{ PLURAL : $ 7 | è stata annullata | sono state annullate }} da $ 1.
$ 5
Mostra di più :
$ 3
$ 6 ' ,
'notification-reverted-email-batch-body2' => '{{PLURAL:$3|La tua modifica|Le tue modifiche}} su $2 {{PLURAL:$3|è stata annullata|sono state annullate}} {{GENDER:$1|da}} $1' ,
2013-02-28 20:39:02 +00:00
'notification-mention-email-subject' => '$1 ti ha {{GENDER:$1|menzionato|menzionata|menzionato/a}} su {{SITENAME}}' ,
'notification-mention-email-body' => " L'utente di { { SITENAME}} $ 1 ti ha { { GENDER: $ 1|menzionato|menzionata|menzionato/a}} su $ 2.
$ 3
Vedi anche :
$ 4
$ 5 " ,
'notification-mention-email-batch-body' => '$1 ti ha {{GENDER:$1|menzionato|menzionata|menzionato/a}} su $2' ,
2012-07-10 19:38:32 +00:00
'echo-email-subject-default' => 'Nuova notifica su {{SITENAME}}' ,
'echo-email-body-default' => ' Hai una nuova notifica su {{ SITENAME }} :
$ 1 ' ,
2013-04-07 20:51:39 +00:00
'echo-email-batch-body-default' => 'Hai una nuova notifica' ,
2012-12-20 20:43:13 +00:00
'echo-email-footer-default' => ' $ 2
2012-12-03 21:02:52 +00:00
2013-04-19 20:27:12 +00:00
Per controllare quali email ti verranno inviate , controlla le tue preferenze :
2012-12-03 21:02:52 +00:00
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2013-04-19 20:27:12 +00:00
$ 1 ' ,
2012-07-10 19:38:32 +00:00
'echo-link-new' => '$1 {{PLURAL:$1|nuova notifica|nuove notifiche}}' ,
2012-11-06 20:57:54 +00:00
'echo-link' => 'notifiche' ,
2012-12-12 21:12:57 +00:00
'echo-overlay-link' => 'Tutte le notifiche' ,
2013-04-03 19:44:08 +00:00
'echo-overlay-title' => 'Notifiche' ,
'echo-overlay-title-overflow' => 'Notifiche (mostrate $1 di $2 non lette)' ,
2013-04-19 20:27:12 +00:00
'echo-mark-all-as-read' => 'Segna tutte come lette' ,
2012-12-11 22:52:15 +00:00
'echo-date-today' => 'Oggi' ,
'echo-date-yesterday' => 'Ieri' ,
2012-12-12 21:12:57 +00:00
'echo-load-more-error' => 'Si è verificato un errore nel recupero di ulteriori risultati.' ,
2013-04-15 20:57:21 +00:00
'notification-edit-user-talk-email-batch-bundle-body' => '$1 e {{PLURAL:$3|un altro|altri $2}} {{GENDER:$1|hanno postato}} sulla tua pagina di discussione' ,
2013-04-19 20:27:12 +00:00
'echo-email-batch-subject-daily' => 'Hai {{PLURAL:$2|una nuova notifica|nuove notifiche}} oggi' ,
'echo-email-batch-subject-weekly' => 'Hai {{PLURAL:$2|una nuova notifica|nuove notifiche}} questa settimana' ,
2012-12-20 20:43:13 +00:00
'echo-email-batch-body-daily' => ' $ 1 ,
2013-04-19 20:27:12 +00:00
Hai {{ PLURAL : $ 3 | una nuova notifica | nuove notifiche }} su {{ SITENAME }} oggi . Puoi vederle qui :
2012-12-20 20:43:13 +00:00
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-19 20:27:12 +00:00
$ 5 ' ,
2012-12-20 20:43:13 +00:00
'echo-email-batch-body-weekly' => ' $ 1 ,
2013-04-19 20:27:12 +00:00
Hai {{ PLURAL : $ 3 | una nuova notifica | nuove notifiche }} su {{ SITENAME }} questa settimana . Puoi vederle qui :
2012-12-20 20:43:13 +00:00
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-19 20:27:12 +00:00
$ 5 ' ,
2012-07-10 19:38:32 +00:00
);
2012-08-10 19:18:21 +00:00
/** Japanese ( 日本語 )
2013-03-01 21:20:28 +00:00
* @ author Fryed - peach
2012-08-10 19:18:21 +00:00
* @ author Shirayuki
2013-02-11 20:17:41 +00:00
* @ author Whym
2012-08-10 19:18:21 +00:00
*/
$messages [ 'ja' ] = array (
2012-10-18 19:21:27 +00:00
'echo-desc' => '通知システム' ,
2012-08-10 19:18:21 +00:00
'prefs-echo' => '通知' ,
2013-04-19 20:27:12 +00:00
'prefs-emailsettings' => 'メールの設定' ,
2012-12-04 21:05:46 +00:00
'prefs-displaynotifications' => '表示の設定' ,
2013-04-12 18:12:31 +00:00
'prefs-echosubscriptions' => '以下の場合に通知を受け取る' ,
2013-04-19 20:27:12 +00:00
'echo-pref-send-me' => '受け取る頻度:' ,
'echo-pref-send-to' => '送信先:' ,
2013-02-15 20:32:50 +00:00
'echo-pref-web' => 'ウェブ' ,
'echo-pref-email' => 'メール' ,
2012-12-14 20:35:28 +00:00
'echo-pref-email-frequency-never' => '通知メールを何も受け取らない' ,
2013-02-11 20:17:41 +00:00
'echo-pref-email-frequency-immediately' => '個別の通知が来るたび' ,
'echo-pref-email-frequency-daily' => '通知を1日ごとに要約' ,
'echo-pref-email-frequency-weekly' => '通知を1週間ごとに要約' ,
2013-04-18 19:43:00 +00:00
'echo-pref-notify-show-link' => '通知をツールバーに表示' ,
2013-03-01 21:20:28 +00:00
'echo-dismiss-button' => '非表示' ,
2013-02-17 20:38:37 +00:00
'echo-dismiss-message' => '$1についての通知をすべて止める' ,
2013-03-06 21:51:05 +00:00
'echo-dismiss-prefs-message' => 'これらは個人設定で元に戻すこともできます' ,
2013-04-19 20:27:12 +00:00
'echo-category-title-edit-user-talk' => 'トークページヘの{{PLURAL:$1|投稿}}' ,
'echo-category-title-article-linked' => 'ページへの{{PLURAL:$1|リンク}}' ,
'echo-category-title-reverted' => '編集の{{PLURAL:$1|差し戻し}}' ,
'echo-category-title-mention' => '{{PLURAL:$1|言及}}' ,
'echo-category-title-other' => '{{PLURAL:$1|その他}}' ,
'echo-category-title-system' => '{{PLURAL:$1|システム}}' ,
2013-02-11 20:17:41 +00:00
'echo-no-agent' => '[送信者なし]' ,
'echo-no-title' => '[ページなし]' ,
2012-11-02 19:56:47 +00:00
'echo-error-no-formatter' => '通知の書式が定義されていません' ,
2013-02-15 20:32:50 +00:00
'echo-error-preference' => 'エラー: 個人設定を変更できませんでした' ,
'echo-error-token' => 'エラー: 利用者トークンを取得できませんでした' ,
2012-08-10 19:18:21 +00:00
'notifications' => '通知' ,
2012-12-29 19:39:13 +00:00
'tooltip-pt-notifications' => '自分の通知' ,
2013-03-29 20:37:31 +00:00
'echo-specialpage' => '通知' ,
2012-12-09 20:25:32 +00:00
'echo-anon' => '通知を受け取るには、[[Special:Userlogin/signup|アカウント作成]]または[[Special:UserLogin|ログイン]]をしてください。' ,
2012-12-18 20:35:47 +00:00
'echo-none' => '通知はありません。' ,
2013-01-09 22:12:36 +00:00
'echo-more-info' => '詳細情報' ,
2013-04-16 19:44:42 +00:00
'echo-feedback' => 'フィードバック' ,
2013-03-29 20:37:31 +00:00
'echo-quotation-marks' => '「$1」' ,
2013-01-09 22:12:36 +00:00
'notification-edit-talk-page2' => '[[User:$1|$1]] があなたの[[User talk:$2|トークページ]]に{{GENDER:$1|投稿しました}}。' ,
'notification-edit-talk-page-flyout2' => '$1 があなたの[[User talk:$2|トークページ]]に{{GENDER:$1|投稿しました}}。' ,
2013-04-05 22:26:28 +00:00
'notification-page-linked' => '[[$2|$2]] が [[$3|$3]] から{{GENDER:$1|リンクされました}}: [[Special:WhatLinksHere/$2|このページのリンク元]]' ,
'notification-page-linked-flyout' => '$2 が $3 から{{GENDER:$1|リンクされました}}: [[Special:WhatLinksHere/$2|このページのリンク元]]' ,
2013-01-09 22:12:36 +00:00
'notification-add-comment2' => '[[User:$1|$1]] が「$4」のトークページの「[[$3|$2]]」に{{GENDER:$1|コメントしました}}' ,
'notification-add-talkpage-topic2' => '[[User:$1|$1]] が [[$3]] に新しい話題「$2」を{{GENDER:$1|投稿しました}}' ,
'notification-add-talkpage-topic-yours2' => '[[User:$1|$1]] があなたにメッセージを{{GENDER:$1|送信しました}}:「[[$3#$2|$2]]」' ,
'notification-add-comment-yours2' => '[[User:$1|$1]] があなたのトークページの「[[$3#$2|$2]]」に{{GENDER:$1|コメントしました}}' ,
2013-02-27 21:15:37 +00:00
'notification-mention' => '[[User:$1|$1]] が [[$3#$2|$3]] であなたに{{GENDER:$1|言及しました}}。' ,
'notification-mention-flyout' => '$1 が [[$3#$2|$3]] であなたに{{GENDER:$1|言及しました}}。' ,
2013-04-04 19:58:34 +00:00
'notification-new-user' => '$1さん、{{SITENAME}}へようこそ!' , # Fuzzy
2013-01-09 22:12:36 +00:00
'notification-reverted2' => '{{PLURAL:$4|[[$2]] でのあなたの編集}}を [[User:$1|$1]] が{{GENDER:$1|差し戻しました}} $3' ,
'notification-reverted-flyout2' => '{{PLURAL:$4|$2 でのあなたの編集}}を $1 が{{GENDER:$1|差し戻しました}} $3' ,
'notification-edit-talk-page-email-subject2' => 'トークページに新着メッセージがあります' ,
2013-04-12 18:12:31 +00:00
'notification-edit-talk-page-email-body2' => ' $ 1
2013-01-09 22:12:36 +00:00
$ 3
詳細はこちら :
$ 2
2013-04-12 18:12:31 +00:00
$ 4 ' ,
2013-01-09 22:12:36 +00:00
'notification-edit-talk-page-email-batch-body2' => '$1 があなたのトークページに{{GENDER:$1|投稿しました}}' ,
2013-04-05 22:26:28 +00:00
'notification-page-linked-email-subject' => 'あなたが作成したページが{{SITENAME}}でリンクされました' ,
2013-04-12 18:12:31 +00:00
'notification-page-linked-email-body' => ' $ 1
2013-04-05 22:26:28 +00:00
このページのすべてのリンク元 :
{{ canonicalurl : {{ #special:WhatLinksHere/$2}}}}
2013-04-12 18:12:31 +00:00
$ 3 ' ,
2013-04-05 22:26:28 +00:00
'notification-page-linked-email-batch-body' => '$2 が $3 から{{GENDER:$1|リンクされました}}' ,
2013-01-09 22:12:36 +00:00
'notification-reverted-email-subject2' => '{{PLURAL:$3|$2 でのあなたの編集}}を $1 が{{GENDER:$1|差し戻しました}}' ,
'notification-reverted-email-body2' => ' {{ PLURAL : $ 7 | $ 2 でのあなたの編集 }} を $ 1 が {{ GENDER : $ 1 | 差し戻しました }} 。
$ 5
詳細はこちら :
$ 3
$ 6 ' ,
'notification-reverted-email-batch-body2' => '{{PLURAL:$3|$2 でのあなたの編集}}を $1 が{{GENDER:$1|差し戻しました}}' ,
2013-02-27 21:15:37 +00:00
'notification-mention-email-subject' => '$1 が{{SITENAME}}であなたに{{GENDER:$1|言及しました}}' ,
'notification-mention-email-body' => ' {{ SITENAME }} の利用者 $ 1 が $ 2 であなたに {{ GENDER : $ 1 | 言及しました }} 。
$ 3
詳細はこちら :
$ 4
$ 5 ' ,
'notification-mention-email-batch-body' => '$1 が $2 であなたに{{GENDER:$1|言及しました}}' ,
2013-03-22 20:04:44 +00:00
'notification-user-rights-email-subject' => '{{SITENAME}}での利用者権限が変更されました' ,
2012-08-10 19:18:21 +00:00
'echo-email-subject-default' => '{{SITENAME}}での新しい通知' ,
'echo-email-body-default' => ' {{ SITENAME }} で新しい通知があります :
2013-02-11 20:17:41 +00:00
$ 1 ' ,
2013-04-06 19:50:26 +00:00
'echo-email-batch-body-default' => '新しい通知があります' ,
2013-02-11 20:17:41 +00:00
'echo-email-footer-default' => ' $ 2
2013-04-18 19:43:00 +00:00
受け取るメールの設定を変更するには、個人設定をご確認ください :
2013-02-11 20:17:41 +00:00
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2012-08-10 19:18:21 +00:00
$ 1 ' ,
'echo-link-new' => '$1 {{PLURAL:$1|件の新しい通知}}' ,
2012-11-06 20:57:54 +00:00
'echo-link' => '通知' ,
2012-12-12 21:12:57 +00:00
'echo-overlay-link' => 'すべての通知' ,
2013-03-29 20:37:31 +00:00
'echo-overlay-title' => '通知' ,
'echo-overlay-title-overflow' => '通知 (未読 $2 件中 $1 件を表示中)' ,
2013-04-19 20:27:12 +00:00
'echo-mark-all-as-read' => 'すべて既読にする' ,
2012-12-11 22:52:15 +00:00
'echo-date-today' => '今日' ,
'echo-date-yesterday' => '昨日' ,
'echo-date-header' => '$1$2日' ,
'echo-load-more-error' => '結果の続きを取得する際にエラーが発生しました。' ,
2013-04-05 22:26:28 +00:00
'notification-edit-talk-page-bundle' => '$1 と他 $3 {{PLURAL:$4|人}}があなたの[[User talk:$2|トークページ]]に{{GENDER:$1|投稿しました}}。' ,
'notification-page-linked-bundle' => '$2 が $3 と他 $4 {{PLURAL:$5|件のページ}}から{{GENDER:$1|リンクされました}}。[[Special:WhatLinksHere/$2|このページのリンク元]]' ,
2013-04-12 18:12:31 +00:00
'notification-edit-user-talk-email-batch-bundle-body' => '$1 と他 $2 {{PLURAL:$3|人}}があなたのトークページに{{GENDER:$1|投稿しました}}' ,
'notification-page-linked-email-batch-bundle-body' => '$2 が $3 と他 $4 {{PLURAL:$5|件のページ}}から{{GENDER:$1|リンクされました}}' ,
2012-12-14 20:35:28 +00:00
'echo-email-batch-separator' => '________________________________________________' ,
2013-04-19 20:27:12 +00:00
'echo-email-batch-subject-daily' => 'この1日で新たな{{PLURAL:$2|通知}}が届いています' ,
'echo-email-batch-subject-weekly' => 'この1週間で新たな{{PLURAL:$2|通知}}が届いています' ,
2013-02-11 20:17:41 +00:00
'echo-email-batch-body-daily' => ' $ 1 さん、
2013-04-19 20:27:12 +00:00
{{ SITENAME }} 上で、今日新たな {{ PLURAL : $ 3 | 通知 }} が届きました。下記の場所でご覧いただけます。
2013-02-11 20:17:41 +00:00
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-19 20:27:12 +00:00
$ 5 ' ,
2013-02-11 20:17:41 +00:00
'echo-email-batch-body-weekly' => ' $ 1 さん、
2013-04-19 20:27:12 +00:00
{{ SITENAME }} 上で、この1週間に新たな {{ PLURAL : $ 3 | 通知 }} が届きました。下記の場所でご覧いただけます。
2013-02-11 20:17:41 +00:00
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-19 20:27:12 +00:00
$ 5 ' ,
2012-08-10 19:18:21 +00:00
);
2012-08-15 19:50:03 +00:00
/** Javanese ( Basa Jawa )
* @ author NoiX180
*/
$messages [ 'jv' ] = array (
2012-10-22 01:14:40 +00:00
'echo-desc' => 'Infrastruktur wara-wara gènèrasi ngarep kanggo MediaWiki' , # Fuzzy
2012-08-15 19:50:03 +00:00
'prefs-echo' => 'Wara-wara' ,
'echo-no-agent' => '[Dudu sapa-sapa]' ,
2012-10-22 01:14:40 +00:00
'echo-no-title' => '[Ora ana judhul]' , # Fuzzy
2012-08-15 19:50:03 +00:00
'notifications' => 'Wara-wara' ,
'echo-specialpage' => 'Wara-wara kula' ,
'echo-anon' => 'Kanggo nampa wara-wara [[Special:Userlogin/signup|gawé akun]] utawa [[Special:UserLogin|mlebu log]].' ,
2013-01-27 17:36:02 +00:00
'echo-none' => 'Sampéyan durung nampa wara-wara apa-apa.' , # Fuzzy
2012-08-15 19:50:03 +00:00
'echo-email-subject-default' => 'Wara-wara anyar nèng {{SITENAME}}' ,
'echo-email-body-default' => ' Sampéyan nduwé wara - wara anyar nèng {{ SITENAME }} :
$ 1 ' ,
'echo-link-new' => '$1 {{PLURAL:$1|wara-wara|wara-wara}} anyar' ,
2012-12-09 20:25:32 +00:00
'echo-link' => 'Wara-wara kula' , # Fuzzy
2012-12-11 22:52:15 +00:00
'echo-overlay-link' => 'Kabèh wara-wara...' , # Fuzzy
2012-08-15 19:50:03 +00:00
'echo-overlay-title' => 'Wara-wara kula' ,
);
2012-08-09 19:26:11 +00:00
/** Georgian ( ქართული )
* @ author David1010
*/
$messages [ 'ka' ] = array (
2012-12-22 22:08:46 +00:00
'echo-desc' => 'შეტყობინებების სისტემა' ,
2012-08-15 19:50:03 +00:00
'prefs-echo' => 'შეტყობინებები' ,
2013-02-15 20:32:50 +00:00
'prefs-displaynotifications' => 'გამოსახვის პარამეტრები' ,
'prefs-echosubscriptions' => 'შემატყობინეთ როცა ვინმე…' ,
'echo-pref-web' => 'ქსელი' ,
'echo-pref-email' => 'ელ. ფოსტა' ,
'echo-pref-subscription-edit-user-talk' => 'დაწერს ჩემი განხილვის გვერდზე' ,
'echo-pref-subscription-article-linked' => 'გააკეთებს ბმულს ჩემ მიერ შექმნილ გვერდზე' ,
'echo-pref-subscription-reverted' => 'გააუქმებს ჩემ რედაქტირებას' ,
2012-08-09 19:26:11 +00:00
'echo-no-agent' => '[არავინ]' ,
2012-12-18 20:35:47 +00:00
'echo-no-title' => '[არ არის გვერდი]' ,
2012-08-15 19:50:03 +00:00
'notifications' => 'შეტყობინებები' ,
2013-02-15 20:32:50 +00:00
'tooltip-pt-notifications' => 'თქვენი შეტყობინებები' ,
2012-08-15 19:50:03 +00:00
'echo-specialpage' => 'ჩემი შეტყობინებები' ,
2013-02-15 20:32:50 +00:00
'echo-more-info' => 'დეტალურად' ,
2012-12-22 22:08:46 +00:00
'notification-new-user' => 'კეთილი იყოს თქვენი მობრძანება საიტზე {{SITENAME}}, $1!' ,
2013-01-28 21:53:37 +00:00
'echo-notification-count' => '$1+' ,
2012-12-18 20:35:47 +00:00
'echo-link' => 'შეტყობინებები' ,
'echo-overlay-link' => 'შეტყობინება' ,
2012-08-15 19:50:03 +00:00
'echo-overlay-title' => 'ჩემი შეტყობინებები' ,
2013-02-15 20:32:50 +00:00
'echo-date-today' => 'დღეს' ,
'echo-date-yesterday' => 'გუშინ' ,
2013-01-28 21:53:37 +00:00
'echo-date-header' => '$1 $2' ,
'echo-email-batch-separator' => '________________________________________________' ,
'echo-email-batch-bullet' => '•' ,
2012-08-09 19:26:11 +00:00
);
2012-08-07 20:08:26 +00:00
/** Korean ( 한국어 )
2013-03-13 21:11:21 +00:00
* @ author Freebiekr
2012-08-07 20:08:26 +00:00
* @ author 아라
*/
$messages [ 'ko' ] = array (
2012-10-17 19:32:14 +00:00
'echo-desc' => '알림 시스템' ,
2012-08-07 20:08:26 +00:00
'prefs-echo' => '알림' ,
2012-12-07 21:54:40 +00:00
'prefs-displaynotifications' => '보이기 설정' ,
2013-01-09 22:12:36 +00:00
'prefs-emailfrequency' => '언제 이메일 알림을 받겠습니까?' ,
2013-04-11 20:21:12 +00:00
'prefs-echosubscriptions' => '다음 경우에 알림…' , # Fuzzy
2013-02-14 20:29:43 +00:00
'echo-pref-web' => '웹' ,
'echo-pref-email' => '이메일' ,
2012-12-18 20:35:47 +00:00
'echo-pref-email-frequency-never' => '내게 어떠한 이메일 알림을 보내지 않기' ,
'echo-pref-email-frequency-immediately' => '모두한테 오는 개별 알림' ,
'echo-pref-email-frequency-daily' => '알림의 일별 요약' ,
'echo-pref-email-frequency-weekly' => '알림의 주간 요약' ,
'echo-pref-notify-hide-link' => '툴바에 알림에 대한 링크와 배지 숨기기' ,
2013-02-14 20:29:43 +00:00
'echo-dismiss-button' => '기각' ,
'echo-dismiss-message' => '모든 $1 알림 끄기' ,
2013-03-08 17:04:36 +00:00
'echo-dismiss-prefs-message' => '사용자 환경 설정에서 다시 설정할 수 있습니다.' ,
2013-03-21 22:40:37 +00:00
'echo-category-title-edit-user-talk' => '토론 문서 게시물' ,
2013-04-11 20:21:12 +00:00
'echo-category-title-article-linked' => '문서를 링크함' , # Fuzzy
'echo-category-title-reverted' => '편집을 되돌림' , # Fuzzy
2013-03-21 22:40:37 +00:00
'echo-category-title-mention' => '언급' ,
2012-08-07 20:08:26 +00:00
'echo-no-agent' => '[알 수 없는 사용자]' ,
2012-10-17 19:32:14 +00:00
'echo-no-title' => '[문서 없음]' ,
2012-11-02 19:56:47 +00:00
'echo-error-no-formatter' => '알림에 대해 정의한 형식이 없습니다' ,
2013-02-17 20:38:37 +00:00
'echo-error-preference' => '오류: 사용자 환경 설정을 설정할 수 없습니다' ,
'echo-error-token' => '오류: 사용자 토큰을 얻을 수 없습니다' ,
2012-08-07 20:08:26 +00:00
'notifications' => '알림' ,
2012-12-29 19:39:13 +00:00
'tooltip-pt-notifications' => '내 알림' ,
2013-04-11 20:21:12 +00:00
'echo-specialpage' => '내 알림' , # Fuzzy
2012-08-07 20:08:26 +00:00
'echo-anon' => '알림을 받으려면 [[Special:Userlogin/signup|계정을 만들거나]] [[Special:UserLogin|로그인하세요]].' ,
2012-12-18 20:35:47 +00:00
'echo-none' => '알림이 없습니다.' ,
2013-01-09 22:12:36 +00:00
'echo-more-info' => '자세한 정보' ,
2013-01-11 20:33:02 +00:00
'notification-edit-talk-page2' => '[[User:$1|$1]] 사용자가 내 [[User talk:$2|토론 문서]]에 {{GENDER:$1|게시했습니다}}.' ,
'notification-edit-talk-page-flyout2' => '$1 사용자가 내 [[User talk:$2|토론 문서]]에 {{GENDER:$1|게시했습니다}}.' ,
'notification-add-comment2' => '[[User:$1|$1]] 사용자가 "$4" 토론 문서의 "[[$3|$2]]"에 {{GENDER:$1|덧글을 남겼습니다}}' ,
'notification-add-talkpage-topic2' => '[[User:$1|$1]] 사용자가 [[$3]]의 "$2" 새 주제를 {{GENDER:$1|게시했습니다}}' ,
'notification-add-talkpage-topic-yours2' => '[[User:$1|$1]] 사용자가 내게 메시지를 {{GENDER:$1|보냈습니다}}: "[[$3#$2|$2]]"' ,
'notification-add-comment-yours2' => '[[User:$1|$1]] 사용자가 내 토론 문서의 "[[$3#$2|$2]]"에 {{GENDER:$1|덧글을 남겼습니다}}' ,
2013-02-26 20:47:14 +00:00
'notification-mention' => '[[User:$1|$1]] 사용자가 [[$3#$2|$3]]에 당신을 {{GENTER:$1|언급했습니다}}.' ,
'notification-mention-flyout' => '$1 사용자가 [[$3#$2|$3]]에 당신을 {{GENDER:$1|언급했습니다}}.' ,
2013-04-11 20:21:12 +00:00
'notification-new-user' => '$1, {{SITENAME}}에 온 것을 환영합니다!' , # Fuzzy
2013-01-11 20:33:02 +00:00
'notification-reverted2' => '{{PLURAL:$4|[[$2]]에 대한 내 편집}}을 [[User:$1|$1]] 사용자가 {{GENDER:$1|되돌렸습니다}} $3' ,
'notification-reverted-flyout2' => '{{PLURAL:$4|$2에 대한 내 편집}}을 $1 사용자가 {{GENDER:$1|되돌렸습니다}} $3' ,
'notification-edit-talk-page-email-subject2' => '새 토론 문서 메시지가 있습니다' ,
'notification-edit-talk-page-email-body2' => ' {{ SITENAME }} $ 1 사용자가 내 토론 문서에 {{ GENDER : $ 1 | 게시했습니다 }} :
$ 3
더 보기 :
$ 2
2013-04-11 20:21:12 +00:00
$ 4 ' , # Fuzzy
2013-01-11 20:33:02 +00:00
'notification-edit-talk-page-email-batch-body2' => '$1 사용자가 내 토론 문서에 {{GENDER:$1|게시했습니다}}' ,
'notification-reverted-email-subject2' => '{{PLURAL:$3|$2에 대한 내 편집}}을 $1 사용자가 {{GENDER:$1|되돌렸습니다}}' ,
'notification-reverted-email-body2' => ' {{ PLURAL : $ 7 | $ 2 에 대한 내 편집 }} 을 $ 1 사용자가 {{ GENDER : $ 1 | 되돌렸습니다 }} .
$ 5
더 보기 :
$ 3
$ 6 ' ,
'notification-reverted-email-batch-body2' => '{{PLURAL:$3|$2에 대한 내 편집}}을 $1 사용자가 {{GENDER:$1|되돌렸습니다}}' ,
2013-02-26 20:47:14 +00:00
'notification-mention-email-subject' => '$1 사용자가 {{SITENAME}}에 당신을 {{GENDER:$1|언급했습니다}}' ,
'notification-mention-email-body' => ' {{ SITENAME }} $ 1 사용자가 $ 2 에 당신을 {{ GENDER : $ 1 | 언급했습니다 }} .
$ 3
더 보기 :
$ 4
$ 5 ' ,
'notification-mention-email-batch-body' => '$1 사용자가 $2에 당신을 {{GENDER:$1|언급했습니다}}' ,
2012-08-07 20:08:26 +00:00
'echo-email-subject-default' => '{{SITENAME}}에서 새 알림' ,
'echo-email-body-default' => ' {{ SITENAME }} 에서 새 알림이 있습니다 :
2012-12-02 20:41:24 +00:00
$ 1 ' ,
2012-12-19 19:58:50 +00:00
'echo-email-footer-default' => ' $ 2
2012-12-02 20:41:24 +00:00
2012-12-19 19:58:50 +00:00
보내는 이메일을 관리하려면 다음을 방문하세요 :
2012-12-02 20:41:24 +00:00
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2012-12-19 19:58:50 +00:00
$ 1 ' ,
2012-08-07 20:08:26 +00:00
'echo-link-new' => '새 {{PLURAL:$1|알림}} $1개' ,
2012-12-02 20:41:24 +00:00
'echo-link' => '알림' ,
2012-12-19 19:58:50 +00:00
'echo-overlay-link' => '모든 알림' ,
2013-04-11 20:21:12 +00:00
'echo-overlay-title' => '내 알림' , # Fuzzy
'echo-overlay-title-overflow' => '내 알림 (읽지 않은 알림 $2개 중 $1개 보는 중)' , # Fuzzy
2012-12-11 22:52:15 +00:00
'echo-date-today' => '오늘' ,
'echo-date-yesterday' => '어제' ,
'echo-load-more-error' => '더 많은 결과를 가져오는 동안 오류가 발생했습니다.' ,
2012-12-19 19:58:50 +00:00
'echo-email-batch-subject-daily' => '오늘 {{PLURAL:$2|알림}} $1개가 있습니다' ,
'echo-email-batch-subject-weekly' => '이번 주 {{PLURAL:$2|알림}} $1개가 있습니다' ,
'echo-email-batch-body-daily' => ' $ 1 ,
오늘 {{ SITENAME }} 에 {{ PLURAL : $ 3 | 알림 }} $ 2 개가 있습니다 . 여기서 볼 수 있습니다 :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
$ 5 ' ,
'echo-email-batch-body-weekly' => ' $ 1 ,
이번 주 {{ SITENAME }} 에 {{ PLURAL : $ 3 | 알림 }} $ 2 개가 있습니다 . 여기서 볼 수 있습니다 :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
$ 5 ' ,
2012-08-07 20:08:26 +00:00
);
2012-08-01 20:04:58 +00:00
/** Colognian ( Ripoarisch )
* @ author Purodha
*/
$messages [ 'ksh' ] = array (
2012-10-20 20:17:56 +00:00
'echo-desc' => 'Süßtehm för Medeilonge' ,
2012-08-01 20:04:58 +00:00
'prefs-echo' => 'Meddeilonge' ,
'echo-no-agent' => '[Keine]' ,
2012-10-20 20:17:56 +00:00
'echo-no-title' => '[Kein Sigg]' ,
2012-08-01 20:04:58 +00:00
'notifications' => 'Meddeilonge' ,
'echo-specialpage' => 'Ming Meddeilonge' ,
2012-09-24 19:14:09 +00:00
'echo-anon' => 'Do moß Desch [[Special:Userlogin/signup|aanmälde]] udder [[Special:UserLogin|enlogge]], öm Medeilonge krijje ze künne.' ,
2013-01-01 20:21:34 +00:00
'echo-none' => 'Ende läzde Zigg häß De kein Medeilonge krääje.' , # Fuzzy
2012-09-24 19:14:09 +00:00
'notification-new-user' => '$1, welkumme op {{GENDER:Dative|{{SITENAME}}}}!' ,
2013-01-04 21:26:29 +00:00
'notification-new-user-content' => 'Bes esu jood un donn Ding Beidrääsch op Klaafsigge met vier Tilde (~~~~) „ongerschriive“.' ,
2012-08-01 20:04:58 +00:00
'echo-email-subject-default' => 'En neue Medeilong op {{GRAMMAR:dative|{{ucfirst:{{SITENAME}}}}}}' ,
'echo-email-body-default' => ' Do häss_en neue Medeilong op {{ GRAMMAR : dative | {{ ucfirst : {{ SITENAME }}}}}} :
$ 1 ' ,
'echo-link-new' => '{{PLURAL:$1|Ein neue Medeilong|$1 neue Medeilonge|Kein neue Medeilong}}' ,
2012-12-09 20:25:32 +00:00
'echo-link' => 'Ming Medeilonge' , # Fuzzy
2012-12-11 22:52:15 +00:00
'echo-overlay-link' => 'Alle Medeilonge{{int:ellipsis}}' , # Fuzzy
2012-08-01 20:04:58 +00:00
'echo-overlay-title' => 'Ming Medeilonge' ,
2013-01-01 20:21:34 +00:00
'echo-date-today' => 'Hück' ,
'echo-date-yesterday' => 'Jäßtere' ,
2012-08-01 20:04:58 +00:00
);
2012-06-17 20:16:45 +00:00
/** Luxembourgish ( Lëtzebuergesch )
* @ author Robby
*/
$messages [ 'lb' ] = array (
2012-10-18 19:21:27 +00:00
'echo-desc' => 'Notifikatiouns-System' ,
2012-06-17 20:16:45 +00:00
'prefs-echo' => 'Notifikatiounen' ,
2012-12-15 23:54:58 +00:00
'prefs-displaynotifications' => 'Optioune vum Affichage' ,
2013-04-11 20:21:12 +00:00
'prefs-echosubscriptions' => 'Mech iwwer dës Evenementer informéieren' ,
2013-03-30 18:03:30 +00:00
'echo-pref-web' => 'Web' ,
2013-04-11 20:21:12 +00:00
'echo-pref-email' => 'E-Mail' ,
2012-12-22 22:08:46 +00:00
'echo-pref-email-frequency-daily' => 'All Dag e Resumé vun den Notifikatiounen' ,
'echo-pref-email-frequency-weekly' => 'All Woch e Resumé vun den Notifikatiounen' ,
2013-04-03 19:44:08 +00:00
'echo-dismiss-button' => 'Verwerfen' ,
2013-04-06 19:50:26 +00:00
'echo-dismiss-message' => 'All $1-Notifikatiounen ausschalten' ,
2013-04-18 19:43:00 +00:00
'echo-category-title-article-linked' => 'Säitelink' , # Fuzzy
'echo-category-title-reverted' => 'Ännerung zréckgesat' , # Fuzzy
'echo-category-title-mention' => 'Mentioun' , # Fuzzy
'echo-category-title-system' => 'System' , # Fuzzy
2012-06-17 20:16:45 +00:00
'echo-no-agent' => '[Keen]' ,
2013-04-08 19:58:35 +00:00
'echo-no-title' => '[Keng Säit]' ,
2013-04-06 19:50:26 +00:00
'echo-error-preference' => 'Feeler:Benotzerastellung konnt net gemaacht ginn' ,
2012-06-17 20:16:45 +00:00
'notifications' => 'Notifikatiounen' ,
2013-03-30 18:03:30 +00:00
'tooltip-pt-notifications' => 'Är Notifikatiounen' ,
'echo-specialpage' => 'Notifikatiounen' ,
2012-08-08 19:17:23 +00:00
'echo-anon' => 'Fir Notifikatiounen ze kréien, [[Special:Userlogin/signup|maacht e Benotzerkont op]] oder [[Special:UserLogin|loggt Iech an]]' ,
2012-12-22 22:08:46 +00:00
'echo-none' => 'Dir hutt keng Notifikatiounen.' ,
2013-03-03 21:12:31 +00:00
'echo-more-info' => 'Méi Informatiounen' ,
2013-04-06 19:50:26 +00:00
'notification-new-user' => 'Wëllkomm op {{SITENAME}}, $1! Mir si frou Iech begréissen ze kënnen.' ,
2013-03-30 18:03:30 +00:00
'notification-edit-talk-page-email-subject2' => 'Dir hutt en neie Message op Ärer Diskussiounssäit' ,
2013-04-11 20:21:12 +00:00
'notification-edit-talk-page-email-body2' => ' $ 1
$ 3
Méi weisen :
$ 2
$ 4 ' ,
2013-04-06 19:50:26 +00:00
'notification-page-linked-email-subject' => 'Eng Säit déi Dir ugeluecht hutt gouf op {{SITENAME}} verlinkt' ,
2013-04-11 20:21:12 +00:00
'notification-mention-email-batch-body' => '$1 {{GENDER:$1|huet}} Iech op $2 ernimmt' ,
2013-03-30 18:03:30 +00:00
'notification-user-rights-email-subject' => 'Är Benotzerrechter op {{SITENAME}} hu geännert' ,
2013-04-08 19:58:35 +00:00
'notification-user-rights-email-batch-body' => 'Är Benotzerrechter goufe vum $1 {{GENDER:$1|geännert}}. $2' ,
2012-06-17 20:16:45 +00:00
'echo-email-subject-default' => 'Nei Notifikatioun op {{SITENAME}}' ,
'echo-email-body-default' => ' Dir hutt eng nei Notifikatioun op {{ SITENAME }} :
$ 1 ' ,
2013-04-06 19:50:26 +00:00
'echo-email-batch-body-default' => 'Dir hutt eng Notifikatioun' ,
2012-07-10 19:38:32 +00:00
'echo-link-new' => '$1 nei {{PLURAL:$1|Notifikatioun|Notifikatiounen}}' ,
2012-11-11 20:52:58 +00:00
'echo-link' => 'Notifikatiounen' ,
2012-12-15 23:54:58 +00:00
'echo-overlay-link' => 'All Notifikatiounen' ,
2013-03-30 18:03:30 +00:00
'echo-overlay-title' => 'Notifikatiounen' ,
2012-12-15 23:54:58 +00:00
'echo-date-today' => 'Haut' ,
'echo-date-yesterday' => 'Gëschter' ,
2012-06-17 20:16:45 +00:00
);
2012-07-09 20:08:39 +00:00
/** Lithuanian ( lietuvių )
* @ author Eitvys200
*/
$messages [ 'lt' ] = array (
'prefs-echo' => 'Pranešimai' ,
2012-12-23 21:49:55 +00:00
'echo-no-agent' => '[Niekas]' ,
'echo-date-today' => 'Šiandien' ,
'echo-date-yesterday' => 'Vakar' ,
2012-07-09 20:08:39 +00:00
);
2013-04-06 19:50:26 +00:00
/** Latvian ( latviešu )
* @ author Admresdeserv .
*/
$messages [ 'lv' ] = array (
'echo-email-batch-body-default' => 'Jums ir jauns paziņojums' ,
);
2012-06-17 20:16:45 +00:00
/** Macedonian ( македонски )
* @ author Bjankuloski06
*/
$messages [ 'mk' ] = array (
2012-10-16 19:18:08 +00:00
'echo-desc' => 'Известителен систем' ,
2012-06-17 20:16:45 +00:00
'prefs-echo' => 'Известувања' ,
2013-04-19 20:27:12 +00:00
'prefs-emailsettings' => 'Поставки за е -пошта' ,
2012-12-04 21:05:46 +00:00
'prefs-displaynotifications' => 'Нагодувања на приказот' ,
2013-04-15 20:57:21 +00:00
'prefs-echosubscriptions' => 'Известувај ме за следниве настани' ,
2013-04-19 20:27:12 +00:00
'echo-pref-send-me' => 'Испрати ми:' ,
'echo-pref-send-to' => 'Испрати на:' ,
2013-02-14 20:29:43 +00:00
'echo-pref-web' => 'Н а вики' ,
'echo-pref-email' => 'Е -пошта' ,
2012-12-15 23:54:58 +00:00
'echo-pref-email-frequency-never' => 'Н е ми праќај известувања на е -пошта' ,
'echo-pref-email-frequency-immediately' => 'Поединечни известувања, едно по едно' ,
'echo-pref-email-frequency-daily' => 'Дневен преглед на известувањата' ,
'echo-pref-email-frequency-weekly' => 'Неделен преглед на известувањата' ,
2013-04-18 19:43:00 +00:00
'echo-pref-notify-show-link' => 'Прикажувај известувања во мојот алатник' ,
2013-02-14 20:29:43 +00:00
'echo-dismiss-button' => 'Тргни' ,
'echo-dismiss-message' => 'Исклучи ги сите $1 известувања' ,
2013-03-06 21:51:05 +00:00
'echo-dismiss-prefs-message' => 'Овие можете пак да ги вклучите во Нагодувања' ,
2013-04-19 20:27:12 +00:00
'echo-category-title-edit-user-talk' => '{{PLURAL:$1|Објава|Објави}} на стран. за разговор' ,
'echo-category-title-article-linked' => '{{PLURAL:$1|Врска|Врски}} до стран.' ,
'echo-category-title-reverted' => '{{PLURAL:$1|Вратено уредување|Вратени уредувања}}' ,
'echo-category-title-mention' => '{{PLURAL:$1|Спомнување|Спомнувања}}' ,
'echo-category-title-other' => '{{PLURAL:$1|Друго}}' ,
'echo-category-title-system' => '{{PLURAL:$1|Систем}}' ,
2012-06-17 20:16:45 +00:00
'echo-no-agent' => '[Никој]' ,
2012-10-16 19:18:08 +00:00
'echo-no-title' => '[Нема страница]' ,
2012-11-02 19:56:47 +00:00
'echo-error-no-formatter' => 'Нема зададено форматирање за ова известување' ,
2013-02-15 20:32:50 +00:00
'echo-error-preference' => 'Грешка: Н е можам да г о зададам нагодувањето' ,
'echo-error-token' => 'Грешка: Н е можев да г о добијам корисничкиот жетон' ,
2012-06-17 20:16:45 +00:00
'notifications' => 'Известувања' ,
2012-12-29 19:39:13 +00:00
'tooltip-pt-notifications' => 'Вашите известувања' ,
2013-03-29 20:37:31 +00:00
'echo-specialpage' => 'Известувања' ,
2012-08-06 19:26:34 +00:00
'echo-anon' => 'З а да добивате известувања, [[Special:Userlogin/signup|направете сметка]] или [[Special:UserLogin|најавете с е ]].' ,
2012-12-18 20:35:47 +00:00
'echo-none' => 'Немате известувања.' ,
2013-01-09 22:12:36 +00:00
'echo-more-info' => 'Повеќе информации' ,
2013-04-17 19:33:47 +00:00
'echo-feedback' => 'Мислења' ,
2013-01-09 22:12:36 +00:00
'notification-edit-talk-page2' => '[[User:$1|$1]] {{GENDER:$1|објави}} на вашата [[User talk:$2|страница за разговор]].' ,
'notification-edit-talk-page-flyout2' => '$1 {{GENDER:$1|објави}} на вашата [[User talk:$2|страница за разговор]].' ,
2013-04-05 22:26:28 +00:00
'notification-page-linked' => '[[$2|$2]] е {{GENDER:$1|наведена}} од [[$3|$3]]: [[Special:WhatLinksHere/$2|Погл. сите врски до страницава]]' ,
'notification-page-linked-flyout' => '$2 е {{GENDER:$1|наведена}} на $3: [[Special:WhatLinksHere/$2|Погл. сите врски до страницава]]' ,
2013-01-09 22:12:36 +00:00
'notification-add-comment2' => '[[User:$1|$1]] {{GENDER:$1|коментираше}} на „[[$3|$2]]“ на страницата за разговор „$4“' ,
'notification-add-talkpage-topic2' => '[[User:$1|$1]] {{GENDER:$1|ј а објави}} новата тема „$2“ на [[$3]]' ,
'notification-add-talkpage-topic-yours2' => '[[User:$1|$1]] {{GENDER:$1|ви испрати}} порака: „[[$3#$2|$2]]“' ,
'notification-add-comment-yours2' => '[[User:$1|$1]] {{GENDER:$1|коментираше}} на „[[$3#$2|$2]]“ на вашата страница за разговор' ,
2013-02-26 20:47:14 +00:00
'notification-mention' => '[[User:$1|$1]] {{GENDER:$1|ве спомна}} на „[[$3#$2|$3]]“.' ,
'notification-mention-flyout' => '$1 {{GENDER:$1|ве спомна}} на „[[$3#$2|$3]]“.' ,
2013-04-15 20:57:21 +00:00
'notification-user-rights' => 'Вашите кориснички права с е [[Special:Log/rights/$1|{{GENDER:$1|изменети}}]] од [[User:$1|$1]]. $2. [[Special:ListGroupRights|Дознајте повеќе]]' ,
2013-03-22 20:04:44 +00:00
'notification-user-rights-flyout' => 'Вашите кориснички права с е {{GENDER:$1|изменети}} од $1. $2. [[Special:ListGroupRights|Дознајте повеќе]]' ,
'notification-user-rights-add' => 'С е г а членувате во {{PLURAL:$2|оваа група|овие групи}}: $1' ,
'notification-user-rights-remove' => 'Повеќе не членувате во {{PLURAL:$2|оваа група|овие групи}}: $1' ,
2013-04-05 22:26:28 +00:00
'notification-new-user' => 'Добре дојдовте на {{SITENAME}}, $1! Драго ни е што сте тука.' ,
2013-01-10 21:07:13 +00:00
'notification-reverted2' => '[[User:$1|$1]] {{PLURAL:$4|г о |ги}} {{GENDER:$1|врати}} {{PLURAL:$4|вашето уредување на [[$2]]|вашите уредувања на [[$2]]}} $3' ,
2013-01-09 22:12:36 +00:00
'notification-reverted-flyout2' => '$1 {{PLURAL:$4|г о |ги}} {{GENDER:$1|врати}} {{PLURAL:$4|вашето уредување на $2|вашите уредувања на $2}} $3' ,
'notification-edit-talk-page-email-subject2' => 'Имате нова порака' ,
2013-04-15 20:57:21 +00:00
'notification-edit-talk-page-email-body2' => ' $ 1
2012-11-02 19:56:47 +00:00
2012-12-18 20:35:47 +00:00
$ 3
2013-01-04 21:26:29 +00:00
Погледајте повеќе :
2013-01-09 22:12:36 +00:00
$ 2
2012-12-18 20:35:47 +00:00
2013-04-15 20:57:21 +00:00
$ 4 ' ,
2013-01-09 22:12:36 +00:00
'notification-edit-talk-page-email-batch-body2' => '$1 {{GENDER:$1|објави}} на вашата страница за разговор' ,
2013-04-05 22:26:28 +00:00
'notification-page-linked-email-subject' => 'Страница што вие ј а започнавте е наведена на {{SITENAME}}' ,
2013-04-15 20:57:21 +00:00
'notification-page-linked-email-body' => ' $ 1
2013-04-05 22:26:28 +00:00
2013-04-15 20:57:21 +00:00
Погл . сите врски до оваа страница :
2013-04-05 22:26:28 +00:00
{{ canonicalurl : {{ #special:WhatLinksHere/$2}}}}
2013-04-15 20:57:21 +00:00
$ 3 ' ,
2013-04-05 22:26:28 +00:00
'notification-page-linked-email-batch-body' => '$2 е {{GENDER:$1|наведена}} на $3' ,
2013-01-10 21:07:13 +00:00
'notification-reverted-email-subject2' => '$1 {{PLURAL:$3|г о |ги}} {{GENDER:$1|врати}} {{PLURAL:$3|вашето уредување на $2|вашите уредувања на $2}}' ,
'notification-reverted-email-body2' => ' $ 1 {{ PLURAL : $ 7 | г о | ги }} {{ GENDER : $ 1 | врати }} {{ PLURAL : $ 7 | вашето уредување на $ 2 | вашите уредувања на $ 2 }} .
$ 5
Погледајте повеќе :
$ 3
$ 6 ' ,
'notification-reverted-email-batch-body2' => '$1 {{PLURAL:$3|г о |ги}} {{GENDER:$1|врати}} {{PLURAL:$3|вашето уредување на $2|вашите уредувања на $2}}' ,
2013-02-26 20:47:14 +00:00
'notification-mention-email-subject' => '$1 {{GENDER:$1|ве спомна}} на {{SITENAME}}' ,
'notification-mention-email-body' => ' Корисникот $ 1 {{ GENDER : $ 1 | mentioned }} од {{ SITENAME }} ве спомна на „ $ 2 “ .
$ 3
Погледајте повеќе :
$ 4
$ 5 ' ,
'notification-mention-email-batch-body' => '$1 {{GENDER:$1|ве спомна}} на „$2“' ,
2013-03-22 20:04:44 +00:00
'notification-user-rights-email-subject' => 'Вашите кориснички права на {{SITENAME}} с е изменети' ,
'notification-user-rights-email-body' => ' Вашите кориснички права с е {{ GENDER : $ 1 | изменети }} од $ 1. $ 2
Погледајте повеќе :
{{ canonicalurl : {{ #special:ListGroupRights}}}}
$ 3 ' ,
'notification-user-rights-email-batch-body' => 'Вашите кориснички права с е {{GENDER:$1|изменети}} од $1. $2' ,
2012-06-17 20:16:45 +00:00
'echo-email-subject-default' => 'Ново известување на {{SITENAME}}' ,
'echo-email-body-default' => ' Имате ново известување на {{ SITENAME }} :
2012-12-02 20:41:24 +00:00
$ 1 ' ,
2013-04-05 22:26:28 +00:00
'echo-email-batch-body-default' => 'Имате ново известување' ,
2012-12-18 20:35:47 +00:00
'echo-email-footer-default' => ' $ 2
2012-12-02 20:41:24 +00:00
2012-12-18 20:35:47 +00:00
Ако сакате да изберете какви пораки да добивате , појдете на страницата :
2013-04-19 20:27:12 +00:00
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}} $1
2012-12-02 20:41:24 +00:00
2013-04-19 20:27:12 +00:00
$ 1 ' ,
2012-07-02 22:12:04 +00:00
'echo-link-new' => '$1 {{PLURAL:$1|ново известување|нови известувања}}' ,
2012-11-06 20:57:54 +00:00
'echo-link' => 'Известувања' ,
2012-12-12 21:12:57 +00:00
'echo-overlay-link' => 'Сите известувања' ,
2013-03-29 20:37:31 +00:00
'echo-overlay-title' => 'Известувања' ,
'echo-overlay-title-overflow' => 'Известувања (приказ на $1 од $2 непрочитани)' ,
2013-04-19 20:27:12 +00:00
'echo-mark-all-as-read' => 'Означи ги сите како прочитани' ,
2012-12-12 21:12:57 +00:00
'echo-date-today' => 'Денес' ,
'echo-date-yesterday' => 'Вчера' ,
'echo-load-more-error' => 'С е појави грешка при обидот да добијам повеќе резултати.' ,
2013-04-05 22:26:28 +00:00
'notification-edit-talk-page-bundle' => '$1 и {{PLURAL:$4|уште еден друг|уште $3 други}} {{GENDER:$1|објавија}} нешто на вашата [[User talk:$2|страница за разговор]].' ,
'notification-page-linked-bundle' => '$2 е {{GENDER:$1|наведена}} на $3 и уште $4 {{PLURAL:$5|страница|страници}}. [[Special:WhatLinksHere/$2|Погл. сите врски до страницава]]' ,
2013-04-15 20:57:21 +00:00
'notification-edit-user-talk-email-batch-bundle-body' => '$1 и уште {{PLURAL:$3|еден|$2 корисници}} {{GENDER:$1|објавија}} нешто на вашата страница за разговор' ,
'notification-page-linked-email-batch-bundle-body' => '$2 беше {{GENDER:$1|наведена}} од $3 и уште {{PLURAL:$5|една страница|$4 страници}}' ,
2013-04-19 20:27:12 +00:00
'echo-email-batch-subject-daily' => 'З а денес имате {{PLURAL:$2|ново известување|нови известувања}}' ,
'echo-email-batch-subject-weekly' => 'Неделава имате {{PLURAL:$2|ново известување|нови известувања}}' ,
2012-12-14 20:35:28 +00:00
'echo-email-batch-body-daily' => ' $ 1 ,
2013-04-19 20:27:12 +00:00
Денес имате {{ PLURAL : $ 3 | ново известување | нови известувања }} на {{ SITENAME }} . Погледајте тука :
2012-12-14 20:35:28 +00:00
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-19 20:27:12 +00:00
$ 5 ' ,
2012-12-14 20:35:28 +00:00
'echo-email-batch-body-weekly' => ' $ 1 ,
2013-04-19 20:27:12 +00:00
Неделава имате {{ PLURAL : $ 3 | ново известување | нови известувања }} на {{ SITENAME }} . Погледајте тука :
2012-12-14 20:35:28 +00:00
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-19 20:27:12 +00:00
$ 5 ' ,
2012-06-17 20:16:45 +00:00
);
2012-08-13 19:47:46 +00:00
/** Malayalam ( മലയാളം )
* @ author Praveenp
2013-03-29 20:37:31 +00:00
* @ author Santhosh . thottingal
2012-08-13 19:47:46 +00:00
*/
$messages [ 'ml' ] = array (
2012-11-24 20:59:45 +00:00
'echo-desc' => 'അറിയിപ്പ് വ്യവസ്ഥ' ,
'prefs-echo' => 'അറിയിപ്പുകൾ' ,
2013-01-15 21:31:25 +00:00
'prefs-displaynotifications' => 'പ്രദർശന ഐച്ഛികങ്ങൾ' ,
2013-04-11 20:21:12 +00:00
'echo-pref-web' => 'വെബ്' ,
'echo-pref-email' => 'ഇമെയിൽ' ,
2013-01-15 21:31:25 +00:00
'echo-pref-email-frequency-never' => 'എനിക്ക് ഇമെയിൽ അറിയിപ്പുകൾ വേണ്ട' ,
'echo-pref-email-frequency-immediately' => 'ഓരോ വേളയിലും വ്യത്യസ്ത അറിയിപ്പുകൾ' ,
'echo-pref-email-frequency-daily' => 'ഒരു ദിവസത്തെ അറിയിപ്പുകളുടെ അവലോകനം' ,
'echo-pref-email-frequency-weekly' => 'ഒരു ആഴ്ചയിലെ അറിയിപ്പുകളുടെ അവലോകനം' ,
2013-04-11 20:21:12 +00:00
'echo-dismiss-button' => 'ഒഴിവാക്കുക' ,
'echo-dismiss-message' => 'എല്ലാ $1 അറിയിപ്പുകളും പ്രവർത്തനരഹിതമാക്കുക' ,
'echo-dismiss-prefs-message' => 'താങ്കൾക്കിവ ക്രമീകരണങ്ങളിൽ നിന്ന് സജ്ജമാക്കാവുന്നതാണ്' ,
2013-04-18 19:43:00 +00:00
'echo-category-title-other' => 'മറ്റുള്ളവ' , # Fuzzy
2012-08-13 19:47:46 +00:00
'echo-no-agent' => '[ആരുമില്ല]' ,
2012-11-24 20:59:45 +00:00
'echo-no-title' => '[താൾ ഇല്ല]' ,
'echo-error-no-formatter' => 'അറിയിപ്പിനായി യാതൊരു രൂപവും നിർവ്വചിച്ചിട്ടില്ല' ,
2012-08-13 19:47:46 +00:00
'notifications' => 'അറിയിപ്പുകൾ' ,
2013-01-15 21:31:25 +00:00
'tooltip-pt-notifications' => 'താങ്കൾക്കുള്ള അറിയിപ്പുകൾ' ,
2013-03-29 20:37:31 +00:00
'echo-specialpage' => 'അറിയിപ്പുകൾ' ,
2012-11-24 20:59:45 +00:00
'echo-anon' => 'അറിയിപ്പുകൾ ലഭിക്കാനായി, [[Special:Userlogin/signup|അംഗത്വമെടുക്കയോ]] [[Special:UserLogin|പ്രവേശിക്കുകയോ]] ചെയ്യേണ്ടതാണ്.' ,
2013-02-13 20:59:03 +00:00
'echo-none' => 'താങ്കൾക്ക് അറിയിപ്പുകളൊന്നുമില്ല.' ,
2013-01-15 21:31:25 +00:00
'echo-more-info' => 'കൂടുതൽ വിവരങ്ങൾ' ,
2013-04-18 19:43:00 +00:00
'echo-feedback' => 'പ്രതികരണം' ,
2013-01-15 21:31:25 +00:00
'notification-edit-talk-page2' => '[[User:$1|$1]] താങ്കളുടെ on your [[User talk:$2|സംവാദത്താളിൽ]] {{GENDER:$1|കുറിപ്പിട്ടു}} .' ,
2013-02-13 20:59:03 +00:00
'notification-edit-talk-page-flyout2' => 'താങ്കളുടെ [[User talk:$2|സംവാദത്താളിൽ]] $1 {{GENDER:$1|കുറിപ്പിട്ടിട്ടുണ്ട്}}.' ,
2013-04-04 19:58:34 +00:00
'notification-new-user' => '{{SITENAME}} സംരംഭത്തിലേയ്ക്ക് സ്വാഗതം, $1!' , # Fuzzy
2012-08-13 19:47:46 +00:00
'echo-email-subject-default' => '{{SITENAME}} സംരംഭത്തിൽ അറിയിപ്പുണ്ട്' ,
'echo-email-body-default' => ' {{ SITENAME }} സംരംഭത്തിൽ താങ്കൾക്ക് ഒരു അറിയിപ്പുണ്ട് :
$ 1 ' ,
'echo-link-new' => 'പുതിയ {{PLURAL:$1|അറിയിപ്പ്|$1 അറിയിപ്പുകൾ}}' ,
2012-11-24 20:59:45 +00:00
'echo-link' => 'എനിക്കുള്ള അറിയിപ്പുകൾ' , # Fuzzy
2012-12-11 22:52:15 +00:00
'echo-overlay-link' => 'എല്ലാ അറിയിപ്പുകളും...' , # Fuzzy
2013-03-29 20:37:31 +00:00
'echo-overlay-title' => 'അറിയിപ്പുകൾ' ,
2013-04-02 19:02:29 +00:00
'echo-overlay-title-overflow' => 'അറിയിപ്പുകൾ (വായിക്കാത്ത $2 എണ്ണത്തിലെ $1 എണ്ണം കാണിക്കുന്നു)' ,
2013-02-13 20:59:03 +00:00
'echo-date-today' => 'ഇന്ന്' ,
'echo-date-yesterday' => 'ഇന്നലെ' ,
2012-08-13 19:47:46 +00:00
);
2012-08-10 19:18:21 +00:00
/** Malay ( Bahasa Melayu )
* @ author Anakmalaysia
*/
$messages [ 'ms' ] = array (
2012-10-22 01:14:40 +00:00
'echo-desc' => 'Sistem pemberitahuan' ,
2012-08-10 19:18:21 +00:00
'prefs-echo' => 'Pemberitahuan' ,
2012-12-09 20:25:32 +00:00
'prefs-displaynotifications' => 'Pilihan paparan' ,
2013-02-15 20:32:50 +00:00
'prefs-emailfrequency' => 'Bilakah ingin anda menerima pemberitahuan melalui e-mel?' ,
2013-04-11 20:21:12 +00:00
'prefs-echosubscriptions' => 'Beritahu saya apabila seseorang…' , # Fuzzy
2013-02-15 20:32:50 +00:00
'echo-pref-web' => 'Web' ,
'echo-pref-email' => 'E-mel' ,
2012-12-14 20:35:28 +00:00
'echo-pref-email-frequency-never' => 'Jangan hantar sebarang pemberitahuan e-mel kepada saya' ,
'echo-pref-email-frequency-immediately' => 'Pemberitahuan satu persatu' ,
'echo-pref-email-frequency-daily' => 'Ringkasan pemberitahuan harian' ,
'echo-pref-email-frequency-weekly' => 'Ringkasan pemberitahuan mingguan' ,
'echo-pref-notify-hide-link' => 'Sorokkan pautan dan lencana untuk pemberitahuan di dalam palang alatan saya' ,
2013-02-15 20:32:50 +00:00
'echo-dismiss-button' => 'Singkir' ,
'echo-dismiss-message' => 'Matikan semua pemberitahuan $1' ,
2013-03-13 21:11:21 +00:00
'echo-dismiss-prefs-message' => 'Anda boleh memasangnya semula dalam Keutamaan' ,
2013-03-21 22:40:37 +00:00
'echo-category-title-edit-user-talk' => 'Pos halaman perbualan' ,
2013-04-11 20:21:12 +00:00
'echo-category-title-article-linked' => 'Halaman telah dipautkan' , # Fuzzy
'echo-category-title-reverted' => 'Suntingan dibalikkan' , # Fuzzy
2013-04-02 19:02:29 +00:00
'echo-category-title-mention' => 'Sebutan' ,
'echo-category-title-other' => 'Lain-lain' ,
'echo-category-title-system' => 'Sistem' ,
2012-08-10 19:18:21 +00:00
'echo-no-agent' => '[Tiada Sesiapa]' ,
2012-10-22 01:14:40 +00:00
'echo-no-title' => '[Tiada halaman]' ,
2012-11-02 19:56:47 +00:00
'echo-error-no-formatter' => 'Tiada pemformatan yang ditetapkan untuk pemberitahuan' ,
2013-02-15 20:32:50 +00:00
'echo-error-preference' => 'Ralat: Keutamaan pengguna tidak boleh ditetapkan' ,
'echo-error-token' => 'Ralat: Token pengguna tidak dapat diambil' ,
2012-08-10 19:18:21 +00:00
'notifications' => 'Pemberitahuan' ,
2012-12-30 19:42:03 +00:00
'tooltip-pt-notifications' => 'Pemberitahuan anda' ,
2013-04-02 19:02:29 +00:00
'echo-specialpage' => 'Pemberitahuan' ,
2012-08-10 19:18:21 +00:00
'echo-anon' => 'Untuk menerima pemberitahuan, sila [[Special:Userlogin/signup|buka akaun]] atau [[Special:UserLogin|log masuk]].' ,
2012-12-19 19:58:50 +00:00
'echo-none' => 'Tiada pemberitahuan untuk anda.' ,
2013-02-08 21:32:02 +00:00
'echo-more-info' => 'Maklumat lanjut' ,
2013-02-15 20:32:50 +00:00
'notification-edit-talk-page2' => '[[User:$1|$1]] telah mengepos di [[User talk:$2|halaman perbualan]] anda.' ,
'notification-edit-talk-page-flyout2' => '$1 telah mengepos di [[User talk:$2|halaman perbualan]] anda.' ,
'notification-add-comment2' => '[[User:$1|$1]] telah {{GENDER:$1|mengulas}} tentang "[[$3|$2]]" di halaman perbualan "$4"' ,
'notification-add-talkpage-topic2' => '[[User:$1|$1]] telah mengepos topik baru, "$2", di [[$3]]' ,
'notification-add-talkpage-topic-yours2' => '[[User:$1|$1]] telah {{GENDER:$1|mengirim}} pesanan kepada anda: "[[$3#$2|$2]]"' ,
'notification-add-comment-yours2' => '[[User:$1|$1]] telah {{GENDER:$1|mengulas}} tentang "[[$3#$2|$2]]" di halaman perbualan anda' ,
2013-02-28 20:39:02 +00:00
'notification-mention' => '[[User:$1|$1]] {{GENDER:$1|menyebut}} anda di [[$3#$2|$3]].' ,
'notification-mention-flyout' => '$1 {{GENDER:$1|menyebut}} anda di [[$3#$2|$3]].' ,
2013-04-11 20:21:12 +00:00
'notification-user-rights' => 'Hak-hak pengguna anda telah {{GENDER:$1|diubah}} oleh [[User:$1|$1]]. $2. [[Special:ListGroupRights|Ketahui lebih lanjut]]' , # Fuzzy
2013-04-02 19:02:29 +00:00
'notification-user-rights-flyout' => 'Hak-hak pengguna anda telah {{GENDER:$1|diubah}} oleh $1. $2. [[Special:ListGroupRights|Ketahui lebih lanjut]]' ,
'notification-user-rights-add' => 'Anda kini menganggotai {{PLURAL:$2|kumpulan|kumpulan-kumpulan ini:}} $1' ,
'notification-user-rights-remove' => 'Anda tidak lagi menganggotai {{PLURAL:$2|kumpulan|kumpulan-kumpulan ini:}} $1' ,
2013-04-04 19:58:34 +00:00
'notification-new-user' => 'Selamat datang ke {{SITENAME}}, $1!' , # Fuzzy
2013-02-15 20:32:50 +00:00
'notification-reverted2' => '{{PLURAL:$4|Suntingan|Suntingan-suntingan}} anda di [[$2]] telah {{GENDER:$1|dibalikkan}} oleh [[User:$1|$1]] $3' ,
'notification-reverted-flyout2' => '{{PLURAL:$4|Suntingan|Suntingan-suntingan}} anda di $2 telah {{GENDER:$1|dibalikkan}} oleh $1 $3' ,
'notification-edit-talk-page-email-subject2' => 'Anda mendapat pesanan baru di halaman perbualan' ,
'notification-edit-talk-page-email-body2' => ' Pengguna {{ SITENAME }}, $ 1 telah {{ GENDER : $ 1 | mengepos }} di halaman perbualan anda :
$ 3
Baca selanjutnya :
$ 2
2013-04-11 20:21:12 +00:00
$ 4 ' , # Fuzzy
2013-02-15 20:32:50 +00:00
'notification-edit-talk-page-email-batch-body2' => '$1 {{GENDER:$1|mengepos}} pada halaman perbualan anda' ,
'notification-reverted-email-subject2' => '{{PLURAL:$3|Suntingan|Suntingan-suntingan}} anda di $2 telah dibalikkan oleh $1' ,
'notification-reverted-email-body2' => ' {{ PLURAL : $ 7 | Suntingan | Suntingan - suntingan }} anda di $ 2 telah {{ GENDER : $ 1 | dibalikkan }} oleh $ 1.
$ 5
Baca selanjutnya :
$ 3
$ 6 ' ,
'notification-reverted-email-batch-body2' => '{{PLURAL:$3|Suntingan|Suntingan-suntingan}} anda di $2 telah dibalikkan oleh $1' ,
2013-02-28 20:39:02 +00:00
'notification-mention-email-subject' => '$1 {{GENDER:$1|menyebut}} anda di {{SITENAME}}' ,
'notification-mention-email-body' => ' Pengguna {{ SITENAME }}, $ 1 telah {{ GENDER : $ 1 | menyebut }} anda di $ 2.
$ 3
Baca selanjutnya :
$ 4
$ 5 ' ,
'notification-mention-email-batch-body' => '$1 {{GENDER:$1|menyebut}} anda di $2' ,
2013-04-02 19:02:29 +00:00
'notification-user-rights-email-subject' => 'Hak-hak pengguna anda telah berubah di {{SITENAME}}' ,
'notification-user-rights-email-body' => ' Hak - hak pengguna anda telah {{ GENDER : $ 1 | diubah }} oleh $ 1. $ 2
Lihat selanjutnya :
{{ canonicalurl : {{ #special:ListGroupRights}}}}
$ 3 ' ,
'notification-user-rights-email-batch-body' => 'Hak-hak pengguna anda telah {{GENDER:$1|diubah}} oleh $1. $2' ,
2012-08-10 19:18:21 +00:00
'echo-email-subject-default' => 'Pemberitahuan baru di {{SITENAME}}' ,
'echo-email-body-default' => ' Anda menerima pemberitahuan baru di {{ SITENAME }} :
2012-12-09 20:25:32 +00:00
$ 1 ' ,
2012-12-19 19:58:50 +00:00
'echo-email-footer-default' => ' $ 2
2012-12-09 20:25:32 +00:00
2012-12-19 19:58:50 +00:00
Untuk mengubah pesanan - pesanan e - mel yang anda hendak kami hantar , kunjungi :
2012-12-09 20:25:32 +00:00
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2012-12-19 19:58:50 +00:00
$ 1 ' ,
2012-08-10 19:18:21 +00:00
'echo-link-new' => '$1 pemberitahuan baru' ,
2012-11-26 20:33:36 +00:00
'echo-link' => 'Pemberitahuan' ,
2012-12-13 20:27:58 +00:00
'echo-overlay-link' => 'Semua pemberitahuan' ,
2013-04-02 19:02:29 +00:00
'echo-overlay-title' => 'Pemberitahuan' ,
'echo-overlay-title-overflow' => 'Pemberitahuan (memaparkan $1 daripada $2 yang belum dibaca)' ,
2012-12-13 20:27:58 +00:00
'echo-date-today' => 'Hari ini' ,
'echo-date-yesterday' => 'Semalam' ,
'echo-load-more-error' => 'Ralat berlaku ketika mengambil lebih banyak hasil.' ,
2012-12-14 20:35:28 +00:00
'echo-email-batch-subject-daily' => 'Anda ada $1 {{PLURAL:$2|pemberitahuan}} hari ini' ,
'echo-email-batch-subject-weekly' => 'Anda ada $1 {{PLURAL:$2|pemberitahuan}} minggu ini' ,
'echo-email-batch-body-daily' => ' $ 1 ,
Anda ada $ 2 {{ PLURAL : $ 3 | pemberitahuan }} di {{ SITENAME }} hari ini . Sila baca di sini :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
$ 5 ' ,
'echo-email-batch-body-weekly' => ' $ 1 ,
Anda ada $ 2 {{ PLURAL : $ 3 | pemberitahuan }} di {{ SITENAME }} minggu ini . Sila baca di sini :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
$ 5 ' ,
2013-04-02 19:02:29 +00:00
'echo-email-batch-category-header' => '$1 pemberitahuan $2' ,
2012-08-10 19:18:21 +00:00
);
2012-08-15 19:50:03 +00:00
/** Maltese ( Malti )
* @ author Chrisportelli
*/
$messages [ 'mt' ] = array (
2012-12-23 21:49:55 +00:00
'echo-desc' => 'Sistema għan-notifiki' ,
2012-08-15 19:50:03 +00:00
'prefs-echo' => 'Notifiki' ,
2013-01-27 17:36:02 +00:00
'prefs-emailfrequency' => 'Kemm huma spissi n-notifiki li nirċievi' , # Fuzzy
2012-08-15 19:50:03 +00:00
'echo-no-agent' => '[Ħadd]' ,
2012-12-23 21:49:55 +00:00
'echo-no-title' => '[L-ebda paġna]' ,
2012-08-15 19:50:03 +00:00
'notifications' => 'Notifiki' ,
'echo-specialpage' => 'Notifiki tiegħi' ,
'echo-anon' => 'Sabiex tirċievi notifiki, [[Special:Userlogin/signup|oħloq kont]] jew [[Special:UserLogin|illoggja]].' ,
2012-12-23 21:49:55 +00:00
'echo-none' => " M'għandek l-ebda notifiki " ,
'notification-new-user' => 'Merħba fuq {{SITENAME}}, $1!' ,
2012-08-15 19:50:03 +00:00
'echo-email-subject-default' => 'Notifika ġdida fuq {{SITENAME}}' ,
'echo-email-body-default' => ' Għandek notifika ġdida fuq {{ SITENAME }} :
$ 1 ' ,
'echo-link-new' => '{{PLURAL:$1|notifika ġdida|$1 notifiki ġodda}}' ,
2012-12-09 20:25:32 +00:00
'echo-link' => 'Notifiki tiegħi' , # Fuzzy
2012-12-11 22:52:15 +00:00
'echo-overlay-link' => 'Notifiki kollha…' , # Fuzzy
2012-08-15 19:50:03 +00:00
'echo-overlay-title' => 'Notifiki tiegħi' ,
);
2013-04-15 20:57:21 +00:00
/** Norwegian Bokmål ( norsk bokmål )
*/
$messages [ 'nb' ] = array (
'echo-desc' => 'Varslingssystem' ,
'prefs-echo' => 'Varsler' ,
'prefs-displaynotifications' => 'Visningsvalg' ,
'prefs-echosubscriptions' => 'Varsle meg om disse hendelsene' ,
'echo-pref-web' => 'Nett' ,
'echo-pref-email' => 'E-post' ,
'echo-pref-email-frequency-never' => 'Ikke send meg e-postvarsler' ,
'echo-pref-email-frequency-immediately' => 'Individuelle varsler når de kommer' ,
'echo-pref-email-frequency-daily' => 'Daglig oppsummering av varsler' ,
'echo-pref-email-frequency-weekly' => 'Ukentlig sammendrag av varsler' ,
'echo-dismiss-button' => 'Lukk' ,
'echo-dismiss-message' => 'Slå av alle varsler for $1' ,
'echo-dismiss-prefs-message' => 'Du kan slå på disse igjen i innstillingene' ,
2013-04-18 19:43:00 +00:00
'echo-category-title-edit-user-talk' => 'innlegg på diskusjonsside' , # Fuzzy
'echo-category-title-article-linked' => 'sidelenke' , # Fuzzy
'echo-category-title-reverted' => 'tilbakestilling av redigering' , # Fuzzy
'echo-category-title-mention' => 'nevnelse' , # Fuzzy
'echo-category-title-other' => 'annet' , # Fuzzy
'echo-category-title-system' => 'system' , # Fuzzy
2013-04-15 20:57:21 +00:00
'echo-no-agent' => '[Ingen]' ,
'echo-no-title' => '[Ingen side]' ,
'echo-error-no-formatter' => 'Ingen formatering definert for varselet' ,
'echo-error-preference' => 'Feil: Kunne ikke lagre brukervalg' ,
'echo-error-token' => 'Feil: Kunne ikke hente brukertegn' ,
'notifications' => 'Varsler' ,
'tooltip-pt-notifications' => 'Dine varsler' ,
'echo-specialpage' => 'Varsler' ,
'echo-anon' => 'For å motta varsler, [[Special:Userlogin/signup|opprett en konto]] eller [[Special:UserLogin|logg inn]].' ,
'echo-none' => 'Du har ingen varsler.' ,
'echo-more-info' => 'Mer informasjon' ,
'notification-edit-talk-page2' => '[[User:$1|$1]] {{GENDER:$1|postet}} på [[User talk:$2|diskusjonssiden din]].' ,
'notification-edit-talk-page-flyout2' => '$1 {{GENDER:$1|postet}} på [[User talk:$2|diskusjonssiden din]]' ,
'notification-page-linked' => '[[$2|$2]] ble {{GENDER:$1|lenket til}} fra [[$3|$3]]: [[Special:WhatLinksHere/$2|Se alle lenker til denne siden]]' ,
'notification-page-linked-flyout' => '$2 ble {{GENDER:$1|lenket til}} fra $3: [[Special:WhatLinksHere/$2|Se alle lenker til denne siden]]' ,
'notification-add-comment2' => " [[User: $ 1| $ 1]] { { GENDER: $ 1|kommenterte}} på ''[[ $ 3| $ 2]]'' på diskusjonssiden '' $ 4'' " ,
'notification-add-talkpage-topic2' => " [[User: $ 1| $ 1]] { { GENDER: $ 1|postet}} en ny tråd '' $ 2'' på [[ $ 3]] " ,
'notification-add-talkpage-topic-yours2' => " [[User: $ 1| $ 1]] { { GENDER: $ 1|sendte}} deg en melding: ''[[ $ 3# $ 2| $ 2]]'' " ,
'notification-add-comment-yours2' => " [[User: $ 1| $ 1]] { { GENDER: $ 1|kommenterte}} på ''[[ $ 3# $ 2| $ 2]]'' på diskusjonssiden din " ,
'notification-mention' => '[[User:$1|$1]] {{GENDER:$1|nevnte}} deg på [[$3#$2|$3]].' ,
'notification-mention-flyout' => '$1 {{GENDER:$1|nevnte}} deg på [[$3#$2|$3]].' ,
'notification-user-rights' => 'Brukerrettighetene dine [[Special:Log/rights/$1|ble {{GENDER:$1|endret}}]] av [[User:$1|$1]]. $2. [[Special:ListGroupRights|Lær mer]]' ,
'notification-user-rights-flyout' => 'Brukerrettighetene dine ble {{GENDER:$1|endret}} av $1. $2. [[Special:ListGroupRights|Lær mer]]' ,
'notification-user-rights-add' => 'Du er nå medlem av {{PLURAL:$2|denne gruppa|disse gruppene}}: $1' ,
'notification-user-rights-remove' => 'Du er ikke lenger medlem av {{PLURAL:$2|denne gruppa|disse gruppene}}: $1' ,
'notification-new-user' => 'Velkommen til {{SITENAME}}, $1! Hyggelig å se deg her.' ,
'notification-reverted2' => '{{PLURAL:$4|Din redigering|Dine redigeringer}} på [[$2]] har blitt {{GENDER:$1|tilbakestilt}} av [[User:$1|$1]] $3' ,
'notification-reverted-flyout2' => '{{PLURAL:$4|Din redigering|Dine redigeringer}} påå $2 har blitt {{GENDER:$1|tilbakestilt}} av $1 $3' ,
'notification-edit-talk-page-email-subject2' => 'Du har en ny beskjed på diskusjonssiden din' ,
'notification-edit-talk-page-email-body2' => ' $ 1
$ 3
Vis mer :
$ 2
$ 4 ' ,
'notification-edit-talk-page-email-batch-body2' => '$1 {{GENDER:$1|postet}} på diskusjonssiden din' ,
'notification-page-linked-email-subject' => 'En side du startet ble lenket til på {{SITENAME}}' ,
'notification-page-linked-email-body' => ' $ 1
Se alle lenker til denne siden :
{{ canonicalurl : {{ #special:WhatLinksHere/$2}}}}
$ 3 ' ,
'notification-page-linked-email-batch-body' => '$2 ble {{GENDER:$1|lenket}} til fra $3' ,
'notification-reverted-email-subject2' => '{{PLURAL:$3|Din redigering|Dine redigeringer}} på $2 ble {{GENDER:$1|tilbakestilt}} av $1' ,
'notification-reverted-email-body2' => ' {{ PLURAL : $ 7 | Din redigering | Dine redigeringer }} på $ 2 ble {{ GENDER : $ 1 | tilbakestilt }} av $ 1.
$ 5
Vis mer :
$ 3
$ 6 ' ,
'notification-reverted-email-batch-body2' => '{{PLURAL:$3|Din redigering|Dine redigeringer}} på $2 ble {{GENDER:$1|tilbakestilt}} av $1.' ,
'notification-mention-email-subject' => '$1 {{GENDER:$1|nevnte}} deg på {{SITENAME}}' ,
'notification-mention-email-body' => ' {{ SITENAME }} - brukeren $ 1 {{ GENDER : $ 1 | nevnte }} deg på $ 2.
$ 3
Vis mer :
$ 4
$ 5 ' ,
'notification-mention-email-batch-body' => '$1 {{GENDER:$1|nevnte}} deg på $2' ,
'notification-user-rights-email-subject' => 'Brukerrettighetene dine ble endret på {{SITENAME}}' ,
'notification-user-rights-email-body' => ' Brukerrettighetene dine ble {{ GENDER : $ 1 | endret }} av $ 1. $ 2
Vis mer :
{{ canonicalurl : {{ #special:ListGroupRights}}}}
$ 3 ' ,
'notification-user-rights-email-batch-body' => 'Brukerrettighetene dine ble {{GENDER:$1|endret}} av $1. $2' ,
'echo-email-subject-default' => 'Nytt varsel på {{SITENAME}}' ,
'echo-email-body-default' => ' Du har et nytt varsel på {{ SITENAME }} :
$ 1 ' ,
'echo-email-batch-body-default' => 'Du har et nytt varsel' ,
'echo-email-footer-default' => ' $ 2
For å styre hva slags e - poster vi sender deg , gå til : {{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2013-04-18 19:43:00 +00:00
$ 1 ' , # Fuzzy
2013-04-15 20:57:21 +00:00
'echo-link-new' => '{{PLURAL:$1|Ett nytt varsel|$1 nye varsler}}' ,
'echo-link' => 'Varsler' ,
'echo-overlay-link' => 'Alle varsler' ,
'echo-overlay-title' => 'Varsler' ,
'echo-overlay-title-overflow' => 'Varsler (viser $1 av $2 uleste)' ,
'echo-date-today' => 'I dag' ,
'echo-date-yesterday' => 'I går' ,
'echo-load-more-error' => 'En feil oppsto under henting av flere resultater.' ,
'notification-edit-talk-page-bundle' => '$1 og $3 {{PLURAL:$4|annen|andre}} {{GENDER:$1|postet}} på [[User talk:$2|brukerdiskusjonen din]].' ,
'notification-page-linked-bundle' => '$2 ble {{GENDER:$1|lenket til}} fra $3 og $4 {{PLURAL:$5|annen side|andre sider}}. [[Special:WhatLinksHere/$2|Se alle lenker til denne siden]]' ,
'notification-edit-user-talk-email-batch-bundle-body' => '$1 og $2 {{PLURAL:$3|annen|andre}} {{GENDER:$1|postet}} på brukerdiskusjonen din' ,
'notification-page-linked-email-batch-bundle-body' => '$2 ble {{GENDER:$1|lenket til}} fra $3 og $4 {{PLURAL:$5|annen side|andre sider}}' ,
2013-04-18 19:43:00 +00:00
'echo-email-batch-subject-daily' => 'Du har {{PLURAL:$2|ett varsel|$1 varsler}} i dag' , # Fuzzy
'echo-email-batch-subject-weekly' => 'Du har {{PLURAL:$2|ett varsel|$1 varsler}} denne uka' , # Fuzzy
2013-04-15 20:57:21 +00:00
'echo-email-batch-body-daily' => ' $ 1 ,
Du har {{ PLURAL : $ 3 | ett varsel | $ 2 varsler }} på {{ SITENAME }} i dag . Se dem her :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-18 19:43:00 +00:00
$ 5 ' , # Fuzzy
2013-04-15 20:57:21 +00:00
'echo-email-batch-body-weekly' => ' $ 1 ,
Du har {{ PLURAL : $ 3 | ett varsel | $ 2 varsler }} på {{ SITENAME }} denne uka . Se dem her :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-18 19:43:00 +00:00
$ 5 ' , # Fuzzy
2013-04-15 20:57:21 +00:00
);
2013-03-27 20:43:18 +00:00
/** Low German ( Plattdüütsch )
* @ author Joachim Mos
*/
$messages [ 'nds' ] = array (
'echo-pref-web' => 'Web' ,
'echo-pref-email' => 'E-Mail' ,
'echo-category-title-other' => 'Annere' ,
);
2012-06-17 20:16:45 +00:00
/** Dutch ( Nederlands )
2012-11-18 20:37:56 +00:00
* @ author Kippenvlees1
2013-04-02 19:02:29 +00:00
* @ author Nemo bis
2012-11-11 20:52:58 +00:00
* @ author Rcdeboer
2012-06-17 20:16:45 +00:00
* @ author SPQRobin
2012-06-19 19:27:11 +00:00
* @ author Siebrand
2013-03-31 18:48:01 +00:00
* @ author User555
2012-06-17 20:16:45 +00:00
*/
$messages [ 'nl' ] = array (
2012-10-20 20:17:56 +00:00
'echo-desc' => 'Meldingensysteem' ,
2012-06-19 19:27:11 +00:00
'prefs-echo' => 'Meldingen' ,
2012-12-09 20:25:32 +00:00
'prefs-displaynotifications' => 'Weergaveopties' ,
2013-04-15 20:57:21 +00:00
'prefs-echosubscriptions' => 'U over deze gebeurtenissen informeren' ,
2013-02-17 20:38:37 +00:00
'echo-pref-web' => 'Web' ,
2013-04-02 19:02:29 +00:00
'echo-pref-email' => 'E-mail' ,
2013-04-04 19:58:34 +00:00
'echo-pref-email-frequency-never' => 'U geen meldingen via e-mail sturen' ,
2012-12-16 20:48:57 +00:00
'echo-pref-email-frequency-immediately' => 'Individuele meldingen als ze binnenkomen' ,
'echo-pref-email-frequency-daily' => 'Een dagelijkse samenvatting van meldingen' ,
'echo-pref-email-frequency-weekly' => 'Een wekelijkse samenvatting van meldingen' ,
2013-02-17 20:38:37 +00:00
'echo-dismiss-button' => 'Sluiten' ,
'echo-dismiss-message' => 'Alle meldingen uitschakelen over $1' ,
2013-03-12 21:11:33 +00:00
'echo-dismiss-prefs-message' => 'U kunt deze inschakelen in uw voorkeuren' ,
2013-04-18 19:43:00 +00:00
'echo-category-title-edit-user-talk' => 'berichten op uw overlegpagina' , # Fuzzy
'echo-category-title-article-linked' => 'Paginakoppeling' , # Fuzzy
'echo-category-title-reverted' => 'Bewerking teruggedraaid' , # Fuzzy
'echo-category-title-mention' => 'Genoemd' , # Fuzzy
'echo-category-title-other' => 'Overige' , # Fuzzy
'echo-category-title-system' => 'Systeem' , # Fuzzy
2012-06-17 20:16:45 +00:00
'echo-no-agent' => '[Niemand]' ,
2012-10-20 20:17:56 +00:00
'echo-no-title' => '[Geen pagina]' ,
2012-11-07 20:34:21 +00:00
'echo-error-no-formatter' => 'Er is geen opmaak ingesteld voor de melding' ,
2013-02-17 20:38:37 +00:00
'echo-error-preference' => 'Fout: de gebruikersinstelling kon niet ingesteld worden' ,
'echo-error-token' => 'Fout: het gebruikerstoken kon niet opgehaald worden' ,
2012-06-19 19:27:11 +00:00
'notifications' => 'Meldingen' ,
2012-12-30 19:42:03 +00:00
'tooltip-pt-notifications' => 'Uw meldingen' ,
2013-03-31 18:48:01 +00:00
'echo-specialpage' => 'Meldingen' ,
2012-08-06 19:26:34 +00:00
'echo-anon' => '[[Special:Userlogin/signup|Maak een gebruiker aan]] of [[Special:UserLogin|meld u aan]] als u meldingen wilt ontvangen.' ,
2012-12-19 19:58:50 +00:00
'echo-none' => 'U hebt geen meldingen.' ,
2013-01-27 17:36:02 +00:00
'echo-more-info' => 'Meer info' ,
2013-04-17 19:33:47 +00:00
'echo-feedback' => 'Terugkoppeling' ,
2013-01-27 17:36:02 +00:00
'notification-edit-talk-page2' => '[[User:$1|$1]] {{GENDER:$1|heeft een bericht geplaatst}} op uw [[User talk:$2|overlegpagina]].' ,
'notification-edit-talk-page-flyout2' => '$1 {{GENDER:$1|heeft een bericht geplaatst}} op uw [[User talk:$2|overlegpagina]].' ,
2013-04-08 19:58:35 +00:00
'notification-page-linked' => '[[$2|$2]] is {{GENDER:$1|gekoppeld}} vanaf [[$3|$3]]: [[Special:WhatLinksHere/$2|alle koppelingen naar deze pagina bekijken]]' ,
'notification-page-linked-flyout' => '$2 is {{GENDER:$1|gekoppeld}} vanaf $3: [[Special:WhatLinksHere/$2|alle koppelingen naar deze pagina bekijken]]' ,
2013-01-27 17:36:02 +00:00
'notification-add-comment2' => '[[User:$1|$1]] {{GENDER:$1|heeft gereageerd}} op "[[$3|$2]]" op de overlegpagina "$4"' ,
'notification-add-talkpage-topic2' => '[[User:$1|$1]] {{GENDER:$1|heeft}} een nieuw onderwerp "$2" geplaatst op [[$3]]' ,
'notification-add-talkpage-topic-yours2' => '[[User:$1|$1]] {{GENDER:$1|heeft}} u een bericht gezonden: "[[$3#$2|$2]]"' ,
'notification-add-comment-yours2' => '[[User:$1|$1]] {{GENDER:$1|heeft gereageerd}} op "[[$3#$2|$2]]" op uw overlegpagina' ,
2013-02-26 20:47:14 +00:00
'notification-mention' => '[[User:$1|$1]] {{GENDER:$1|heeft}} u genoemd op [[$3#$2|$3]].' ,
'notification-mention-flyout' => '$1 {{GENDER:$1|heeft}} u genoemd op [[$3#$2|$3]].' ,
2013-04-11 20:21:12 +00:00
'notification-user-rights' => '[[Special:Log/rights/$1|Uw gebruikersrechten]] zijn {{GENDER:$1|gewijzigd}} door [[User:$1|$1]]. $2. [[Special:ListGroupRights|Meer informatie]]' ,
2013-04-08 19:58:35 +00:00
'notification-user-rights-flyout' => 'Uw gebruikersrechten zijn {{GENDER:$1|gewijzigd}} door $1. $2. [[Special:ListGroupRights|Meer informatie]]' ,
'notification-user-rights-add' => 'U bent nu lid van deze groep{{PLURAL:$2||en}}: $1' ,
'notification-user-rights-remove' => 'U bent niet langer lid van deze groep{{PLURAL:$2||en}}: $1' ,
'notification-new-user' => 'Welkom op {{SITENAME}}, $1! We zijn blij dat u hier bent.' ,
2013-01-27 17:36:02 +00:00
'notification-reverted2' => 'Uw {{PLURAL:$4|bewerking op [[$2]] is|bewerkingen op [[$2]] zijn}} {{GENDER:$1|teruggedraaid}} [[User:$1|$1]] $3' ,
'notification-reverted-flyout2' => 'Uw {{PLURAL:$4|bewerking op $2 is|bewerkingen op $2 zijn}} {{GENDER:$1|teruggedraaid}} door $1 $3' ,
'notification-edit-talk-page-email-subject2' => 'U hebt een nieuw bericht op uw overlegpagina' ,
2013-04-15 20:57:21 +00:00
'notification-edit-talk-page-email-body2' => ' $ 1
2013-01-27 17:36:02 +00:00
$ 3
Meer bekijken :
$ 2
2013-04-15 20:57:21 +00:00
$ 4 ' ,
2013-01-27 17:36:02 +00:00
'notification-edit-talk-page-email-batch-body2' => '$1 {{GENDER:$1|heeft}} een bericht achtergelaten op uw overlegpagina' ,
2013-04-08 19:58:35 +00:00
'notification-page-linked-email-subject' => 'Een pagina die u hebt aangemaakt is gekoppeld op {{SITENAME}}' ,
2013-04-15 20:57:21 +00:00
'notification-page-linked-email-body' => ' $ 1
2013-04-08 19:58:35 +00:00
Alle koppelingen naar deze pagina bekijken :
{{ canonicalurl : {{ #special:WhatLinksHere/$2}}}}
2013-04-15 20:57:21 +00:00
$ 3 ' ,
2013-04-08 19:58:35 +00:00
'notification-page-linked-email-batch-body' => '$2 is {{GENDER:$1|gekoppeld}} vanaf $3' ,
2013-01-28 21:53:37 +00:00
'notification-reverted-email-subject2' => 'Uw {{PLURAL:$3|bewerking op $2 is|bewerkingen op $2 zijn}} {{GENDER:$1|teruggedraaid}} door $1' ,
'notification-reverted-email-body2' => ' Uw {{ PLURAL : $ 7 | bewerking op $ 2 is | bewerkingen op $ 2 zijn }} {{ GENDER : $ 1 | teruggedraaid }} door $ 1.
$ 5
Meer bekijken :
$ 3
$ 6 ' ,
'notification-reverted-email-batch-body2' => 'Uw {{PLURAL:$3|bewerking op $2 is|bewerkingen op $2 zijn}} {{GENDER:$1|teruggedraaid}} door $1' ,
2013-02-26 20:47:14 +00:00
'notification-mention-email-subject' => '$1 {{GENDER:$1|heeft}} u genoemd op {{SITENAME}}' ,
'notification-mention-email-body' => ' $ 1 van {{ SITENAME }} {{ GENDER : $ 1 | heeft }} u genoemd op $ 2.
$ 3
Meer bekijken :
$ 4
$ 5 ' ,
'notification-mention-email-batch-body' => '$1 {{GENDER:$1|heeft}} u genoemd op $2' ,
2013-04-08 19:58:35 +00:00
'notification-user-rights-email-subject' => 'Uw gebruikersrechten op {{SITENAME}} zijn gewijzigd' ,
'notification-user-rights-email-body' => ' Uw gebruikersrechten zijn {{ GENDER : $ 1 | gewijzigd }} door $ 1. $ 2
Meer informatie :
{{ canonicalurl : {{ #special:ListGroupRights}}}}
$ 3 ' ,
'notification-user-rights-email-batch-body' => 'Uw gebruikersrechten zijn {{GENDER:$1|gewijzigd}} door $1. $2' ,
2012-06-19 19:27:11 +00:00
'echo-email-subject-default' => 'Nieuwe melding op {{SITENAME}}' ,
'echo-email-body-default' => ' U hebt een nieuwe melding op {{ SITENAME }} :
2012-12-02 20:41:24 +00:00
$ 1 ' ,
2013-04-08 19:58:35 +00:00
'echo-email-batch-body-default' => 'U hebt een nieuwe melding' ,
2012-12-19 19:58:50 +00:00
'echo-email-footer-default' => ' $ 2
2012-12-02 20:41:24 +00:00
2012-12-30 19:42:03 +00:00
Volg de volgende koppeling om uw e - mailvoorkeuren te wijzigen of om u uit te schrijven :
2012-12-02 20:41:24 +00:00
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2013-04-18 19:43:00 +00:00
$ 1 ' , # Fuzzy
2012-06-19 19:27:11 +00:00
'echo-link-new' => '{{PLURAL:$1|1 nieuwe melding|$1 nieuwe meldingen}}' ,
2012-11-07 20:34:21 +00:00
'echo-link' => 'Meldingen' ,
2012-12-12 21:12:57 +00:00
'echo-overlay-link' => 'Alle meldingen' ,
2013-03-31 18:48:01 +00:00
'echo-overlay-title' => 'Meldingen' ,
'echo-overlay-title-overflow' => 'Meldingen ($1 van $2 ongelezen)' ,
2013-04-02 19:02:29 +00:00
'echo-date-today' => 'Vandaag' ,
2012-12-12 21:12:57 +00:00
'echo-date-yesterday' => 'Gisteren' ,
'echo-load-more-error' => 'Er is een fout opgetreden tijdens het ophalen van meer resultaten.' ,
2013-04-08 19:58:35 +00:00
'notification-edit-talk-page-bundle' => '$1 en $3 andere{{PLURAL:$4||anderen}} hebben een bericht {{GENDER:$1|geplaatst}} op uw [[User talk:$2|overlegpagina]].' ,
'notification-page-linked-bundle' => " $ 2 is { { GENDER: $ 1|gekoppeld}} vanaf $ 3 en $ 4 andere pagina { { PLURAL: $ 5||'s}}. [[Special:WhatLinksHere/ $ 2|Alle koppelingen naar deze pagina bekijken]] " ,
2013-04-15 20:57:21 +00:00
'notification-edit-user-talk-email-batch-bundle-body' => '$1 and $2 {{PLURAL:$3|andere gebruiker|andere gebruikers}} {{GENDER:$1|hebben}} een bericht op uw overlegpagina geplaatst' ,
'notification-page-linked-email-batch-bundle-body' => " $ 2 is { { GENDER: $ 1|gekoppeld}} vanaf $ 3 en $ 4 andere pagina { { PLURAL: $ 5||'s}} " ,
2013-04-18 19:43:00 +00:00
'echo-email-batch-subject-daily' => 'U hebt vandaag {{PLURAL:$2|0=geen meldingen|één melding|$1 meldingen}}' , # Fuzzy
'echo-email-batch-subject-weekly' => 'U hebt deze week {{PLURAL:$2|0=geen meldingen|één melding|$1 meldingen}}' , # Fuzzy
2012-12-14 20:35:28 +00:00
'echo-email-batch-body-daily' => ' $ 1 ,
U hebt vandaag {{ PLURAL : $ 3 | 0 = geen meldingen | één melding | $ 2 meldingen }} op {{ SITENAME }} . Hier kunt u uw meldingen bekijken :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-18 19:43:00 +00:00
$ 5 ' , # Fuzzy
2012-12-14 20:35:28 +00:00
'echo-email-batch-body-weekly' => ' $ 1 ,
U hebt deze week {{ PLURAL : $ 3 | 0 = geen meldingen | één melding | $ 2 meldingen }} op {{ SITENAME }} . Hier kunt u uw meldingen bekijken :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-18 19:43:00 +00:00
$ 5 ' , # Fuzzy
2012-06-17 20:16:45 +00:00
);
2012-12-30 19:42:03 +00:00
/** Nederlands ( informeel ) ( Nederlands ( informeel ) )
* @ author Siebrand
*/
$messages [ 'nl-informal' ] = array (
'tooltip-pt-notifications' => 'Jouw meldingen' ,
'echo-none' => 'Je hebt geen meldingen.' ,
'echo-email-body-default' => ' Je hebt een nieuwe melding op {{ SITENAME }} :
$ 1 ' ,
'echo-email-footer-default' => ' $ 2
Volg de volgende koppeling om je e - mailvoorkeuren te wijzigen of om je uit te schrijven :
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
$ 1 ' ,
'echo-email-batch-subject-daily' => 'Je hebt vandaag {{PLURAL:$2|0=geen meldingen|één melding|$1 meldingen}}' ,
'echo-email-batch-subject-weekly' => 'Je hebt deze week {{PLURAL:$2|0=geen meldingen|één melding|$1 meldingen}}' ,
'echo-email-batch-body-daily' => ' $ 1 ,
Je hebt vandaag {{ PLURAL : $ 3 | 0 = geen meldingen | één melding | $ 2 meldingen }} op {{ SITENAME }} . Hier kan je je meldingen bekijken :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
$ 5 ' ,
'echo-email-batch-body-weekly' => ' $ 1 ,
Je hebt deze week {{ PLURAL : $ 3 | 0 = geen meldingen | één melding | $ 2 meldingen }} op {{ SITENAME }} . Hier kan je je meldingen bekijken :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
$ 5 ' ,
);
2012-06-17 20:16:45 +00:00
/** Polish ( polski )
2012-08-11 00:03:40 +00:00
* @ author Ankry
2012-12-14 20:35:28 +00:00
* @ author Base
2012-06-17 20:16:45 +00:00
* @ author BeginaFelicysym
2013-04-08 19:58:35 +00:00
* @ author Chrumps
2012-12-25 20:04:33 +00:00
* @ author Matma Rex
2012-12-11 22:52:15 +00:00
* @ author Odie2
2012-08-09 19:26:11 +00:00
* @ author Przemub
2013-03-10 21:32:35 +00:00
* @ author WTM
2013-01-06 20:09:24 +00:00
* @ author Woytecr
2012-06-17 20:16:45 +00:00
*/
$messages [ 'pl' ] = array (
2012-12-25 20:04:33 +00:00
'echo-desc' => 'System powiadomień' ,
2012-08-09 19:26:11 +00:00
'prefs-echo' => 'Powiadomienia' ,
2012-12-25 20:04:33 +00:00
'prefs-displaynotifications' => 'Opcje wyświetlania' ,
2013-04-15 20:57:21 +00:00
'prefs-echosubscriptions' => 'Powiadom mnie o tych wydarzeniach' ,
'echo-pref-email' => 'E‐ mail' ,
2012-12-25 20:04:33 +00:00
'echo-pref-email-frequency-never' => 'Nie wysyłaj powiadomień e-mailem' ,
'echo-pref-email-frequency-immediately' => 'Każde powiadomienie osobno' ,
'echo-pref-email-frequency-daily' => 'Dzienne podsumowanie' ,
'echo-pref-email-frequency-weekly' => 'Tygodniowe podsumowanie' ,
2012-06-17 20:16:45 +00:00
'echo-no-agent' => '[Nikt]' ,
2012-12-25 20:04:33 +00:00
'echo-no-title' => '[Brak strony]' ,
2013-01-06 20:09:24 +00:00
'echo-error-no-formatter' => 'Nie określono formatowania dla powiadomień' ,
2012-08-09 19:26:11 +00:00
'notifications' => 'Powiadomienia' ,
2013-01-06 20:09:24 +00:00
'tooltip-pt-notifications' => 'Twoje powiadomienia' ,
2013-04-08 19:58:35 +00:00
'echo-specialpage' => 'Powiadomienia' ,
2012-08-09 19:26:11 +00:00
'echo-anon' => 'Aby otrzymywać powiadomienia [[Special:Userlogin/signup|utwórz konto]] lub [[Special:UserLogin|zaloguj się]].' ,
2012-12-25 20:04:33 +00:00
'echo-none' => 'Nie masz żadnych powiadomień.' ,
2013-04-08 19:58:35 +00:00
'echo-more-info' => 'Więcej informacji na temat' ,
2013-04-15 20:57:21 +00:00
'notification-new-user' => 'Witaj na stronach {{SITENAME}}, $1! Cieszymy się, że tu jesteś.' ,
'notification-edit-talk-page-email-body2' => ' $ 1
$ 3
Zobacz więcej :
$ 2
$ 4 ' ,
2012-12-11 22:52:15 +00:00
'echo-notification-count' => '$1+' ,
2012-08-09 19:26:11 +00:00
'echo-email-subject-default' => 'Nowe powiadomienie na {{SITENAME}}' ,
'echo-email-body-default' => ' Masz nowe powiadomienie na {{ SITENAME }} :
2013-01-06 20:09:24 +00:00
$ 1 ' ,
2013-04-15 20:57:21 +00:00
'echo-email-batch-body-default' => 'Masz nowe powiadomienie' ,
2013-01-06 20:09:24 +00:00
'echo-email-footer-default' => ' $ 2
Aby ustalić jakie wiadomości mamy CI przesyłać , odwiedź :
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2013-04-18 19:43:00 +00:00
$ 1 ' , # Fuzzy
2012-08-09 19:26:11 +00:00
'echo-link-new' => '$1 {{PLURAL:$1|nowe powiadomienie|nowe powiadomienia|nowych powiadomień}}' ,
2013-03-10 21:32:35 +00:00
'echo-link' => 'Powiadomienia' ,
2012-12-14 20:35:28 +00:00
'echo-overlay-link' => 'Wszystkie powiadomienia' ,
2013-04-08 19:58:35 +00:00
'echo-overlay-title' => 'Powiadomienia' ,
2013-04-15 20:57:21 +00:00
'echo-overlay-title-overflow' => 'Powiadomienia (wyświetlono $1 z $2 nieprzeczytanych)' ,
2012-12-11 22:52:15 +00:00
'echo-date-today' => 'Dzisiaj' ,
'echo-date-yesterday' => 'Wczoraj' ,
'echo-date-header' => '$1 $2' ,
'echo-load-more-error' => 'Wystąpił błąd przy pobieraniu kolejnych wyników.' ,
2013-04-18 19:43:00 +00:00
'echo-email-batch-subject-daily' => 'Posiadasz $1 {{PLURAL:$2|powiadomienie|powiadomień}} z dzisiejszego dnia' , # Fuzzy
'echo-email-batch-subject-weekly' => 'Posiadasz $1 {{PLURAL:$2|powiadomienie|powiadomień}} z tego tygodnia' , # Fuzzy
2013-01-06 20:09:24 +00:00
'echo-email-batch-body-daily' => ' $ 1 ,
Posiadasz $ 2 {{ PLURAL : $ 3 | powiadomienie | powiadomienia | powiadomień }} na {{ SITENAME }} z dzisiejszego dnia . Możesz je zobaczyć tutaj :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-18 19:43:00 +00:00
$ 5 ' , # Fuzzy
2013-01-06 20:09:24 +00:00
'echo-email-batch-body-weekly' => ' $ 1 ,
Posiadasz $ 2 {{ PLURAL : $ 3 | powiadomienie | powiadomienia | powiadomień }} na {{ SITENAME }} z tego tygodnia . Możesz je zobaczyć tutaj :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-18 19:43:00 +00:00
$ 5 ' , # Fuzzy
2012-08-09 19:26:11 +00:00
);
2012-08-17 13:01:48 +00:00
/** Piedmontese ( Piemontèis )
2012-08-23 20:07:30 +00:00
* @ author Borichèt
2012-08-17 13:01:48 +00:00
* @ author Dragonòt
*/
$messages [ 'pms' ] = array (
2013-01-06 20:09:24 +00:00
'echo-desc' => 'Sistema ëd notìfiche' ,
2012-08-17 13:01:48 +00:00
'prefs-echo' => 'Notìfiche' ,
2012-12-25 20:04:33 +00:00
'prefs-displaynotifications' => 'Opsion ëd visualisassion' ,
2013-01-06 20:09:24 +00:00
'prefs-emailsubscriptions' => 'Aviseme për pòsta eletrònica quand quaidun' ,
2013-01-09 22:12:36 +00:00
'prefs-emailfrequency' => 'Quand it veus-to arseive le notìfiche ëd corel?' ,
2013-01-06 20:09:24 +00:00
'echo-pref-email-edit-user-talk' => 'Mëssage ansima a mia pàgina ëd discussion' ,
2013-01-04 21:26:29 +00:00
'echo-pref-email-article-linked' => " Crea un colegament a na pagina che i l'heu creà " ,
2012-12-25 20:04:33 +00:00
'echo-pref-email-reverted' => 'Buta andré mia modìfica' ,
2013-01-06 20:09:24 +00:00
'echo-pref-email-frequency-never' => 'Mandeme gnun-e notìfiche për pòsta eletrònica' ,
2012-12-25 20:04:33 +00:00
'echo-pref-email-frequency-immediately' => 'Notìfiche andividuaj com che a rivo' ,
2013-01-06 20:09:24 +00:00
'echo-pref-email-frequency-daily' => 'Un resumé cotidian dle notìfiche' ,
'echo-pref-email-frequency-weekly' => 'Un resumé ebdomadari dle notìfiche' ,
'echo-pref-notify-hide-link' => " Stërmé la liura e l'ansëgna për le notìfiche an mia bara dj'utiss " ,
2012-08-17 13:01:48 +00:00
'echo-no-agent' => '[Gnun]' ,
2013-01-06 20:09:24 +00:00
'echo-no-title' => '[Gnun-a pàgina]' ,
'echo-error-no-formatter' => 'Gnun formà definì për la notìfica' ,
2012-08-17 13:01:48 +00:00
'notifications' => 'Notìfiche' ,
2012-12-29 19:39:13 +00:00
'tooltip-pt-notifications' => 'Toe notìfiche' ,
2012-08-17 13:01:48 +00:00
'echo-specialpage' => 'Mie notìfiche' ,
2012-08-23 20:07:30 +00:00
'echo-anon' => " Për arseive dle notìfiche, [[Special:Userlogin/signup|ch'a crea un cont]] o [[Special:UserLogin|ch'a intra ant ël sistema]]. " ,
2013-01-06 20:09:24 +00:00
'echo-none' => " A l'ha gnun-e notìfiche. " ,
2013-01-12 20:27:14 +00:00
'echo-more-info' => 'Pi anformassion' ,
'notification-edit-talk-page2' => " [[User: $ 1| $ 1]] { { GENDER: $ 1|a l'ha mandà}} dzor toa [[User talk: $ 2|pagina ëd discussion]]. " ,
'notification-edit-talk-page-flyout2' => " $ 1 { { GENDER: $ 1|a l'ha mandà}} dzora soa [[User talk: $ 2|pàgina ëd ciaciarade]]. " ,
'notification-article-linked2' => " $ 3 { { PLURAL: $ 4|a l'era|a j'ero}} { { GENDER: $ 1|colegà}} da [[User: $ 1| $ 1]] da sta pagina: [[ $ 2]] " ,
'notification-article-linked-flyout2' => " $ 3 { { PLURAL: $ 4|a l'era|a j'ero}} { { GENDER: $ 1|colegà}} da $ 1 da sta pagina: [[ $ 2]] " ,
'notification-add-comment2' => '[[User:$1|$1]] {{GENDER:$1|a l\'ha comentà}} dzor "[[$3|$2]]" dzor la pagina ëd discussion "$4"' ,
'notification-add-talkpage-topic2' => '[[User:$1|$1]] {{GENDER:$1|a l\'ha mandà}} n\'argoment neuv "$2" dzor [[$3]]' ,
'notification-add-talkpage-topic-yours2' => '[[User:$1|$1]] {{GENDER:$1|a l\'ha manda}}te un mëssagi: "[[$3#$2|$2]]"' ,
'notification-add-comment-yours2' => '[[User:$1|$1]] {{GENDER:$1|a l\'ha comentà}} dzor "[[$3#$2|$2]]" dzor toa pagina ëd discussion' ,
2012-09-06 19:42:03 +00:00
'notification-new-user' => 'Bin-ëvnù an {{SITENAME}}, $1!' ,
2013-01-04 21:26:29 +00:00
'notification-new-user-content' => " Për piasì, ch'as visa ëd firmé tut coment an sle pàgine ëd discussion con 4 tilde (~~~~). " ,
2013-01-12 20:27:14 +00:00
'notification-reverted2' => " Toa { { PLURAL: $ 4|modìfica dzor [[ $ 2]] a l'é stàita|modìfiche dzor [[ $ 2]] a son stàite}} { { GENDER: $ 1|ripristinà}} da [[User: $ 1| $ 1]] $ 3 " ,
'notification-reverted-flyout2' => " Toa { { PLURAL: $ 4|modìfica dzor $ 2 a l'é stàita|modìfiche dzor $ 2 a son stàite}} { { GENDER: $ 1|ripristinà}} da $ 1 $ 3 " ,
'notification-edit-talk-page-email-subject2' => " A l'ha un mëssagi neuv an soa pàgina ëd ciaciarade " ,
'notification-edit-talk-page-email-body2' => " { { SITENAME}} utent $ 1 { { GENDER: $ 1|a l'ha mandà}} dzor toa pagina ëd discussion:
$ 3
Vëdde ëd pi :
$ 2
$ 4 " ,
'notification-edit-talk-page-email-batch-body2' => " $ 1 { { GENDER: $ 1|a l'ha mandà}} dzor toa pagina ëd discussion " ,
2013-01-27 17:36:02 +00:00
'notification-article-linked-email-subject2' => " { { PLURAL: $ 2|Na pagina|Dle pagine}} ch'it l'has ancaminà { { PLURAL: $ 2|a l'é stàita|a son stàite}} referensià crosià dzor { { SITENAME}} " , # Fuzzy
2013-01-12 20:27:14 +00:00
'notification-article-linked-email-body2' => " $ 4 { { PLURAL: $ 5|a l'é stàit|a son stàite}} { { GENDER: $ 1|colegà}} da { { SITENAME}} utent $ 1, da sta pagina: $ 2
Vëdde ëd pi :
$ 3
$ 6 " ,
'notification-article-linked-email-batch-body2' => " $ 2 { { PLURAL: $ 3|a l'é stàit|a son stàit}} { { GENDER: $ 1|colegà}} da $ 1 " ,
'notification-reverted-email-subject2' => " { { PLURAL: $ 3|Toa modìfica dzor $ 2 a l'é stàit|Toe modìfiche dzor $ 2 a son stàite}} { { GENDER: $ 1|ripristinà}} da $ 1 " ,
'notification-reverted-email-body2' => " { { PLURAL: $ 7|Toa modìfica dzor $ 2 a l'é stàita|Toe modìfiche dzor $ 2 a son stàite}} { { GENDER: $ 1|ripristinà}} da $ 1.
$ 5
Vëdde ëd pi :
$ 3
$ 6 " ,
'notification-reverted-email-batch-body2' => " { { PLURAL: $ 3|Toa modìfica dzor $ 2 a l'é stàit|Toe modìfiche dzor $ 2 a son stàite}} { { GENDER: $ 1|ripristinà}} da $ 1 " ,
2012-08-17 13:01:48 +00:00
'echo-email-subject-default' => 'Notìfiche neuve a {{SITENAME}}' ,
'echo-email-body-default' => " It l'has na notìfica neuva a { { SITENAME}}:
2012-12-26 21:07:31 +00:00
$ 1 " ,
'echo-email-footer-default' => " $ 2
2013-01-06 20:09:24 +00:00
Për controlé che mëssagi i - j mandoma , ch ' a vìsita :
2012-12-26 21:07:31 +00:00
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2012-08-17 13:01:48 +00:00
$ 1 " ,
'echo-link-new' => '$1 {{PLURAL:$1|notifìca neuva|notifìche neuve}}' ,
2012-12-26 21:07:31 +00:00
'echo-link' => 'Notìfiche' ,
'echo-overlay-link' => 'Tute le notìfiche' ,
2012-08-17 13:01:48 +00:00
'echo-overlay-title' => 'Mie notìfiche' ,
2013-01-06 20:09:24 +00:00
'echo-overlay-title-overflow' => 'Mie notìfiche (as na mostro $1 ëd $2 nen lesùe)' ,
2012-12-26 21:07:31 +00:00
'echo-date-today' => 'Ancheuj' ,
2013-01-06 20:09:24 +00:00
'echo-date-yesterday' => 'Jer' ,
2012-12-26 21:07:31 +00:00
'echo-load-more-error' => " A l'é capitaje n'eror an recuperand pi d'arzultà. " ,
'echo-email-batch-subject-daily' => " It l'has $ 1 { { PLURAL: $ 2|notìfica|notìfiche}} ancheuj " ,
'echo-email-batch-subject-weekly' => " It l'has $ 1 { { PLURAL: $ 2|notìfica|notìfiche}} sta sman-a " ,
'echo-email-batch-body-daily' => " $ 1,
It l ' has $ 2 {{ PLURAL : $ 3 | notìfica | notìfiche }} dzora {{ SITENAME }} ancheuj . Vardje ambelessì :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
$ 5 " ,
'echo-email-batch-body-weekly' => " $ 1,
It l ' has $ 2 {{ PLURAL : $ 3 | notìfica | notìfiche }} dzora {{ SITENAME }} sta sman - a . Vardje ambelessì :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
$ 5 " ,
2013-01-06 20:09:24 +00:00
'echo-email-batch-category-header-edit-user-talk' => '$1 {{PLURAL:$1|mëssagi}} ëd pàgina ëd ciaciarade' ,
2012-12-26 21:07:31 +00:00
'echo-email-batch-category-header-edit-revert' => '$1 {{PLURAL:$1|Modifica|Modifiche}} anulà' ,
2013-01-04 21:26:29 +00:00
'echo-email-batch-category-header-cross-reference' => '$1 {{PLURAL:$1|referensià ancrosià}}' ,
2012-12-26 21:07:31 +00:00
'echo-email-batch-category-header-other' => '$1 {{PLURAL:$1|Àutr|Àutri}}' ,
2012-08-17 13:01:48 +00:00
);
2012-12-17 21:25:38 +00:00
/** Pashto ( پښتو )
* @ author Ahmed - Najib - Biabani - Ibrahimkhel
*/
$messages [ 'ps' ] = array (
2012-12-28 21:14:02 +00:00
'prefs-echo' => 'يادګيرنې' ,
'notifications' => 'يادګيرنې' ,
2013-04-15 20:57:21 +00:00
'echo-specialpage' => 'يادګيرنې' ,
2012-12-28 21:14:02 +00:00
'echo-none' => 'تاسې هېڅ يادګيرنې نه لرۍ.' ,
2013-04-15 20:57:21 +00:00
'notification-new-user' => '$1 {{SITENAME}} ته ښه راغلې!، موږ خوښ يو چې تاسې دلته ياست.' ,
2012-12-28 21:14:02 +00:00
'echo-link-new' => '$1 نوې {{PLURAL:$1|يادګيرنه|يادګيرنې}}' ,
'echo-link' => 'يادګيرنې' ,
'echo-overlay-link' => 'ټولې يادګيرنې' ,
2013-04-15 20:57:21 +00:00
'echo-overlay-title' => 'يادګيرنې' ,
2012-12-17 21:25:38 +00:00
'echo-date-today' => 'نن' ,
'echo-date-yesterday' => 'پرون' ,
);
2012-08-09 19:26:11 +00:00
/** Romanian ( română )
2012-12-22 22:08:46 +00:00
* @ author Firilacroco
2012-08-22 19:51:52 +00:00
* @ author Minisarm
2012-08-09 19:26:11 +00:00
* @ author Stelistcristi
*/
$messages [ 'ro' ] = array (
2012-12-22 22:08:46 +00:00
'echo-desc' => 'Sistem de notificări' ,
2012-08-09 19:26:11 +00:00
'prefs-echo' => 'Notificări' ,
2012-12-22 22:08:46 +00:00
'prefs-displaynotifications' => 'Opțiuni de afișare' ,
2012-12-31 20:41:20 +00:00
'prefs-emailsubscriptions' => 'Notifică-mă prin email când cineva' ,
2012-12-22 22:08:46 +00:00
'echo-pref-email-edit-user-talk' => 'Mesaje pe pagina mea de discuții' ,
'echo-pref-email-reverted' => 'Anulează modificarea mea' ,
2012-12-26 21:07:31 +00:00
'echo-pref-email-frequency-daily' => 'Un rezumat zilnic al notificărilor' ,
'echo-pref-email-frequency-weekly' => 'Un rezumat săptămânal al notificărilor' ,
2012-12-31 20:41:20 +00:00
'echo-pref-notify-hide-link' => 'Ascunde legătura și insigna pentru notificări în bara mea de instrumente' ,
2012-12-22 22:08:46 +00:00
'echo-no-agent' => '[Nimeni]' ,
2012-10-15 20:06:24 +00:00
'echo-no-title' => '[Nicio pagină]' ,
2012-08-09 19:26:11 +00:00
'notifications' => 'Notificări' ,
2012-12-31 20:41:20 +00:00
'tooltip-pt-notifications' => 'Notificările dv.' ,
2012-08-09 19:26:11 +00:00
'echo-specialpage' => 'Notificările mele' ,
2012-12-31 20:41:20 +00:00
'echo-anon' => 'Pentru a primi notificări, [[Special:Userlogin/signup|creați-vă un cont]] sau [[Special:UserLogin|autentificați-vă]].' ,
2012-12-22 22:08:46 +00:00
'echo-none' => 'Nu aveți nicio notificare.' ,
'notification-new-user' => 'Bine ați venit pe {{SITENAME}}, $1!' ,
2012-12-26 21:07:31 +00:00
'echo-email-subject-default' => 'Notificare nouă la {{SITENAME}}' ,
'echo-email-body-default' => ' Aveți o notificare nouă la {{ SITENAME }} :
$ 1 ' ,
'echo-link-new' => '$1 {{PLURAL:$1|notificare|notificări}} nouă/noi' ,
2012-12-22 22:08:46 +00:00
'echo-link' => 'Notificările mele' , # Fuzzy
'echo-overlay-link' => 'Toate notificările...' , # Fuzzy
2012-08-09 19:26:11 +00:00
'echo-overlay-title' => 'Notificările mele' ,
2012-12-26 21:07:31 +00:00
'echo-overlay-title-overflow' => 'Notificările mele (se afișează $1 din $2 necitit/e)' ,
2012-12-22 22:08:46 +00:00
'echo-date-today' => 'Astăzi' ,
'echo-date-yesterday' => 'Ieri' ,
'echo-load-more-error' => 'A intervenit o eroare la obținerea mai multor rezultate.' ,
2012-12-26 21:07:31 +00:00
'echo-email-batch-subject-daily' => 'Aveți $1 {{PLURAL:$2|notificare|notificări}} astăzi' ,
'echo-email-batch-subject-weekly' => 'Aveți $1 {{PLURAL:$2|notificare|notificări}} în această săptămână' ,
2012-06-17 20:16:45 +00:00
);
2012-08-14 19:37:09 +00:00
/** tarandíne ( tarandíne )
* @ author Joetaras
*/
$messages [ 'roa-tara' ] = array (
2012-12-27 21:19:24 +00:00
'echo-desc' => 'Sisteme de notifiche' ,
2012-08-14 19:37:09 +00:00
'prefs-echo' => 'Notificaziune' ,
2012-12-27 21:19:24 +00:00
'prefs-displaynotifications' => 'Opziune de visualizzazzione' ,
2013-04-19 20:27:12 +00:00
'echo-pref-send-me' => 'Manne a me:' ,
'echo-pref-send-to' => 'Manne a:' ,
2013-03-06 21:51:05 +00:00
'echo-pref-web' => 'Web' ,
'echo-pref-email' => 'E-mail' ,
2012-08-14 19:37:09 +00:00
'echo-no-agent' => '[Nisciune]' ,
2012-12-27 21:19:24 +00:00
'echo-no-title' => '[Nisciuna vôsce]' ,
2012-08-14 19:37:09 +00:00
'notifications' => 'Notificaziune' ,
2013-03-06 21:51:05 +00:00
'tooltip-pt-notifications' => 'Le notifiche tune' ,
2013-03-29 20:37:31 +00:00
'echo-specialpage' => 'Notificaziune' ,
2013-02-01 22:14:08 +00:00
'echo-none' => 'Non ge tìne notifiche.' ,
2013-01-24 20:58:22 +00:00
'echo-more-info' => " Cchiù 'mbormaziune " ,
2013-04-05 22:26:28 +00:00
'notification-new-user' => " Bovègne jndr'à { { SITENAME}}, $ 1! Nuje sime cundende ca ste aqquà. " ,
2013-02-12 20:22:40 +00:00
'notification-edit-talk-page-email-subject2' => " Tu è 'nu messàgge nuève sus 'a pàgene de le 'ngazzaminde " ,
2012-08-15 19:50:03 +00:00
'echo-email-body-default' => " Tu è 'na notifica nove sus a { { SITENAME}}:
$ 1 " ,
2012-12-27 21:19:24 +00:00
'echo-link' => 'Notificaziune' ,
'echo-overlay-link' => 'Tutte le notificaziune' ,
2013-02-01 22:14:08 +00:00
'echo-date-today' => 'Osce' ,
'echo-date-yesterday' => 'Ajere' ,
2013-04-19 20:27:12 +00:00
'echo-email-batch-subject-daily' => 'Tu è {{PLURAL:$2|notifiche}} nove osce' ,
'echo-email-batch-subject-weekly' => 'Tu è {{PLURAL:$2|notifiche}} nove sta sumàne' ,
2013-03-29 20:37:31 +00:00
'echo-email-batch-body-daily' => " $ 1,
2013-04-19 20:27:12 +00:00
Tu è {{ PLURAL : $ 3 | notificazione | notificaziune }} nove sus a {{ SITENAME }} osce . ' Ndruchele :
2013-03-29 20:37:31 +00:00
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
$ 5 " ,
'echo-email-batch-body-weekly' => " $ 1,
2013-04-19 20:27:12 +00:00
Tu è {{ PLURAL : $ 3 | notificazione | notificaziune }} nove sus a {{ SITENAME }} sta sumàne . ' Ndruchele :
2013-03-29 20:37:31 +00:00
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
$ 5 " ,
2012-08-14 19:37:09 +00:00
);
2012-08-01 20:04:58 +00:00
/** Russian ( русский )
2012-12-14 20:35:28 +00:00
* @ author Base
2012-08-01 20:04:58 +00:00
* @ author DCamer
2012-08-15 19:50:03 +00:00
* @ author David1010
2013-04-15 20:57:21 +00:00
* @ author Iluvatar
2012-12-26 21:07:31 +00:00
* @ author KPu3uC B Poccuu
2012-12-29 19:39:13 +00:00
* @ author Kaganer
2012-08-16 20:22:42 +00:00
* @ author Kalan
2012-08-01 20:04:58 +00:00
*/
$messages [ 'ru' ] = array (
2012-12-26 21:07:31 +00:00
'echo-desc' => 'Система уведомлений' ,
2012-08-01 20:04:58 +00:00
'prefs-echo' => 'Уведомления' ,
2012-12-26 21:07:31 +00:00
'prefs-displaynotifications' => 'Настройки отображения' ,
2013-04-15 20:57:21 +00:00
'echo-pref-email' => 'Электронная почта' ,
2013-01-06 20:09:24 +00:00
'echo-pref-email-frequency-never' => 'Н е присылать мне уведомления по электронной почте' ,
'echo-pref-email-frequency-immediately' => 'Отдельные уведомления по мере их поступления' ,
2012-12-26 21:07:31 +00:00
'echo-pref-email-frequency-daily' => 'Ежедневная сводка уведомлений' ,
'echo-pref-email-frequency-weekly' => 'Еженедельная сводка уведомлений' ,
2012-08-01 20:04:58 +00:00
'echo-no-agent' => '[Никто]' ,
2012-12-26 21:07:31 +00:00
'echo-no-title' => '[Нет страницы]' ,
'echo-error-no-formatter' => 'Форматирование не определено для уведомления' ,
2012-08-01 20:04:58 +00:00
'notifications' => 'Уведомления' ,
2012-12-29 19:39:13 +00:00
'tooltip-pt-notifications' => 'Ваши уведомления' ,
2013-04-15 20:57:21 +00:00
'echo-specialpage' => 'Мои уведомления' , # Fuzzy
2012-12-26 21:07:31 +00:00
'echo-anon' => 'Чтобы получать уведомления, [[Special:Userlogin/signup|создайте учётную запись]] или [[Special:UserLogin|представьтесь]].' ,
'echo-none' => 'Вы не получали уведомлений.' ,
2013-01-10 21:07:13 +00:00
'echo-more-info' => 'Подробнее' ,
2013-04-15 20:57:21 +00:00
'notification-new-user' => 'Добро пожаловать в {{SITENAME}}, $1! Мы рады, что вы здесь.' ,
'notification-edit-talk-page-email-subject2' => 'Н а вашей странице обсуждения есть новое сообщение' ,
2012-08-15 19:50:03 +00:00
'echo-email-subject-default' => 'Новые уведомления на {{SITENAME}}' ,
2012-12-27 21:19:24 +00:00
'echo-email-body-default' => ' Вы имеете новое уведомление в проекте {{ SITENAME }} :
$ 1 ' ,
2013-04-15 20:57:21 +00:00
'echo-email-batch-body-default' => 'У вас есть новое уведомление' ,
2012-12-27 21:19:24 +00:00
'echo-email-footer-default' => ' $ 2
Для управления отправкой вам электронных сообщений посетите :
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2013-04-18 19:43:00 +00:00
$ 1 ' , # Fuzzy
2012-12-27 21:19:24 +00:00
'echo-link-new' => '$1 {{PLURAL:$1|новое уведомление|новых уведомлений}}' ,
2012-12-26 21:07:31 +00:00
'echo-link' => 'Уведомления' ,
2012-12-14 20:35:28 +00:00
'echo-overlay-link' => 'В с е уведомления' ,
2013-04-15 20:57:21 +00:00
'echo-overlay-title' => 'Уведомления' ,
'echo-overlay-title-overflow' => 'Уведомления (показаны $1 из $2 непрочитанных)' ,
2012-12-27 21:19:24 +00:00
'echo-date-today' => 'Сегодня' ,
'echo-date-yesterday' => 'Вчера' ,
'echo-load-more-error' => 'Произошла ошибка при получении дополнительных результатов.' ,
2013-04-18 19:43:00 +00:00
'echo-email-batch-subject-daily' => 'Вы получили $1 {{PLURAL:$2|уведомление|уведомления|уведомлений}} сегодня' , # Fuzzy
'echo-email-batch-subject-weekly' => 'Вы получили $1 {{PLURAL:$2|уведомление|уведомления|уведомлений}} на этой неделе' , # Fuzzy
2012-12-27 21:19:24 +00:00
'echo-email-batch-body-daily' => ' $ 1 ,
Вы получили $ 2 {{ PLURAL : $ 3 | уведомление | уведомления | уведомлений }} в проекте {{ SITENAME }} сегодня . Увидеть их можно здесь :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-18 19:43:00 +00:00
$ 5 ' , # Fuzzy
2012-12-27 21:19:24 +00:00
'echo-email-batch-body-weekly' => ' $ 1 ,
Вы получили $ 2 {{ PLURAL : $ 3 | уведомление | уведомления | уведомлений }} в проекте {{ SITENAME }} на этой неделе . Увидеть их можно здесь :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-18 19:43:00 +00:00
$ 5 ' , # Fuzzy
2012-08-01 20:04:58 +00:00
);
2012-08-09 19:26:11 +00:00
/** Sinhala ( සිංහල )
* @ author පසිඳු කාවින්ද
*/
$messages [ 'si' ] = array (
2012-12-22 22:08:46 +00:00
'echo-desc' => 'නිවේදන පද්ධතිය' ,
2012-08-09 19:26:11 +00:00
'prefs-echo' => 'නිවේදන' ,
2012-12-22 22:08:46 +00:00
'prefs-displaynotifications' => 'විකල්ප පෙන්වන්න' ,
2012-12-31 20:41:20 +00:00
'prefs-emailsubscriptions' => 'මාව විද්යුත්-තැපෑලෙන් දැනුවත් කරන්න කවුරුහරි' ,
2012-12-26 21:07:31 +00:00
'echo-pref-email-edit-user-talk' => 'මගේ කතාබහ පිටුවේ හසුන්' ,
'echo-pref-email-reverted' => 'මගේ සංස්කරණය ප්රතිවර්තනය' ,
2012-12-29 19:39:13 +00:00
'echo-pref-email-frequency-never' => 'මට විද්යුත්-තැපැල් නිවේදන කිසිවක් එවන්න එපා' ,
'echo-pref-email-frequency-immediately' => 'තනි තනි නිවේදන ඒවා එන විට' ,
2012-12-26 21:07:31 +00:00
'echo-pref-email-frequency-daily' => 'නිවේදනවල දෛනික සාරාංශයක්' ,
'echo-pref-email-frequency-weekly' => 'නිවේදනවල සතිපතා සාරාංශයක්' ,
2012-08-12 20:15:22 +00:00
'echo-no-agent' => '[කිසිවෙකු නැත]' ,
2012-12-26 21:07:31 +00:00
'echo-no-title' => '[පිටුවක් නොමැත]' ,
2012-12-29 19:39:13 +00:00
'echo-error-no-formatter' => 'නිවේදනය සඳහා කිසිදු ආකෘතියක් දක්වා නොමැත' ,
2012-08-09 19:26:11 +00:00
'notifications' => 'නිවේදන' ,
2012-12-30 19:42:03 +00:00
'tooltip-pt-notifications' => 'ඔබේ නිවේදන' ,
2012-08-09 19:26:11 +00:00
'echo-specialpage' => 'මගේ නිවේදන' ,
2012-12-29 19:39:13 +00:00
'echo-anon' => 'නිවේදන ලබා ගැනීම සඳහා, [[Special:Userlogin/signup|ගිණුමක් තනන්න]] හෝ [[Special:UserLogin|ප්රවිෂ්ට වන්න]].' ,
2012-12-22 22:08:46 +00:00
'echo-none' => 'ඔබට නිවේදන කිසිවක් නොමැත.' ,
2012-12-26 21:07:31 +00:00
'notification-new-user' => '{{SITENAME}} වෙත පිළිගනිමු, $1!' ,
2012-08-12 20:15:22 +00:00
'echo-email-subject-default' => '{{SITENAME}} හී නව නිවේදනයක්' ,
2012-12-28 21:14:02 +00:00
'echo-email-body-default' => ' ඔබට {{ SITENAME }} හීදී නව නිවේදනයක් ඇත :
$ 1 ' ,
2012-12-26 21:07:31 +00:00
'echo-link-new' => 'නව {{PLURAL:$1|නිවේදන|නිවේදන}} $1' , # Fuzzy
2012-12-29 19:39:13 +00:00
'echo-link' => 'නිවේදන' ,
'echo-overlay-link' => 'සියලුම නිවේදන' ,
2012-08-09 19:26:11 +00:00
'echo-overlay-title' => 'මගේ නිවේදන' ,
2012-12-26 21:07:31 +00:00
'echo-overlay-title-overflow' => 'මගේ නිවේදන (නොකියවූ ඒවා $1 න් $2 පෙන්වමින්)' ,
2012-12-23 21:49:55 +00:00
'echo-date-today' => 'අද' ,
'echo-date-yesterday' => 'පෙරදින' ,
2012-12-29 19:39:13 +00:00
'echo-load-more-error' => 'තවත් ප්රතිඑල පමුනුවිමේදී දෝෂයක් හට ගැනුණි.' ,
'echo-email-batch-subject-daily' => 'ඔබට අද {{PLURAL:$2|නිවේදන}} $1 ඇත' ,
'echo-email-batch-subject-weekly' => 'ඔබට මෙම සතියේ {{PLURAL:$2|නිවේදන}} $1 ඇත' ,
2012-12-26 21:07:31 +00:00
'echo-email-batch-category-header-edit-user-talk' => 'කතාබහ පිටු {{PLURAL:$1|පණිවුඩ|පණිවුඩ}} $1' , # Fuzzy
'echo-email-batch-category-header-edit-revert' => 'සංස්කරණ {{PLURAL:$1|ප්රතිවර්තන|ප්රතිවර්තන}} $1' , # Fuzzy
'echo-email-batch-category-header-other' => '{{PLURAL:$1|වෙනත්|වෙනත්}} $1' , # Fuzzy
2012-08-09 19:26:11 +00:00
);
2012-10-02 13:41:36 +00:00
/** Serbian ( Cyrillic script ) ( српски ( ћирилица ) )
2012-08-10 19:18:21 +00:00
* @ author Rancher
2012-08-09 19:26:11 +00:00
* @ author Михајло Анђелковић
*/
$messages [ 'sr-ec' ] = array (
2012-12-31 20:41:20 +00:00
'echo-desc' => 'Обавештајни систем' ,
2012-08-13 19:47:46 +00:00
'prefs-echo' => 'Обавештења' ,
2012-12-31 20:41:20 +00:00
'prefs-displaynotifications' => 'Поставке приказа' ,
'prefs-emailsubscriptions' => 'Обавести ме е -поштом када неко' ,
'echo-pref-email-reverted' => 'Врати моју измену' ,
'echo-pref-email-frequency-never' => 'Н е шаљи ми обавештења преко е -поште' ,
2012-08-13 19:47:46 +00:00
'echo-no-agent' => '[Нико]' ,
2012-10-22 01:14:40 +00:00
'echo-no-title' => '[Без наслова]' , # Fuzzy
2012-12-31 20:41:20 +00:00
'echo-error-no-formatter' => 'Није задато обликовање за обавештења' ,
2012-08-13 19:47:46 +00:00
'notifications' => 'Обавештења' ,
2012-12-31 20:41:20 +00:00
'tooltip-pt-notifications' => 'Ваша обавештења' ,
2012-08-13 19:47:46 +00:00
'echo-specialpage' => 'М о ј а обавештења' ,
2012-12-31 20:41:20 +00:00
'echo-none' => 'У последње време нисте примили ниједно обавештење.' , # Fuzzy
2012-12-09 20:25:32 +00:00
'echo-link' => 'М о ј а обавештења' , # Fuzzy
2012-12-11 22:52:15 +00:00
'echo-overlay-link' => 'Сва обавештења…' , # Fuzzy
2012-08-10 19:18:21 +00:00
'echo-overlay-title' => 'М о ј а обавештења' ,
2012-12-31 20:41:20 +00:00
'echo-overlay-title-overflow' => 'М о ј а обавештења (приказ $1 од $2 непрочитаних)' ,
'echo-date-today' => 'Данас' ,
'echo-date-yesterday' => 'Јуче' ,
2012-08-09 19:26:11 +00:00
);
2012-10-22 01:14:40 +00:00
/** Serbian ( Latin script ) ( srpski ( latinica ) )
*/
2012-09-26 19:43:27 +00:00
$messages [ 'sr-el' ] = array (
'prefs-echo' => 'Obaveštenja' ,
'echo-no-agent' => '[Niko]' ,
2012-10-22 01:14:40 +00:00
'echo-no-title' => '[Bez naslova]' , # Fuzzy
2012-09-26 19:43:27 +00:00
'notifications' => 'Obaveštenja' ,
'echo-specialpage' => 'Moja obaveštenja' ,
2013-01-27 17:36:02 +00:00
'echo-none' => 'U poslednje vreme niste primili nijedno obaveštenje.' , # Fuzzy
2012-12-09 20:25:32 +00:00
'echo-link' => 'Moja obaveštenja' , # Fuzzy
2012-12-11 22:52:15 +00:00
'echo-overlay-link' => 'Sva obaveštenja…' , # Fuzzy
2012-09-26 19:43:27 +00:00
'echo-overlay-title' => 'Moja obaveštenja' ,
);
2012-08-03 16:18:35 +00:00
/** Swedish ( svenska )
* @ author Ainali
2012-08-13 19:47:46 +00:00
* @ author WikiPhoenix
2012-08-03 16:18:35 +00:00
*/
$messages [ 'sv' ] = array (
2012-11-02 19:56:47 +00:00
'echo-desc' => 'Notifikationssystem' ,
2012-08-03 16:18:35 +00:00
'prefs-echo' => 'Meddelanden' ,
2012-12-23 21:49:55 +00:00
'prefs-displaynotifications' => 'Visningsalternativ' ,
2013-04-15 20:57:21 +00:00
'prefs-echosubscriptions' => 'Underrätta mig om dessa händelser' ,
2013-02-15 20:32:50 +00:00
'echo-pref-web' => 'Webb' ,
'echo-pref-email' => 'E-post' ,
2012-12-20 20:43:13 +00:00
'echo-pref-email-frequency-never' => 'Skicka mig inte några aviseringar via e-postmeddelanden' ,
'echo-pref-email-frequency-immediately' => 'Enskilda meddelanden när de kommer' ,
'echo-pref-email-frequency-daily' => 'En daglig sammanfattning av aviseringar' ,
'echo-pref-email-frequency-weekly' => 'En veckosammanfattning av aviseringar' ,
2013-02-15 20:32:50 +00:00
'echo-dismiss-button' => 'Avfärda' ,
'echo-dismiss-message' => 'Stäng av alla $1 notifieringar' ,
2013-04-15 20:57:21 +00:00
'echo-dismiss-prefs-message' => 'Du kan aktivera dessa igen i inställningarna' ,
2013-04-18 19:43:00 +00:00
'echo-category-title-edit-user-talk' => 'Diskussionssideinlägg' , # Fuzzy
'echo-category-title-article-linked' => 'Sidlänk' , # Fuzzy
'echo-category-title-reverted' => 'Redigering återställd' , # Fuzzy
'echo-category-title-mention' => 'Nämna' , # Fuzzy
'echo-category-title-other' => 'Annan' , # Fuzzy
'echo-category-title-system' => 'System' , # Fuzzy
2012-08-03 16:18:35 +00:00
'echo-no-agent' => '[Ingen]' ,
2012-11-02 19:56:47 +00:00
'echo-no-title' => '[Ingen sida]' ,
'echo-error-no-formatter' => 'Ingen formatering definierad för notifikation' ,
2013-02-15 20:32:50 +00:00
'echo-error-preference' => 'Fel: Kunde inte sätta användarens val' ,
'echo-error-token' => 'Fel: Det gick inte att hämta användar-token' ,
2012-08-03 16:18:35 +00:00
'notifications' => 'Meddelanden' ,
2013-02-15 20:32:50 +00:00
'tooltip-pt-notifications' => 'Dina notifieringar' ,
2013-04-08 19:58:35 +00:00
'echo-specialpage' => 'Meddelanden' ,
2012-09-01 20:45:19 +00:00
'echo-anon' => 'För att ta emot meddelanden, [[Special:Userlogin/signup|skapa ett konto]] eller [[Special:UserLogin|logga in]].' ,
2012-12-20 20:43:13 +00:00
'echo-none' => 'Du har inga meddelanden.' ,
2013-02-15 20:32:50 +00:00
'echo-more-info' => 'Mer information' ,
'notification-edit-talk-page2' => '[[User:$1|$1]] {{GENDER:$1|postade}} på din [[User talk:$2|diskussionssida]].' ,
'notification-edit-talk-page-flyout2' => '$1 {{GENDER:$1|postade}} på din [[User talk:$2|diskussionssida]].' ,
2013-04-15 20:57:21 +00:00
'notification-page-linked' => '[[$2|$2]] blev {{GENDER:$1|länkad}} från [[$3|$3]]: [[Special:WhatLinksHere/$2|Se alla länkar till denna sida]]' ,
'notification-page-linked-flyout' => '$2 blev {{GENDER:$1|länkad}} från $3: [[Special:WhatLinksHere/$2|Se alla länkar till denna sida]]' ,
2013-02-15 20:32:50 +00:00
'notification-add-comment2' => '[[User:$1|$1]] {{GENDER:$1|kommenterade}} "[[$3|$2]]" på diskussionssidan för "$4"' ,
'notification-add-talkpage-topic2' => '[[User:$1|$1]] {{GENDER:$1|postade}} ett nytt ämne "$2" på [[$3]]' ,
'notification-add-talkpage-topic-yours2' => '[[User:$1|$1]] {{GENDER:$1|skickade}} ett meddelande till dig: "[[$3#$2|$2]]"' ,
'notification-add-comment-yours2' => '[[User:$1|$1]] {{GENDER:$1|kommenterade}} "[[$3#$2|$2]]" på din diskussionssida' ,
2013-04-15 20:57:21 +00:00
'notification-mention' => '[[User:$1|$1]] {{GENDER:$1|nämnde}} dig på [[$3#$2|$3]].' ,
'notification-mention-flyout' => '$1 {{GENDER:$1|nämnde}} dig på [[$3#$2|$3]].' ,
'notification-user-rights' => 'Dina användarrättigheter [[Special:Log/rights/$1|blev {{GENDER:$1|ändrade}}]] av [[User:$1|$1]]. $2. [[Special:ListGroupRights|Läs mer]]' ,
'notification-user-rights-flyout' => 'Dina användarrättigheter blev {{GENDER:$1|ändrade}} av $1. $2. [[Special:ListGroupRights|Läs mer]]' ,
'notification-user-rights-add' => 'Du är nu medlem i {{PLURAL:$2|denna grupp|dessa grupper}}: $1' ,
'notification-user-rights-remove' => 'Du är inte längre medlem av {{PLURAL:$2|denna grupp|dessa grupper}}: $1' ,
2013-04-08 19:58:35 +00:00
'notification-new-user' => 'Välkommen till {{SITENAME}}, $1! Vi är glada att du är här.' ,
2013-02-15 20:32:50 +00:00
'notification-reverted2' => '{{PLURAL:$4|Din redigering|Dina redigeringar}} på [[$2]] har {{GENDER:$1|återställts}} av [[User:$1|$1]] $3' ,
2013-04-08 19:58:35 +00:00
'notification-reverted-flyout2' => '{{PLURAL:$4|Din redigering|Dina redigeringar}} på $2 har {{GENDER:$1|återställts}} av $1 $3' ,
2013-02-15 20:32:50 +00:00
'notification-edit-talk-page-email-subject2' => 'Du har ett nytt meddelande på diskussionssidan' ,
2013-04-15 20:57:21 +00:00
'notification-edit-talk-page-email-body2' => ' $ 1
2013-02-15 20:32:50 +00:00
$ 3
Se mer :
$ 2
2013-04-15 20:57:21 +00:00
$ 4 ' ,
2013-02-15 20:32:50 +00:00
'notification-edit-talk-page-email-batch-body2' => '$1 {{GENDER:$1|postade}} på din diskussionssida' ,
2013-04-15 20:57:21 +00:00
'notification-page-linked-email-subject' => 'En sida som du startade länkades till på {{SITENAME}}' ,
'notification-page-linked-email-body' => ' $ 1
Se alla länkar till denna sida :
{{ canonicalurl : {{ #special:WhatLinksHere/$2}}}}
$ 3 ' ,
'notification-page-linked-email-batch-body' => '$2 blev {{GENDER:$1|länkad}} från $3' ,
2013-02-16 23:16:53 +00:00
'notification-reverted-email-subject2' => '{{PLURAL:$3|Din redigering|Dina redigeringar}} på $2 blev {{GENDER:$1|återställda}} av $1' ,
2013-04-15 20:57:21 +00:00
'notification-reverted-email-body2' => ' {{ PLURAL : $ 7 | Din redigering på $ 2 | Dina redigeringar på $ 2 }} har {{ GENDER : $ 1 | återställts }} av $ 1.
$ 5
Se mer :
$ 3
$ 6 ' ,
'notification-reverted-email-batch-body2' => '{{PLURAL:$3|Din redigering|Dina redigeringar}} på $2 blev {{GENDER:$1|återställda}} av $1' ,
'notification-mention-email-subject' => '$1 {{GENDER:$1|nämnde}} dig på {{SITENAME}}' ,
'notification-mention-email-body' => ' {{ SITENAME }} användare $ 1 {{ GENDER : $ 1 | nämnde }} dig på $ 2.
$ 3
Se mer :
$ 4
$ 5 ' ,
'notification-mention-email-batch-body' => '$1 {{GENDER:$1|nämnde}} dig på $2.' ,
'notification-user-rights-email-subject' => 'Dina användarrättigheter har ändrats på {{SITENAME}}' ,
'notification-user-rights-email-body' => ' Dina användarrättigheter blev {{ GENDER : $ 1 | ändrade }} av $ 1. $ 2
Se mer :
{{ canonicalurl : {{ #special:ListGroupRights}}}}
$ 3 ' ,
'notification-user-rights-email-batch-body' => 'Dina användarrättigheter blev {{GENDER:$1|ändrade}} av $1. $2' ,
2012-08-03 16:18:35 +00:00
'echo-email-subject-default' => 'Nytt meddelande på {{SITENAME}}' ,
'echo-email-body-default' => ' Du har ett nytt meddelande på {{ SITENAME }} :
2013-04-15 20:57:21 +00:00
$ 1 ' ,
'echo-email-batch-body-default' => 'Du har ett nytt meddelande' ,
'echo-email-footer-default' => ' $ 2
För att kontrollera vilken e - post vi skickar dig , besök :
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2013-04-18 19:43:00 +00:00
$ 1 ' , # Fuzzy
2012-08-03 16:18:35 +00:00
'echo-link-new' => '$1 {{PLURAL:$1|nytt meddelande|nya meddelanden}}' ,
2012-12-20 20:43:13 +00:00
'echo-link' => 'Meddelanden' ,
'echo-overlay-link' => 'Alla meddelanden' ,
2013-04-08 19:58:35 +00:00
'echo-overlay-title' => 'Meddelanden' ,
'echo-overlay-title-overflow' => 'Meddelanden (visar $1 av $2 olästa)' ,
2012-12-20 20:43:13 +00:00
'echo-date-today' => 'Idag' ,
'echo-date-yesterday' => 'Igår' ,
'echo-load-more-error' => 'Ett fel uppstod när fler resultat skulle hämtas.' ,
2013-04-15 20:57:21 +00:00
'notification-edit-talk-page-bundle' => '$1 och $3 {{PLURAL:$4|andra}} {{GENDER:$1|postade}} på din [[User talk:$2|diskussionssida]].' ,
'notification-page-linked-bundle' => '$2 blev {{GENDER:$1|länkad}} från $3 och $4 {{PLURAL:$5|annan sida|andra sidor}}. [[Special:WhatLinksHere/$2|Se alla länkar till denna sida]]' ,
'notification-edit-user-talk-email-batch-bundle-body' => '$1 och $2 {{PLURAL:$3|annan|andra}} {{GENDER:$1|postade}} på din diskussionssida.' ,
'notification-page-linked-email-batch-bundle-body' => '$2 blev {{GENDER:$1|länkad}} från $3 och $4 {{PLURAL:$5|annan sida|andra sidor}}' ,
2013-04-18 19:43:00 +00:00
'echo-email-batch-subject-daily' => 'Du har $1 {{PLURAL:$2|meddelande|meddelanden}} idag' , # Fuzzy
'echo-email-batch-subject-weekly' => 'Du har $1 {{PLURAL:$2|meddelande|meddelanden}} denna vecka' , # Fuzzy
2013-04-15 20:57:21 +00:00
'echo-email-batch-body-daily' => ' $ 1 ,
Du har $ 2 {{ PLURAL : $ 3 | meddelande | meddelanden }} på {{ SITENAME }} idag . Se dem här :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-18 19:43:00 +00:00
$ 5 ' , # Fuzzy
2013-04-15 20:57:21 +00:00
'echo-email-batch-body-weekly' => ' $ 1 ,
Du har $ 2 {{ PLURAL : $ 3 | meddelande | meddelanden }} på {{ SITENAME }} denna vecka . Se dem här :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-18 19:43:00 +00:00
$ 5 ' , # Fuzzy
2012-08-03 16:18:35 +00:00
);
2012-08-10 19:18:21 +00:00
/** Tamil ( தமிழ் )
* @ author Karthi . dr
2012-08-11 19:17:10 +00:00
* @ author Shanmugamp7
2012-08-14 19:37:09 +00:00
* @ author மதனாஹரன்
2012-08-10 19:18:21 +00:00
*/
$messages [ 'ta' ] = array (
'prefs-echo' => 'அறிவிப்புகள்' ,
2012-12-27 21:19:24 +00:00
'echo-pref-email-frequency-daily' => 'தினமும் அறிவித்தல்களின் சுருக்கம்' ,
2012-10-22 01:14:40 +00:00
'echo-no-title' => '[தலைப்பு இல்லை]' , # Fuzzy
2012-08-10 19:18:21 +00:00
'notifications' => 'அறிவிப்புகள்' ,
'echo-specialpage' => 'என் அறிவிப்புகள்' ,
2012-08-14 19:37:09 +00:00
'echo-anon' => 'அறிவிப்புகளைப் பெறுவதற்கு [[Special:Userlogin/signup|ஒரு கணக்கை உருவாக்குங்கள்]] அல்லது [[Special:UserLogin|உள்நுழையுங்கள்]].' ,
2012-08-10 19:18:21 +00:00
'echo-email-subject-default' => '{{SITENAME}}இல் புதிய அறிவிப்புகள்' ,
'echo-email-body-default' => ' {{ SITENAME }} இல் உங்களுக்கு ஒரு புதிய அறிவிப்பு உள்ளது :
$ 1 ' ,
2012-08-11 19:17:10 +00:00
'echo-link-new' => '$1 புதிய {{PLURAL:$1|notification|அறிவிக்கைகள்}}' ,
2012-12-26 21:07:31 +00:00
'echo-link' => 'என் அறிவிப்புகள்' , # Fuzzy
'echo-overlay-link' => 'எல்லா அறிவிப்புகள்....' , # Fuzzy
2012-08-10 19:18:21 +00:00
'echo-overlay-title' => 'என் அறிவிப்புகள்' ,
2012-12-26 21:07:31 +00:00
'echo-date-today' => 'இன்று' ,
'echo-date-yesterday' => 'நேற்று' ,
2012-08-10 19:18:21 +00:00
);
2012-06-15 22:03:34 +00:00
/** Tagalog ( Tagalog )
* @ author AnakngAraw
2012-09-05 19:19:12 +00:00
* @ author TheSleepyhollow02
2012-06-15 22:03:34 +00:00
*/
$messages [ 'tl' ] = array (
2012-10-22 01:14:40 +00:00
'echo-desc' => 'Pangkasunod na salinlahing imprastruktura ng pagpapabatid para sa MediaWiki' , # Fuzzy
2012-06-15 22:03:34 +00:00
'prefs-echo' => 'Mga pagpapabatid' ,
'echo-no-agent' => '[Walang Sinuman]' ,
2012-10-22 01:14:40 +00:00
'echo-no-title' => '[Walang Pamagat]' , # Fuzzy
2012-06-15 22:03:34 +00:00
'notifications' => 'Mga pagpapabatid' ,
'echo-specialpage' => 'Mga pagpapabatid ko' ,
2012-08-06 19:26:34 +00:00
'echo-anon' => 'Upang makatanggap ng mga pagpapabatid, [[Special:Userlogin/signup|lumikha ng isang akawnt]] o [[Special:UserLogin|lumagdang papasok]].' ,
2013-01-04 21:26:29 +00:00
'echo-none' => 'Hindi ka nakakatanggap ng anumang mga pagpapabatid nitong mga uling panahon!' , # Fuzzy
2012-09-05 19:19:12 +00:00
'notification-new-user' => 'Maligayang Pagdating sa {{SITENAME}}, $1!' ,
2013-01-04 21:26:29 +00:00
'notification-new-user-content' => 'Manyaring tandaan na lumagda ng kahit na anong komento sa mga pahina ng usapan na may 4 na bantas (~~~~).' ,
2012-06-15 22:03:34 +00:00
'echo-email-subject-default' => 'Bagong pagpapabatid sa {{SITENAME}}' ,
'echo-email-body-default' => ' Mayroon kang isang bagong pagpapabatid doon sa {{ SITENAME }} :
$ 1 ' ,
2012-07-05 19:44:26 +00:00
'echo-link-new' => '$1 bagong {{PLURAL:$1|pagpapabatid|mga pagpapabatid}}' ,
2012-12-09 20:25:32 +00:00
'echo-link' => 'Mga pagpapabatid ko' , # Fuzzy
2012-12-11 22:52:15 +00:00
'echo-overlay-link' => 'Lahat ng mga pagpapabatid...' , # Fuzzy
2012-06-15 22:03:34 +00:00
'echo-overlay-title' => 'Mga pagpapabatid ko' ,
2012-04-27 15:14:24 +00:00
);
2012-06-15 22:03:34 +00:00
2012-12-27 21:19:24 +00:00
/** Turkish ( Türkçe )
* @ author Emperyan
*/
$messages [ 'tr' ] = array (
'echo-desc' => 'Bildirim sistemi' ,
'prefs-echo' => 'Bildirimler' ,
'prefs-displaynotifications' => 'Görüntüleme seçenekleri' ,
'echo-none' => 'Bildiriminiz bulunmamakta.' ,
);
2012-12-31 20:41:20 +00:00
/** Uyghur ( Arabic script ) ( ئۇيغۇرچە )
* @ author Sahran
*/
$messages [ 'ug-arab' ] = array (
'prefs-echo' => 'ئۇقتۇرۇشلار' ,
'prefs-displaynotifications' => 'كۆرسىتىش تاللانما' ,
'notifications' => 'ئۇقتۇرۇشلار' ,
'echo-link' => 'ئۇقتۇرۇشلار' ,
'echo-date-today' => 'بۈگۈن' ,
'echo-date-yesterday' => 'تۈنۈگۈن' ,
);
2012-12-05 20:53:33 +00:00
/** Ukrainian ( українська )
* @ author Base
2013-01-13 20:36:48 +00:00
* @ author Olvin
2012-12-29 19:39:13 +00:00
* @ author Steve . rusyn
2012-12-25 20:04:33 +00:00
* @ author Ата
2012-12-05 20:53:33 +00:00
*/
$messages [ 'uk' ] = array (
'echo-desc' => 'Система сповіщень' ,
'prefs-echo' => 'Сповіщення' ,
'prefs-displaynotifications' => 'Опції відображення' ,
2012-12-14 20:35:28 +00:00
'prefs-emailsubscriptions' => 'Сповіщати мене через електронну пошту, коли хтось' ,
2013-01-08 20:27:52 +00:00
'prefs-emailfrequency' => 'Як часто я отримуватиму сповіщення електронною поштою' , # Fuzzy
2012-12-14 20:35:28 +00:00
'echo-pref-email-edit-user-talk' => 'напише на моїй сторінці обговорення' ,
'echo-pref-email-reverted' => 'відкотить моє редагування' ,
'echo-pref-email-frequency-never' => 'Н е надсилати мені жодних сповіщень електронною поштою' ,
'echo-pref-email-frequency-immediately' => 'Сповіщати про кожну подію одразу' ,
'echo-pref-email-frequency-daily' => 'Щоденна збірка сповіщень' ,
'echo-pref-email-frequency-weekly' => 'Щомісячна збірка сповіщень' ,
'echo-pref-notify-hide-link' => 'Приховати посилання та значок сповіщень на моїй панелі інструментів' ,
2012-12-05 20:53:33 +00:00
'echo-no-agent' => '[Ніхто]' ,
'echo-no-title' => '[Нема сторінки]' ,
2012-12-14 20:35:28 +00:00
'echo-error-no-formatter' => 'Н е визначено формату сповіщень' ,
2012-12-10 20:28:59 +00:00
'notifications' => 'Сповіщення' ,
2012-12-29 19:39:13 +00:00
'tooltip-pt-notifications' => 'Ваші сповіщення' ,
2012-12-10 20:28:59 +00:00
'echo-specialpage' => 'Мої сповіщення' ,
'echo-anon' => 'Для отримання сповіщень, [[Special:Userlogin/signup|створіть обліковий запис]] а б о [[Special:UserLogin|увійдіть]].' ,
2012-12-25 20:04:33 +00:00
'echo-none' => 'У В а с немає сповіщень.' ,
2012-12-10 20:28:59 +00:00
'notification-new-user' => 'Ласкаво просимо до {{GRAMMAR:accusative|{{SITENAME}}}}, $1!' ,
2013-01-13 20:36:48 +00:00
'notification-new-user-content' => 'Будь ласка, не забувайте підписувати всі коментарі на сторінках обговорень чотирма тильдами (~~~~).' ,
2012-12-25 20:04:33 +00:00
'echo-email-subject-default' => 'Нові сповіщення на {{SITENAME}}' ,
'echo-email-body-default' => ' У В а с є нове сповіщення на {{ SITENAME }} :
$ 1 ' ,
'echo-email-footer-default' => ' $ 2
Щоб контролювати , які листи ми Вам надсилаємо , перейдіть сюди :
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
$ 1 ' ,
2012-12-10 20:28:59 +00:00
'echo-link-new' => '$1 {{PLURAL:$1|нове сповіщення|нові сповіщення|нових сповіщень}}' ,
'echo-link' => 'Сповіщення' ,
2012-12-14 20:35:28 +00:00
'echo-overlay-link' => 'У с і сповіщення' ,
2012-12-10 20:28:59 +00:00
'echo-overlay-title' => 'Мої сповіщення' ,
2012-12-25 20:04:33 +00:00
'echo-overlay-title-overflow' => 'Мої сповіщення (показано $1 з $2 непрочитаних)' ,
2012-12-14 20:35:28 +00:00
'echo-date-today' => 'Сьогодні' ,
'echo-date-yesterday' => 'Вчора' ,
2012-12-25 20:04:33 +00:00
'echo-load-more-error' => 'Під час отримання додаткових результатів сталася помилка.' ,
'echo-email-batch-subject-daily' => 'У В а с $1 {{PLURAL:$2|сповіщення|сповіщення|сповіщень}} сьогодні' ,
'echo-email-batch-subject-weekly' => 'У В а с $1 {{PLURAL:$2|сповіщення|сповіщення|сповіщень}} цього тижня' ,
'echo-email-batch-body-daily' => ' $ 1 ,
У В а с $ 2 {{ PLURAL : $ 3 | сповіщення | сповіщення | сповіщень }} на {{ SITENAME }} сьогодні . Перегляньте їх тут :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
$ 5 ' ,
'echo-email-batch-body-weekly' => ' $ 1 ,
У В а с $ 2 {{ PLURAL : $ 3 | сповіщення | сповіщення | сповіщень }} на {{ SITENAME }} цього тижня . Перегляньте їх тут :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
$ 5 ' ,
'echo-email-batch-category-header-edit-user-talk' => '$1 {{PLURAL:$1|повідомлення|повідомлення|повідомлень}} на сторінці обговорення' ,
'echo-email-batch-category-header-other' => '$1 {{PLURAL:$1|інше|інших}}' ,
2012-12-05 20:53:33 +00:00
);
2012-08-17 13:01:48 +00:00
/** Urdu ( اردو )
2013-04-15 20:57:21 +00:00
* @ author Noor2020
2012-08-17 13:01:48 +00:00
* @ author පසිඳු කාවින්ද
*/
$messages [ 'ur' ] = array (
'prefs-echo' => 'اطلاعات' ,
2013-04-18 19:43:00 +00:00
'echo-category-title-other' => 'دیگر' , # Fuzzy
2012-08-17 13:01:48 +00:00
'notifications' => 'اطلاعات' ,
2013-04-15 20:57:21 +00:00
'echo-specialpage' => 'میری اطلاعات' , # Fuzzy
2013-04-16 19:44:42 +00:00
'echo-feedback' => 'آپ کی رائے' ,
2013-01-27 17:36:02 +00:00
'echo-link' => 'میری اطلاعات' , # Fuzzy
'echo-overlay-link' => 'سب اطلاعات...' , # Fuzzy
2013-04-15 20:57:21 +00:00
'echo-overlay-title' => 'میری اطلاعات' , # Fuzzy
2012-08-17 13:01:48 +00:00
);
2012-08-20 19:19:10 +00:00
/** Vietnamese ( Tiếng Việt )
* @ author Minh Nguyen
*/
$messages [ 'vi' ] = array (
2012-10-31 20:39:05 +00:00
'echo-desc' => 'Hệ thống thông báo' ,
2012-08-20 19:19:10 +00:00
'prefs-echo' => 'Thông báo' ,
2012-12-04 21:05:46 +00:00
'prefs-displaynotifications' => 'Tùy chọn hiển thị' ,
2013-04-15 20:57:21 +00:00
'prefs-echosubscriptions' => 'Báo cho tôi biết về những sự kiện này' ,
2013-02-14 20:29:43 +00:00
'echo-pref-web' => 'Web' ,
'echo-pref-email' => 'Thư điện tử' ,
2012-12-14 20:35:28 +00:00
'echo-pref-email-frequency-never' => 'Không gửi cho tôi bất kỳ thông báo qua thư điện tử' ,
'echo-pref-email-frequency-immediately' => 'Gửi các thông báo từng cái một vào đúng lúc xảy ra' ,
'echo-pref-email-frequency-daily' => 'Tóm lược các thông báo hàng ngày' ,
'echo-pref-email-frequency-weekly' => 'Tóm lược các thông báo hàng tuần' ,
2013-02-14 20:29:43 +00:00
'echo-dismiss-button' => 'Tắt' ,
'echo-dismiss-message' => 'Tắt mọi thông báo $1' ,
2013-03-08 17:04:36 +00:00
'echo-dismiss-prefs-message' => 'Bạn có thể bật lại các thông báo này trong Tùy chọn' ,
2013-04-18 19:43:00 +00:00
'echo-category-title-edit-user-talk' => 'Lời tin nhắn' , # Fuzzy
'echo-category-title-article-linked' => 'Liên kết đến trang' , # Fuzzy
'echo-category-title-reverted' => 'Lùi sửa' , # Fuzzy
'echo-category-title-mention' => 'Lời nói đến' , # Fuzzy
'echo-category-title-other' => 'Khác' , # Fuzzy
'echo-category-title-system' => 'Hệ thống' , # Fuzzy
2012-08-20 19:19:10 +00:00
'echo-no-agent' => '[Không ai]' ,
2012-10-31 20:39:05 +00:00
'echo-no-title' => '[Không có trang]' ,
2012-11-02 19:56:47 +00:00
'echo-error-no-formatter' => 'Thông báo không có định rõ định dạng' ,
2013-02-21 20:16:53 +00:00
'echo-error-preference' => 'Lỗi: Không thể đặt tùy chọn' ,
'echo-error-token' => 'Lỗi: Không thể lấy dấu hiệu người dùng' ,
2012-08-20 19:19:10 +00:00
'notifications' => 'Thông báo' ,
2012-12-30 19:42:03 +00:00
'tooltip-pt-notifications' => 'Các thông báo cho bạn' ,
2013-03-31 18:48:01 +00:00
'echo-specialpage' => 'Thông báo' ,
2012-08-20 19:19:10 +00:00
'echo-anon' => 'Để nhận thông báo, hãy [[Special:Userlogin/signup|mở tài khoản]] hoặc [[Special:UserLogin|đăng nhập]].' ,
2012-12-18 20:35:47 +00:00
'echo-none' => 'Bạn không có thông báo.' ,
2013-01-10 21:07:13 +00:00
'echo-more-info' => 'Thêm thông tin' ,
2013-03-31 18:48:01 +00:00
'echo-quotation-marks' => '“$1”' ,
2013-01-10 21:07:13 +00:00
'notification-edit-talk-page2' => '[[User:$1|$1]] đã nhắn tin vào [[User talk:$2|trang thảo luận]] của bạn.' ,
'notification-edit-talk-page-flyout2' => '$1 đã nhắn tin vào [[User talk:$2|trang thảo luận]] của bạn.' ,
2013-04-06 19:50:26 +00:00
'notification-page-linked' => '[[$3|$3]] mới {{GENDER:$1}}có liên kết đến [[$2|$2]]: [[Special:WhatLinksHere/$2|Xem tất cả các liên kết đến trang này]]' ,
'notification-page-linked-flyout' => '$3 mới {{GENDER:$1}}có liên kết đến $2: [[Special:WhatLinksHere/$2|Xem tất cả các liên kết đến trang này]]' ,
2013-01-10 21:07:13 +00:00
'notification-add-comment2' => '[[User:$1|$1]] đã bình luận về “[[$3|$2]]” tại trang thảo luận “$4”' ,
'notification-add-talkpage-topic2' => '[[User:$1|$1]] đã bắt đầu cuộc thảo luận mới về “$2” tại [[$3]]' ,
'notification-add-talkpage-topic-yours2' => '[[User:$1|$1]] đã nhắn tin cho bạn: “[[$3#$2|$2]]”' ,
'notification-add-comment-yours2' => '[[User:$1|$1]] đã bình luận về “[[$3#$2|$2]]” tại trang thảo luận của bạn' ,
2013-02-26 20:47:14 +00:00
'notification-mention' => '[[User:$1|$1]] đã nói đến bạn tại [[$3#$2|$3]].' ,
'notification-mention-flyout' => '$1 đã nói đến bạn tại [[$3#$2|$3]].' ,
2013-04-15 20:57:21 +00:00
'notification-user-rights' => '[[User:$1|$1]] {{GENDER:$1}}đã [[Special:Log/rights/$1|thay đổi]] các quyền người dùng của bạn. $2. [[Special:ListGroupRights|Tìm hiểu thêm]]' ,
2013-03-25 19:45:38 +00:00
'notification-user-rights-flyout' => '$1 {{GENDER:$1}}đã thay đổi các quyền người dùng của bạn. $2. [[Special:ListGroupRights|Tìm hiểu thêm]]' ,
'notification-user-rights-add' => 'Bạn mới là thành viên của {{PLURAL:$2|nhóm|các nhóm}} này: $1' ,
'notification-user-rights-remove' => 'Bạn không còn là thành viên của {{PLURAL:$2|nhóm|các nhóm}} này: $1' ,
2013-04-06 19:50:26 +00:00
'notification-new-user' => 'Chào mừng $1 đã đến với {{SITENAME}}!' ,
2013-01-10 21:07:13 +00:00
'notification-reverted2' => '[[User:$1|$1]] đã lùi lại {{PLURAL:$4|sửa đổi|các sửa đổi}} của bạn tại [[$2]] $3' ,
'notification-reverted-flyout2' => '$1 đã lùi lại {{PLURAL:$4|sửa đổi|các sửa đổi}} của bạn tại $2 $3' ,
'notification-edit-talk-page-email-subject2' => 'Trang thảo luận của bạn có tin nhắn mới' ,
2013-04-15 20:57:21 +00:00
'notification-edit-talk-page-email-body2' => ' $ 1
2013-01-10 21:07:13 +00:00
$ 3
Xem thêm :
$ 2
2013-04-15 20:57:21 +00:00
$ 4 ' ,
2013-01-10 21:07:13 +00:00
'notification-edit-talk-page-email-batch-body2' => '$1 đã nhắn tin vào trang thảo luận của bạn' ,
2013-04-06 19:50:26 +00:00
'notification-page-linked-email-subject' => 'Có liên kết mới đến một trang do bạn tạo ra tại {{SITENAME}}' ,
2013-04-15 20:57:21 +00:00
'notification-page-linked-email-body' => ' $ 1
2013-04-06 19:50:26 +00:00
Xem tất cả các liên kết đến trang này :
{{ canonicalurl : {{ #special:WhatLinksHere/$2}}}}
2013-04-15 20:57:21 +00:00
$ 3 ' ,
2013-04-06 19:50:26 +00:00
'notification-page-linked-email-batch-body' => '$3 mới {{GENDER:$1}}có liên kết đến $2' ,
2013-01-10 21:07:13 +00:00
'notification-reverted-email-subject2' => '$1 đã lùi lại {{PLURAL:$3|sửa đổi|các sửa đổi}} của bạn tại $2' ,
'notification-reverted-email-body2' => ' $ 1 đã lùi lại {{ PLURAL : $ 7 | sửa đổi | các sửa đổi }} của bạn tại $ 2.
$ 5
Xem thêm :
$ 3
$ 6 ' ,
'notification-reverted-email-batch-body2' => '$1 đã lùi lại {{PLURAL:$3|sửa đổi|các sửa đổi}} của bạn tại $2' ,
2013-02-26 20:47:14 +00:00
'notification-mention-email-subject' => '$1 đã nói đến bạn tại {{SITENAME}}' ,
'notification-mention-email-body' => ' Người dùng $ 1 tại {{ SITENAME }} đã nói đến bạn tại $ 2.
$ 3
Xem thêm :
$ 4
$ 5 ' ,
'notification-mention-email-batch-body' => '$1 đã nói đến bạn tại $2' ,
2013-03-25 19:45:38 +00:00
'notification-user-rights-email-subject' => 'Các quyền người dùng của bạn đã thay đổi tại {{SITENAME}}' ,
'notification-user-rights-email-body' => ' $ 1 {{ GENDER : $ 1 }} đã thay đổi các quyền người dùng của bạn . $ 2
Xem chi tiết :
{{ canonicalurl : {{ #special:ListGroupRights}}}}
$ 3 ' ,
'notification-user-rights-email-batch-body' => '$1 {{GENDER:$1}}đã thay đổi các quyền người dùng của bạn. $2' ,
2012-08-20 19:19:10 +00:00
'echo-email-subject-default' => 'Thông báo mới tại {{SITENAME}}' ,
'echo-email-body-default' => ' Bạn có thông báo mới tại {{ SITENAME }} :
2012-12-02 20:41:24 +00:00
$ 1 ' ,
2013-04-06 19:50:26 +00:00
'echo-email-batch-body-default' => 'Bạn có thông báo mới' ,
2012-12-18 20:35:47 +00:00
'echo-email-footer-default' => ' $ 2
2012-12-02 20:41:24 +00:00
Để cấu hình hoặc tắt các thông báo qua thư điện tử , hãy ghé vào :
{{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2013-04-18 19:43:00 +00:00
$ 1 ' , # Fuzzy
2012-08-20 19:19:10 +00:00
'echo-link-new' => '$1 thông báo mới' ,
2012-12-02 20:41:24 +00:00
'echo-link' => 'Thông báo' ,
2012-12-14 20:35:28 +00:00
'echo-overlay-link' => 'Tất cả các thông báo' ,
2013-03-31 18:48:01 +00:00
'echo-overlay-title' => 'Thông báo' ,
'echo-overlay-title-overflow' => 'Tin nhắn (đang xem $1 trên $2 chưa đọc)' ,
2012-12-11 22:52:15 +00:00
'echo-date-today' => 'Hôm nay' ,
'echo-date-yesterday' => 'Hôm qua' ,
2013-02-14 20:29:43 +00:00
'echo-date-header' => '$2 $1' ,
2012-12-11 22:52:15 +00:00
'echo-load-more-error' => 'Lỗi đã xảy ra khi lấy thêm kết quả.' ,
2013-04-06 19:50:26 +00:00
'notification-edit-talk-page-bundle' => '$1 và $3 {{PLURAL:$4}}người khác đã {{GENDER:$1}}nhắn tin vào [[User talk:$2|trang thảo luận]] của bạn.' ,
'notification-page-linked-bundle' => '$3 và $4 {{PLURAL:$5}}trang khác mới {{GENDER:$1}}có liên kết đến $2. [[Special:WhatLinksHere/$2|Xem tất cả các liên kết đến trang này]]' ,
2013-04-15 20:57:21 +00:00
'notification-edit-user-talk-email-batch-bundle-body' => '$1 và $2 {{PLURAL:$3}}người khác {{GENDER:$1}}đã nhắn tin vào trang thảo luận của bạn' ,
'notification-page-linked-email-batch-bundle-body' => '$3 và $4 {{PLURAL:$5}}trang khác {{GENDER:$1}}mới có liên kết đến $2' ,
2013-04-18 19:43:00 +00:00
'echo-email-batch-subject-daily' => 'Bạn có {{PLURAL:$2|một tin nhắn|$1 tin nhắn}} hôm nay' , # Fuzzy
'echo-email-batch-subject-weekly' => 'Bạn có {{PLURAL:$2|thông báo|$1 thông báo}} tuần này' , # Fuzzy
2012-12-14 20:35:28 +00:00
'echo-email-batch-body-daily' => ' Xin chào $ 1 ,
Bạn có {{ PLURAL : $ 3 | một thông báo | $ 2 thông báo }} tại {{ SITENAME }} hôm nay . Hãy xem chúng tại đây :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-18 19:43:00 +00:00
$ 5 ' , # Fuzzy
2012-12-14 20:35:28 +00:00
'echo-email-batch-body-weekly' => ' Xin chào $ 1 ,
Bạn có {{ PLURAL : $ 3 | một thông báo | $ 2 thông báo }} tại {{ SITENAME }} tuần này . Hãy xem chúng tại đây :
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-18 19:43:00 +00:00
$ 5 ' , # Fuzzy
2012-08-20 19:19:10 +00:00
);
2012-10-02 13:41:36 +00:00
/** Simplified Chinese ( 中文(简体) )
2012-08-11 19:17:10 +00:00
* @ author Anakmalaysia
2012-12-29 19:39:13 +00:00
* @ author Dimension
2013-02-09 22:55:30 +00:00
* @ author Hydra
2013-04-08 19:58:35 +00:00
* @ author Kuailong
2012-08-12 20:15:22 +00:00
* @ author Liangent
2013-04-17 19:33:47 +00:00
* @ author Linforest
2012-12-22 22:08:46 +00:00
* @ author Shirayuki
2013-02-17 20:38:37 +00:00
* @ author Xiaomingyan
2013-01-21 20:47:43 +00:00
* @ author Yfdyh000
2013-02-04 22:18:36 +00:00
* @ author 乌拉跨氪
2012-08-11 19:17:10 +00:00
*/
$messages [ 'zh-hans' ] = array (
2012-12-22 22:08:46 +00:00
'echo-desc' => '通知系统' ,
2012-08-12 20:15:22 +00:00
'prefs-echo' => '通知' ,
2012-12-22 22:08:46 +00:00
'prefs-displaynotifications' => '显示选项' ,
2013-04-17 19:33:47 +00:00
'prefs-echosubscriptions' => '通知我有关这些事件的情况' ,
2013-02-18 20:55:25 +00:00
'echo-pref-email' => '电子邮件' ,
2012-12-22 22:08:46 +00:00
'echo-pref-email-frequency-never' => '不要给我发送任何电子邮件通知' ,
'echo-pref-email-frequency-immediately' => '允许的个别通知' ,
'echo-pref-email-frequency-daily' => '每日通知摘要' ,
'echo-pref-email-frequency-weekly' => '每周通知摘要' ,
2013-02-18 20:55:25 +00:00
'echo-dismiss-button' => '解除' ,
'echo-dismiss-message' => '关闭所有 $1 通知' ,
2013-03-25 19:45:38 +00:00
'echo-dismiss-prefs-message' => '您可以在参数设置中重新打开这些选项' ,
2013-04-18 19:43:00 +00:00
'echo-category-title-edit-user-talk' => '讨论页留言' , # Fuzzy
2013-04-11 20:21:12 +00:00
'echo-category-title-article-linked' => '链接到的页面' , # Fuzzy
'echo-category-title-reverted' => '编辑被回退' , # Fuzzy
2013-04-18 19:43:00 +00:00
'echo-category-title-mention' => '提及' , # Fuzzy
'echo-category-title-other' => '其他' , # Fuzzy
'echo-category-title-system' => '系统' , # Fuzzy
2012-08-11 19:17:10 +00:00
'echo-no-agent' => '[无人]' ,
2012-12-22 22:08:46 +00:00
'echo-no-title' => '[无页面]' ,
2013-01-21 20:47:43 +00:00
'echo-error-no-formatter' => '没有定义通知的格式' ,
2013-02-18 20:55:25 +00:00
'echo-error-preference' => '错误:无法设置用户首选项' ,
'echo-error-token' => '错误:无法检索用户令牌' ,
2012-08-11 19:17:10 +00:00
'notifications' => '通知' ,
2012-12-30 19:42:03 +00:00
'tooltip-pt-notifications' => '您的通知' ,
2013-03-30 18:03:30 +00:00
'echo-specialpage' => '通知' ,
2012-08-12 20:15:22 +00:00
'echo-anon' => '要接收通知,请[[Special:Userlogin/signup|创建帐号]]或[[Special:UserLogin|登录]]。' ,
2012-12-22 22:08:46 +00:00
'echo-none' => '您没有任何通知。' ,
2013-01-21 20:47:43 +00:00
'echo-more-info' => '更多信息' ,
2013-04-17 19:33:47 +00:00
'echo-feedback' => '反馈' ,
2013-01-21 20:47:43 +00:00
'notification-edit-talk-page2' => '[[User:$1|$1]]在您的[[User talk:$2|讨论页]]留言。' ,
'notification-edit-talk-page-flyout2' => '$1在您的[[User talk:$2|讨论页]]留言。' ,
2013-04-08 19:58:35 +00:00
'notification-page-linked' => '[[$2|$2]]由[[$3|$3]]{{GENDER:$1|链入}}: [[Special:WhatLinksHere/$2|查看本页的所有链入页面]]' ,
2013-02-04 22:18:36 +00:00
'notification-add-comment2' => '[[User:$1|$1]]在“$4”的讨论页中{{GENDER:$1|谈论了}}“[[$3|$2]]”' ,
'notification-add-talkpage-topic2' => '[[User:$1|$1]]在[[$3]]上发起了一个新的话题“$2”' ,
'notification-add-talkpage-topic-yours2' => '[[User:$1|$1]]给您发来一则消息:“[[$3#$2|$2]]”' ,
'notification-add-comment-yours2' => '[[User:$1|$1]]在您的讨论页上{{GENDER:$1|谈论了}}“[[$3#$2|$2]]”' ,
2013-04-08 19:58:35 +00:00
'notification-mention' => '[[User:$1|$1]]在[[$3#$2|$3]]中{{GENDER:$1|提到}}了你 。' ,
'notification-mention-flyout' => '$1在[[$3#$2|$3]]上{{GENDER:$1|提到}}了你。' ,
'notification-user-rights-flyout' => '你的用户权限已被$1{{GENDER:$1|更改}}。$2。[[Special:ListGroupRights|了解更多]]' ,
'notification-user-rights-add' => '你现在是以下用户组的成员:$1' , # Fuzzy
'notification-user-rights-remove' => '你不再是{{PLURAL:$2|以下用户组}}的成员:$1' ,
'notification-new-user' => '欢迎来到{{SITENAME}}, $1! 我们十分欢迎您的光临。' ,
2013-02-12 20:22:40 +00:00
'notification-reverted2' => '您在[[$2]]上的 $4 次编辑已被[[User:$1|$1]]{{GENDER:$1|撤销}}$3' ,
'notification-reverted-flyout2' => '您在{{PLURAL:$4|$2的编辑}}已被$1{{GENDER:$1|回退}} $3' ,
2013-02-04 22:18:36 +00:00
'notification-edit-talk-page-email-subject2' => '您有一条新的讨论页消息' ,
2013-02-17 20:38:37 +00:00
'notification-edit-talk-page-email-body2' => ' {{ SITENAME }} 用户 $ 1 在你的讨论页面 {{ GENDER : $ 1 | 留言了 }} :
2013-01-21 20:47:43 +00:00
$ 3
查看更多:
$ 2
2013-04-11 20:21:12 +00:00
$ 4 ' , # Fuzzy
2013-02-17 20:38:37 +00:00
'notification-edit-talk-page-email-batch-body2' => '$1在你的讨论页面{{GENDER:$1|留言了}}' ,
2013-04-08 19:58:35 +00:00
'notification-page-linked-email-subject' => '您创建的页面被链接到了{{SITENAME}}' ,
'notification-page-linked-email-body' => ' $ 2 由 $ 4 {{ GENDER : $ 1 | 链入 }}
查看本页的所有链入页面:
{{ canonicalurl : {{ #special:WhatLinksHere/$2}}}}
2013-04-11 20:21:12 +00:00
$ 3 ' , # Fuzzy
2013-01-21 20:47:43 +00:00
'notification-reverted-email-subject2' => '您{{PLURAL:$3|在$2的编辑|在$2的编辑}}已被$1回退' ,
'notification-reverted-email-body2' => ' 您 {{ PLURAL : $ 7 | 在 $ 2 的编辑已被 | 在 $ 2 的编辑已被 }} $ 1 回退。
$ 5
查看更多:
$ 3
$ 6 ' ,
'notification-reverted-email-batch-body2' => '您{{PLURAL:$3|在$2的编辑|在$2的编辑}}已被$1回退' ,
2013-04-08 19:58:35 +00:00
'notification-mention-email-subject' => '$1在{{SITENAME}}上{{GENDER:$1|提到}}了你' ,
'notification-mention-email-body' => ' {{ SITENAME }} 用户 $ 1 在 $ 2 上 {{ GENDER : $ 1 | 提到 }} 了你。
$ 3
查看更多:
$ 4
$ 5 ' ,
'notification-mention-email-batch-body' => '$1在$2上{{GENDER:$1|提到}}了你' ,
2013-03-25 19:45:38 +00:00
'notification-user-rights-email-subject' => '您在{{SITENAME}}的用户权限已变更' ,
2013-04-08 19:58:35 +00:00
'notification-user-rights-email-body' => ' 你的用户权限被 $ 1 {{ GENDER : $ 1 | 修改 }} 了。 $ 2
查看更多
{{ canonicalurl : {{ #special:ListGroupRights}}}}
$ 3 ' ,
'notification-user-rights-email-batch-body' => '你的用户权限已被$1{{GENDER:$1|修改}}。$2' ,
2012-08-12 20:15:22 +00:00
'echo-email-subject-default' => '{{SITENAME}}上的新通知' ,
'echo-email-body-default' => ' 您在 {{ SITENAME }} 上有新通知:
2013-01-21 20:47:43 +00:00
$ 1 ' ,
2013-04-08 19:58:35 +00:00
'echo-email-batch-body-default' => '您有一条新通知' ,
2013-01-21 20:47:43 +00:00
'echo-email-footer-default' => ' $ 2
2013-02-17 20:38:37 +00:00
管理你想要接收的电子邮件的种类,请访问: {{ canonicalurl : {{ #special:Preferences}}#mw-prefsection-echo}}
2013-01-21 20:47:43 +00:00
2013-04-18 19:43:00 +00:00
$ 1 ' , # Fuzzy
2012-08-12 20:15:22 +00:00
'echo-link-new' => '$1条新通知' ,
2012-12-22 22:08:46 +00:00
'echo-link' => '通知' ,
'echo-overlay-link' => '全部通知' ,
2013-03-30 18:03:30 +00:00
'echo-overlay-title' => '通知' ,
'echo-overlay-title-overflow' => '通知(显示 $2 / $1 条未读)' ,
2012-12-22 22:08:46 +00:00
'echo-date-today' => '今天' ,
'echo-date-yesterday' => '昨天' ,
2012-12-29 19:39:13 +00:00
'echo-load-more-error' => '获取更多的结果时出错。' ,
2013-04-08 19:58:35 +00:00
'notification-edit-talk-page-bundle' => '$1和{{PLURAL:$4|其他}}$3名用户在你的[[User talk:$2|对话页]]上{{GENDER:$1|留言}}。' ,
2013-04-18 19:43:00 +00:00
'echo-email-batch-subject-daily' => '您今天有$1{{PLURAL:$2|条通知|条通知}}' , # Fuzzy
'echo-email-batch-subject-weekly' => '您本周有$1{{PLURAL:$2|条通知|条通知}}' , # Fuzzy
2013-02-04 22:18:36 +00:00
'echo-email-batch-body-daily' => ' $ 1 :
2013-01-21 20:47:43 +00:00
2013-02-09 22:55:30 +00:00
今天您在 {{ SITENAME }} 有 $ 2 {{ PLURAL : $ 3 | 条通知 | 条通知 }} 。查看它们:
2013-01-21 20:47:43 +00:00
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-18 19:43:00 +00:00
$ 5 ' , # Fuzzy
2013-02-04 22:18:36 +00:00
'echo-email-batch-body-weekly' => ' $ 1 :
2013-01-21 20:47:43 +00:00
2013-02-09 22:55:30 +00:00
本周您在 {{ SITENAME }} 有 $ 2 {{ PLURAL : $ 3 | 条通知 | 条通知 }} 。查看它们:
2013-01-21 20:47:43 +00:00
{{ canonicalurl : {{ #special:Notifications}}}}
$ 4
2013-04-18 19:43:00 +00:00
$ 5 ' , # Fuzzy
2012-08-11 19:17:10 +00:00
);
2012-09-26 19:43:27 +00:00
/** Traditional Chinese ( 中文(繁體) )
2012-12-22 22:08:46 +00:00
* @ author Shirayuki
2012-08-09 19:26:11 +00:00
* @ author Simon Shek
2013-01-06 20:09:24 +00:00
* @ author Waihorace
2012-08-09 19:26:11 +00:00
*/
$messages [ 'zh-hant' ] = array (
2013-01-06 20:09:24 +00:00
'echo-desc' => '通知系統' ,
2012-09-26 19:43:27 +00:00
'prefs-echo' => '通知' ,
2013-01-06 20:09:24 +00:00
'prefs-displaynotifications' => '顯示選項' ,
2013-02-27 21:15:37 +00:00
'prefs-emailfrequency' => '何時您想收到電郵通知?' ,
'echo-pref-subscription-article-linked' => '於其他頁面加入一條連結到我創建的頁面' ,
'echo-pref-subscription-reverted' => '回退我的編輯' ,
2013-01-07 20:56:27 +00:00
'echo-pref-email-frequency-never' => '不要向我發送任何電郵通知' ,
'echo-pref-email-frequency-immediately' => '允許個別通知' ,
'echo-pref-email-frequency-daily' => '每日通知摘要' ,
'echo-pref-email-frequency-weekly' => '每周通知摘要' ,
2013-01-06 20:09:24 +00:00
'echo-pref-notify-hide-link' => '在我的工具列中隱藏通知連結及標示' ,
2012-08-09 19:26:11 +00:00
'echo-no-agent' => '[無人]' ,
2013-01-06 20:09:24 +00:00
'echo-no-title' => '[無頁面]' ,
'echo-error-no-formatter' => '沒有定義通知格式' ,
2012-09-26 19:43:27 +00:00
'notifications' => '通知' ,
2013-01-06 20:09:24 +00:00
'tooltip-pt-notifications' => '你的通知' ,
2012-09-26 19:43:27 +00:00
'echo-specialpage' => '我的通知' ,
'echo-anon' => '要接收通知,請[[Special:Userlogin/signup|創建帳號]]或[[Special:UserLogin|登錄]]。' ,
2013-01-06 20:09:24 +00:00
'echo-none' => '您沒有任何通知。' ,
'notification-new-user' => '歡迎來到{{SITENAME}}, $1! ' ,
'notification-new-user-content' => '請記得為討論頁上的任何留言用四個波浪線(~~~~)簽名。' ,
2012-09-26 19:43:27 +00:00
'echo-email-subject-default' => '{{SITENAME}}上的新通知' ,
2012-08-09 19:26:11 +00:00
'echo-email-body-default' => ' 你在 {{ SITENAME }} 有一項新訊息:
$ 1 ' ,
'echo-link-new' => '$1項新{{PLURAL:$1|訊息|訊息}}' ,
2012-12-09 20:25:32 +00:00
'echo-link' => '我的訊息' , # Fuzzy
2012-12-11 22:52:15 +00:00
'echo-overlay-link' => '所有訊息...' , # Fuzzy
2012-08-09 19:26:11 +00:00
'echo-overlay-title' => '我的訊息' ,
2012-12-22 22:08:46 +00:00
'echo-date-today' => '今天' ,
'echo-date-yesterday' => '昨天' ,
2012-08-09 19:26:11 +00:00
);