Index: trunk/extensions/Wikidata/util/voctrain/i18n/language.i18n.php |
— | — | @@ -0,0 +1,193 @@ |
| 2 | +<?php |
| 3 | + |
| 4 | +# messages for voctrain |
| 5 | +# now mediawiki style -ish |
| 6 | + |
| 7 | +# Words starting with '%' (ie %action, or %questions_total) are |
| 8 | +# "variable names", for use by the program. Don't translate those! |
| 9 | + |
| 10 | + |
| 11 | + |
| 12 | +$fallback=array( |
| 13 | + "en"=>false, |
| 14 | + "nl"=>"en" |
| 15 | +); |
| 16 | + |
| 17 | +$messages=array(); |
| 18 | + |
| 19 | +/** English */ |
| 20 | + |
| 21 | +$messages["en"] =array( |
| 22 | + "Hello World"=>"HELLO WIKI!", |
| 23 | + "Permission Denied"=>"Permission Denied", |
| 24 | + "try again?"=>"try again?", |
| 25 | + "Action unknown"=>"Action unknown", |
| 26 | + "I don't know what to do with '%action'." => |
| 27 | + "I don't know what to do with '%action'.", |
| 28 | + "User added" => "User added", |
| 29 | + "Hello, %username, welcome to the omega language trainer" => |
| 30 | + "Hello, %username, welcome to the omega language trainer", |
| 31 | + "continue"=>"continue", |
| 32 | + "hello %place"=>"hello there %place", |
| 33 | + "bye"=>"goodbye", |
| 34 | + "Set up your exercise"=>"Set up your exercise", |
| 35 | + "Number of questions"=>"Number of questions", |
| 36 | + "Languages"=>"Languages", |
| 37 | + "Please specify the languages you want to test in"=>"Please specify the languages you want to test in", |
| 38 | + "(eg, eng for English, deu for Deutch (German))."=>"(eg, eng for English, deu for Deutch (German)).", |
| 39 | + "Depending on your test set, some combinations might work better than others."=>"Depending on your test set, some combinations might work better than others.", |
| 40 | + "Questions"=>"Questions", |
| 41 | + "Answers"=>"Answers", |
| 42 | + "start exercise"=>"start exercise", |
| 43 | + "collection"=>"collection", |
| 44 | + "ISO-639-3 format"=>"ISO-639-3 format", |
| 45 | + "There are %questions_remaining questions remaining, out of a total of %questions_total."=>"There are %questions_remaining questions remaining, out of a total of %questions_total.", |
| 46 | + "Definition"=>"Definition", |
| 47 | + "Dictionary definition to help you"=>"Dictionary definition to help you", |
| 48 | + "Word"=>"Word", |
| 49 | + "Please type your answer here"=>"Please type your answer here", |
| 50 | + "submit answer"=>"submit answer", |
| 51 | + "peek"=>"peek", |
| 52 | + "skip"=>"skip", |
| 53 | + "I know it/do not ask again"=>"I know it/do not ask again", |
| 54 | + "abort exercise"=>"abort exercise", |
| 55 | + "list answers"=>"list answers", |
| 56 | + "Question"=>"Question", |
| 57 | + "The word to translate"=>"The word to translate", |
| 58 | + "Answer"=>"Answer", |
| 59 | + "one of"=>"one of", |
| 60 | + "list of questions and answers"=>"list of questions and answers", |
| 61 | + "Answer(s)"=>"Answer(s)", |
| 62 | + "logout"=>"logout", |
| 63 | + "Powered by"=>"Powered by", |
| 64 | + "Omegawiki"=>"Omegawiki", |
| 65 | + "Exercise complete"=>"Exercise complete", |
| 66 | + "Exercise terminated"=>"Exercise terminated", |
| 67 | + "Start a new exercise"=>"Start a new exercise", |
| 68 | + "User name"=>"User name", |
| 69 | + "Password"=>"Password", |
| 70 | + "Login"=>"Login", |
| 71 | + "Create new user"=>"Create new user", |
| 72 | + "Switch language"=>"Switch language", |
| 73 | + "Language"=>"Language", |
| 74 | + "Log in"=>"Log in", |
| 75 | + "Omegawiki vocabulary trainer"=>"Omegawiki vocabulary trainer" |
| 76 | +); |
| 77 | + |
| 78 | +/** Message documentation */ |
| 79 | + |
| 80 | +$messages["qqq"] = array( |
| 81 | + "Hello World"=>"Test message", |
| 82 | + "Permission Denied"=>"login: access is denied", |
| 83 | + "try again?"=>"An operation failed, link back to normal voctrainer (used in multiple locations)", |
| 84 | + "Action unknown"=>"Action unknown: Page title", |
| 85 | + "I don't know what to do with '%action'." => |
| 86 | + "Action unknown: body text of page (don't translate %action).", |
| 87 | + "User added" => "login: title of User added page", |
| 88 | + "Hello, %username, welcome to the omega language trainer" => |
| 89 | + "login: Greeting when user created. (Don't translate %username)", |
| 90 | + "continue"=>"continue operation (used in multiple locations)", |
| 91 | + "hello %place"=>"Test message (don't translate %place)", |
| 92 | + "bye"=>"Test message", |
| 93 | + "Set up your exercise"=>"setup: Page title", |
| 94 | + "Number of questions"=>"setup: subheading", |
| 95 | + "Languages"=>"Languages", |
| 96 | + "Please specify the languages you want to test in"=>"Setup:text the in refers to '...in iso-693-3 format'", |
| 97 | + "(eg, eng for English, deu for Deutch (German))."=>"Setup:text", |
| 98 | + "Depending on your test set, some combinations might work better than others."=>"setup:text", |
| 99 | + "Questions"=>"Questions", |
| 100 | + "Answers"=>"Answers", |
| 101 | + "start exercise"=>"button:start exercise", |
| 102 | + "collection"=>"a wikidata collection", |
| 103 | + "ISO-639-3 format"=>"ISO-639-3 format", |
| 104 | + "There are %questions_remaining questions remaining, out of a total of %questions_total."=>"exercise: status at top of page (don't translate %questions_remaining and %questions_total)", |
| 105 | + "Definition"=>"exercise: subheading", |
| 106 | + "Dictionary definition to help you"=>"exercise: text", |
| 107 | + "Word"=>"exercise: subheading", |
| 108 | + "Please type your answer here"=>"exercise: text", |
| 109 | + "submit answer"=>"exercise: button", |
| 110 | + "peek"=>"exercise: button", |
| 111 | + "skip"=>"exercise: button", |
| 112 | + "I know it/do not ask again"=>"exercise: button", |
| 113 | + "abort exercise"=>"exercise: button", |
| 114 | + "list answers"=>"exercise: button", |
| 115 | + "Question"=>"Question", |
| 116 | + "The word to translate"=>"The word to translate", |
| 117 | + "Answer"=>"Answer", |
| 118 | + "one of"=>"one of", |
| 119 | + "list of questions and answers"=>"list: heading", |
| 120 | + "Answer(s)"=>"list: table header", |
| 121 | + "logout"=>"logout button on all pages", |
| 122 | + "Powered by"=>"footer: Powered by", |
| 123 | + "Omegawiki"=>"footer: Omegawiki", |
| 124 | + "Exercise complete"=>"end exercise: page heading", |
| 125 | + "Exercise terminated"=>"end exercise: page heading", |
| 126 | + "Start a new exercise"=>"end exercise: Start a new exercise", |
| 127 | + "User name"=>"login: User name", |
| 128 | + "Password"=>"login: Password", |
| 129 | + "Login"=>"login: button", |
| 130 | + "Create new user"=>"login: button", |
| 131 | + "Switch language"=>"login: button", |
| 132 | + "Language"=>"login: label", |
| 133 | + "Log in"=>"login: header", |
| 134 | + "Omegawiki vocabulary trainer"=>"login: header" |
| 135 | +); |
| 136 | + |
| 137 | +/** Dutch */ |
| 138 | +$messages["nl"]=array( |
| 139 | + "Hello World"=>"HALLO WIKI!", |
| 140 | + "Permission Denied"=>"Toestemming Geweigerd", |
| 141 | + "try again?"=>"probeer opnieuw?", |
| 142 | + "Action unknown"=>"Aktie (action) onbekend", |
| 143 | + "I don't know what to do with '%action'." => |
| 144 | + "Ik weet niet wat ik doen moet met '%action'.", |
| 145 | + "User added" => "Gebruiker toegevoegd", |
| 146 | + "Hello, %username, welcome to the omega language trainer" => |
| 147 | + "Hallo, %username, welkom bij de omega taaltrainer", |
| 148 | + "continue"=>"doorgaan", |
| 149 | + "hello %place"=>"hallo daar %place", |
| 150 | + "bye"=>"tot ziens", |
| 151 | + "Set up your exercise"=>"Stel uw oefening op", |
| 152 | + "Number of questions"=>"Aantal vragen", |
| 153 | + "Languages"=>"Talen", |
| 154 | + "Please specify the languages you want to test in"=>"Geef aub de talen op waarin u wilt oefenen in", |
| 155 | + "(eg, eng for English, deu for Deutch (German))."=>"(bijv, eng voor English (Engels), deu voor Deutch (Duits)).", |
| 156 | + "Depending on your test set, some combinations might work better than others."=>"Afhankelijk van uw testset, werken sommige combinaties beter dan anderen.", |
| 157 | + "Questions"=>"Vragen", |
| 158 | + "Answers"=>"Antwoorden", |
| 159 | + "start exercise"=>"start oefening", |
| 160 | + "collection"=>"collectie", |
| 161 | + "ISO-639-3 format"=>"ISO-639-3 formaat", |
| 162 | + "There are %questions_remaining questions remaining, out of a total of %questions_total."=> |
| 163 | + "Er zikn nog %questions_remaining over, uit een totaal van %questions_total.", |
| 164 | + "Definition"=>"Definitie", |
| 165 | + "Dictionary definition to help you"=>"Woordenboek definitie om u te helpen", |
| 166 | + "Word"=>"Woord", |
| 167 | + "Please type your answer here"=>"Typ alstublieft hier uw antwoord.", |
| 168 | + "submit answer"=>"antwoord submitten", |
| 169 | + "peek"=>"spiek", |
| 170 | + "skip"=>"sla over", |
| 171 | + "I know it/do not ask again"=>"Ik weet dit antwoord/vraag niet nogmaals", |
| 172 | + "abort exercise"=>"Oefening afbreken", |
| 173 | + "list answers"=>"antwoordlijst", |
| 174 | + "Question"=>"Vraag", |
| 175 | + "The word to translate"=>"Het te-vertalen woord", |
| 176 | + "Answer"=>"Antwoord", |
| 177 | + "one of"=>"een van", |
| 178 | + "list of questions and answers"=>"list van vragen en antwoorden", |
| 179 | + "Answer(s)"=>"Antwoord(en)", |
| 180 | + "logout"=>"uitloggen", |
| 181 | + "Powered by"=>"Angedreven door", |
| 182 | + "Omegawiki"=>"Omegawiki", |
| 183 | + "Exercise complete"=>"Oefening voltooid", |
| 184 | + "Exercise terminated"=>"Oefening afgebroken", |
| 185 | + "Start a new exercise"=>"Start een nieuwe oefening", |
| 186 | + "User name"=>"Gebruikersnaam", |
| 187 | + "Password"=>"Wachtwoord", |
| 188 | + "Login"=>"Inloggen", |
| 189 | + "Create new user"=>"Nieuwe gebruiker aanmaken", |
| 190 | + "Switch language"=>"Wijzig taal", |
| 191 | + "Language"=>"Taal" |
| 192 | +); |
| 193 | + |
| 194 | +?> |