| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | /* | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     lang-dk.js | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |     Danish translation for SNAP! | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     written by FAB | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Copyright (C) 2013 by FAB | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     This file is part of Snap!.  | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Snap! is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |     it under the terms of the GNU Affero General Public License as | 
					
						
							|  |  |  |     published by the Free Software Foundation, either version 3 of | 
					
						
							|  |  |  |     the License, or (at your option) any later version. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |     but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							|  |  |  |     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |     GNU Affero General Public License for more details. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |     along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Note to Translators: | 
					
						
							|  |  |  |     -------------------- | 
					
						
							|  |  |  |     At this stage of development, Snap! can be translated to any LTR language | 
					
						
							|  |  |  |     maintaining the current order of inputs (formal parameters in blocks). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Translating Snap! is easy: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     1. Download | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Download the sources and extract them into a local folder on your | 
					
						
							|  |  |  |     computer: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         <http://snap.berkeley.edu/snapsource/snap.zip>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Use the German translation file (named 'lang-de.js') as template for your | 
					
						
							|  |  |  |     own translations. Start with editing the original file, because that way | 
					
						
							|  |  |  |     you will be able to immediately check the results in your browsers while | 
					
						
							|  |  |  |     you're working on your translation (keep the local copy of snap.html open | 
					
						
							|  |  |  |     in your web browser, and refresh it as you progress with your | 
					
						
							|  |  |  |     translation). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     2. Edit | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Edit the translation file with a regular text editor, or with your | 
					
						
							|  |  |  |     favorite JavaScript editor. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     In the first non-commented line (the one right below this | 
					
						
							|  |  |  |     note) replace "de" with the two-letter ISO 639-1 code for your language, | 
					
						
							|  |  |  |     e.g. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         fr - French => SnapTranslator.dict.fr = { | 
					
						
							|  |  |  |         it - Italian => SnapTranslator.dict.it = { | 
					
						
							|  |  |  |         pl - Polish => SnapTranslator.dict.pl = { | 
					
						
							|  |  |  |         pt - Portuguese => SnapTranslator.dict.pt = { | 
					
						
							|  |  |  |         es - Spanish => SnapTranslator.dict.es = { | 
					
						
							|  |  |  |         el - Greek => => SnapTranslator.dict.el = { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     etc. (see <http://en.wikipedia.org/wiki/ISO_639-1>)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     3. Translate | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Then work through the dictionary, replacing the German strings against | 
					
						
							|  |  |  |     your translations. The dictionary is a straight-forward JavaScript ad-hoc | 
					
						
							|  |  |  |     object, for review purposes it should be formatted as follows: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         { | 
					
						
							|  |  |  |             'English string': | 
					
						
							|  |  |  |                 'Translation string', | 
					
						
							|  |  |  |             'last key': | 
					
						
							|  |  |  |         }       'last value' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     and you only edit the indented value strings. Note that each key-value | 
					
						
							|  |  |  |     pair needs to be delimited by a comma, but that there shouldn't be a comma | 
					
						
							|  |  |  |     after the last pair (again, just overwrite the template file and you'll be | 
					
						
							|  |  |  |     fine). | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     If something doesn't work, or if you're unsure about the formalities you | 
					
						
							|  |  |  |     should check your file with | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         <http://JSLint.com>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     This will inform you about any missed commas etc. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     4. Accented characters | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Depending on which text editor and which file encoding you use you can | 
					
						
							|  |  |  |     directly enter special characters (e.g. Umlaut, accented characters) on | 
					
						
							|  |  |  |     your keyboard. However, I've noticed that some browsers may not display | 
					
						
							|  |  |  |     special characters correctly, even if other browsers do. So it's best to | 
					
						
							|  |  |  |     check your results in several browsers. If you want to be on the safe | 
					
						
							|  |  |  |     side, it's even better to escape these characters using Unicode. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         see: <http://0xcc.net/jsescape/>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     5. Block specs: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     At this time your translation of block specs will only work | 
					
						
							|  |  |  |     correctly, if the order of formal parameters and their types | 
					
						
							|  |  |  |     are unchanged. Placeholders for inputs (formal parameters) are | 
					
						
							|  |  |  |     indicated by a preceding % prefix and followed by a type | 
					
						
							|  |  |  |     abbreviation. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     For example: | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         'say %s for %n secs' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     can currently not be changed into | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         'say %n secs long %s' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     and still work as intended. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Similarly | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         'point towards %dst' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     cannot be changed into | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         'point towards %cst' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     without breaking its functionality. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     6. Submit | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     When you're done, rename the edited file by replacing the "de" part of the | 
					
						
							|  |  |  |     filename with the two-letter ISO 639-1 code for your language, e.g. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         fr - French => lang-fr.js | 
					
						
							|  |  |  |         it - Italian => lang-it.js | 
					
						
							|  |  |  |         pl - Polish => lang-pl.js | 
					
						
							|  |  |  |         pt - Portuguese => lang-pt.js | 
					
						
							|  |  |  |         es - Spanish => lang-es.js | 
					
						
							|  |  |  |         el - Greek => => lang-el.js | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     and send it to me for inclusion in the official Snap! distribution. | 
					
						
							|  |  |  |     Once your translation has been included, Your name will the shown in the | 
					
						
							|  |  |  |     "Translators" tab in the "About Snap!" dialog box, and you will be able to | 
					
						
							|  |  |  |     directly launch a translated version of Snap! in your browser by appending | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         lang:xx | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     to the URL, xx representing your translations two-letter code. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     7. Known issues | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     In some browsers accents or ornaments located in typographic ascenders | 
					
						
							|  |  |  |     above the cap height are currently (partially) cut-off. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     Enjoy! | 
					
						
							|  |  |  |     -Jens | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /*global SnapTranslator*/ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | SnapTranslator.dict.dk = { | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  |     Special characters: (see <http://0xcc.net/jsescape/>)
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     €, Š   \u00c4, \u00e4 | 
					
						
							|  |  |  |     …, š   \u00d6, \u00f6 | 
					
						
							|  |  |  |     †, Ÿ   \u00dc, \u00fc | 
					
						
							|  |  |  |     §      \u00df | 
					
						
							|  |  |  |     Æ,æ  	\u00C6,\u00E6 | 
					
						
							|  |  |  |     Ø,ø	\u00D8,\u00F8 | 
					
						
							|  |  |  |     Å,å	\u00C5,\u00E5 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // translations meta information
 | 
					
						
							|  |  |  |     'language_name': | 
					
						
							|  |  |  |         'Dansk', // the name as it should appear in the language menu
 | 
					
						
							|  |  |  |     'language_translator': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'FAB, Pelle Hjek', // your name for the Translators tab
 | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'translator_e-mail': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'fab@nielsen.mail.dk, hjek@mail.com', // optional
 | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'last_changed': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         '2016-11-16', // this, too, will appear in the Translators tab
 | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // GUI
 | 
					
						
							|  |  |  |     // control bar:
 | 
					
						
							|  |  |  |     'untitled': | 
					
						
							|  |  |  |         'unavngivet', | 
					
						
							|  |  |  |     'development mode': | 
					
						
							|  |  |  |         'udviklertilstand', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // categories:
 | 
					
						
							|  |  |  |     'Motion': | 
					
						
							|  |  |  |         'Bev\u00E6gelse', | 
					
						
							|  |  |  |     'Looks': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Udseende', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Sound': | 
					
						
							|  |  |  |         'Lyd', | 
					
						
							|  |  |  |     'Pen': | 
					
						
							|  |  |  |         'Pensel', | 
					
						
							|  |  |  |     'Control': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Styring', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Sensing': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Sansning', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Operators': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Operatorer', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Variables': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Variable', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Lists': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Lister', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Other': | 
					
						
							|  |  |  |         'Andet', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // editor:
 | 
					
						
							|  |  |  |     'draggable': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'kan tr\u00E6kkes', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // tabs:
 | 
					
						
							|  |  |  |     'Scripts': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Scripts', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Costumes': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Kostumer', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Sounds': | 
					
						
							|  |  |  |         'Lyde', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // names:
 | 
					
						
							|  |  |  |     'Sprite': | 
					
						
							|  |  |  |         'Figur', | 
					
						
							|  |  |  |     'Stage': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Scene', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // rotation styles:
 | 
					
						
							|  |  |  |     'don\'t rotate': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'roter ikke', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'can rotate': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'kan rotere', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'only face left/right': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'vend kun mod h\u00F8jre/venstre', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // new sprite button:
 | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |     'add a new Turtle sprite': | 
					
						
							|  |  |  |         'Tilf\u00F8j en ny Skildpaddefigur', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // tab help
 | 
					
						
							|  |  |  |     'costumes tab help': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Importer et billede fra din computer eller en webside\n' | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |             + 'ved at tr\u00E6kke det her hen', | 
					
						
							|  |  |  |     'import a sound from your computer\nby dragging it into here': | 
					
						
							|  |  |  |         'Importer en lyd fra din computer ved at tr\u00E6kke den her hen', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // primitive blocks:
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /* | 
					
						
							|  |  |  |         Attention Translators: | 
					
						
							|  |  |  |         ---------------------- | 
					
						
							|  |  |  |         At this time your translation of block specs will only work | 
					
						
							|  |  |  |         correctly, if the order of formal parameters and their types | 
					
						
							|  |  |  |         are unchanged. Placeholders for inputs (formal parameters) are | 
					
						
							|  |  |  |         indicated by a preceding % prefix and followed by a type | 
					
						
							|  |  |  |         abbreviation. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         For example: | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |             'say %s for %n secs' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         can currently not be changed into | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |             'say %n secs long %s' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         and still work as intended. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         Similarly | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |             'point towards %dst' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         cannot be changed into | 
					
						
							|  |  |  |          | 
					
						
							|  |  |  |             'point towards %cst' | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         without breaking its functionality. | 
					
						
							|  |  |  |     */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // motion:
 | 
					
						
							|  |  |  |     'Stage selected:\nno motion primitives': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Scene valgt:\ningen bev\u00E6gelsesblokke\n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     'move %n steps': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'g\u00E5 %n trin', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'turn %clockwise %n degrees': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'drej %clockwise %n grader', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'turn %counterclockwise %n degrees': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'drej %counterclockwise %n grader', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'point in direction %dir': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'peg i retning %dir', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'point towards %dst': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'peg mod %dst', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'go to x: %n y: %n': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'g\u00E5 til x: %n y: %n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'go to %dst': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'g\u00E5 til %dst', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'glide %n secs to x: %n y: %n': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'sv\u00E6v i %n sekunder til x: %n y: %n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'change x by %n': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         '\u00E6ndr x med %n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'set x to %n': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         's\u00E6t x til %n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'change y by %n': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         '\u00E6ndr y med %n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'set y to %n': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         's\u00E6t y til %n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'if on edge, bounce': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'hop tilbage ved kanten', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'x position': | 
					
						
							|  |  |  |         'x-position', | 
					
						
							|  |  |  |     'y position': | 
					
						
							|  |  |  |         'y-position', | 
					
						
							|  |  |  |     'direction': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'retning', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // looks:
 | 
					
						
							|  |  |  |     'switch to costume %cst': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'skift til kostume %cst', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'next costume': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'n\u00E6ste kostume', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'costume #': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'kostume nummer', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'say %s for %n secs': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'sig %s i %n sekunder', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'say %s': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'sig %s', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'think %s for %n secs': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         't\u00E6nk %s i %n sekunder', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'think %s': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         't\u00E6nk %s', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Hello!': | 
					
						
							|  |  |  |         'Hej!', | 
					
						
							|  |  |  |     'Hmm...': | 
					
						
							|  |  |  |         'Hmm...', | 
					
						
							|  |  |  |     'change %eff effect by %n': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         '\u00E6ndr effekten %eff med %n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'set %eff effect to %n': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         's\u00E6t effekten %eff til %n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'clear graphic effects': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'ryd grafiske effekter', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'change size by %n': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         '\u00E6ndr st\u00F8rrelse med %n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'set size to %n %': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         's\u00E6t st\u00F8rrelse til %n %', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'size': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'st\u00F8rrelse', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'show': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'vis', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'hide': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'skjul', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'go to front': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'kom forrest', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'go back %n layers': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'smut %n lag tilbage', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     'development mode \ndebugging primitives:': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'udviklertilstand \nfejlfindingsenheder', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'console log %mult%s': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'skriv i konsollen: %mult%s', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'alert %mult%s': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'alarm %mult%s', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // sound:
 | 
					
						
							|  |  |  |     'play sound %snd': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'afspil lyd %snd', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'play sound %snd until done': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'afspil lyd %snd indtil f\u00E6rdig', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'stop all sounds': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'stop alle lyde', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'rest for %n beats': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'hvil i %n slag', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'play note %n for %n beats': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'afspil node %n i %n slag', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'change tempo by %n': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         '\u00E6ndr tempoet med %n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'set tempo to %n bpm': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         's\u00E6t tempoet til %n slag per minut', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'tempo': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'tempo', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // pen:
 | 
					
						
							|  |  |  |     'clear': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'ryd', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'pen down': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'pensel ned', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'pen up': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'pensel op', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'set pen color to %clr': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         's\u00E6t penselfarve til %clr', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'change pen color by %n': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         '\u00E6ndr penselfarven med %n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'set pen color to %n': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         's\u00E6t penselfarven til %n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'change pen shade by %n': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         '\u00E6ndr penselskyggen med %n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'set pen shade to %n': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         's\u00E6t penselskyggen til %n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'change pen size by %n': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         '\u00E6ndr penselst\u00F8rrelsen med %n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'set pen size to %n': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         's\u00E6t penselst\u00F8rrelsen til %n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'stamp': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'stempel', | 
					
						
							|  |  |  |     'fill': | 
					
						
							|  |  |  |         'fyld', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // control:
 | 
					
						
							|  |  |  |     'when %greenflag clicked': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'n\u00E5r %greenflag klikkes', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'when %keyHat key pressed': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'n\u00E5r %keyHat trykkes', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'when I am clicked': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'n\u00E5r jeg klikkes', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'when I receive %msgHat': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'n\u00E5r jeg modtager %msgHat', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'broadcast %msg': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'send %msg', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'broadcast %msg and wait': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'send %msg og vent', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Message name': | 
					
						
							|  |  |  |         'Beskednavn', | 
					
						
							|  |  |  |     'wait %n secs': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'vent i %n sekunder', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'wait until %b': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Vent indtil %b', | 
					
						
							| 
									
										
										
										
											2019-01-15 13:26:39 +00:00
										 |  |  |     'forever %loop': | 
					
						
							|  |  |  |         'for evigt %loop', | 
					
						
							|  |  |  |     'repeat %n %loop': | 
					
						
							|  |  |  |         'gentag %n gange %loop', | 
					
						
							|  |  |  |     'repeat until %b %loop': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'gentag indtil %b %c', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'if %b %c': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'hvis %b %c', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'if %b %c else %c': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'hvis %b %c ellers %c', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'report %s': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'papporter %s', | 
					
						
							|  |  |  |     'stop': | 
					
						
							|  |  |  |         'stop', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'stop block': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'stop blok', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'stop script': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'stop script', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'stop all %stop': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'stop alt %stop', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'run %cmdRing %inputs': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'k\u00F8r %cmdRing %inputs', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'launch %cmdRing %inputs': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'igangs\u00E6t %cmdRing %inputs', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'call %repRing %inputs': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'kald %repRing %inputs', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'run %cmdRing w/continuation': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'k\u00F8r %cmdRing med forts\u00E6ttelse ', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'call %cmdRing w/continuation': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'kald %cmdRing med forts\u00E6ttelse', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'warp %c': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'forskyd %c', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'when I start as a clone': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'n\u00E5r jeg starter som klon', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'create a clone of %cln': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'lav en klon af %cln', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'myself': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'migselv', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'delete this clone': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'slet denne klon', | 
					
						
							|  |  |  |     'pause all': | 
					
						
							|  |  |  |         's\u00E6t alt p\u00E5 pause', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // sensing:
 | 
					
						
							|  |  |  |     'touching %col ?': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'r\u00F8rer ved %col ?', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'touching %clr ?': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'r\u00F8rer ved %clr ?', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'color %clr is touching %clr ?': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'r\u00F8rer farven %clr ved farven %clr ?', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'ask %s and wait': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'sp\u00F8rg %s og vent', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'what\'s your name?': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'hvad hedder du?', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'answer': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'svar', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'mouse x': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'mus x', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'mouse y': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'mus y', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'mouse down?': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'mus nede?', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'key %key pressed?': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'tast %key trykket ned?', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'distance to %dst': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'afstand til %dst', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'reset timer': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'nulstil ur', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'timer': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'ur', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     '%att of %spr': | 
					
						
							|  |  |  |         '%att af %spr', | 
					
						
							|  |  |  |     'http:// %s': | 
					
						
							|  |  |  |         'http:// %s', | 
					
						
							|  |  |  |     'turbo mode?': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'turbotilstand?', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'set turbo mode to %b': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         's\u00E6t turbotilstand til %b', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     'filtered for %clr': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'renset for %clr', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'stack size': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'stakst\u00F8rrelse', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'frames': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'billeder', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // operators:
 | 
					
						
							|  |  |  |     '%n mod %n': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         '%n modulo %n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'round %n': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'afrund %n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     '%fun of %n': | 
					
						
							|  |  |  |         '%fun af %n', | 
					
						
							|  |  |  |     'pick random %n to %n': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'v\u00E6lg tilf\u00E6ldig %n til %n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     '%b and %b': | 
					
						
							|  |  |  |         '%b og %b', | 
					
						
							|  |  |  |     '%b or %b': | 
					
						
							|  |  |  |         '%b eller %b', | 
					
						
							|  |  |  |     'not %b': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'ikke %b', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'true': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'sandt', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'false': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'falsk', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'join %words': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'forbind %words', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'hello': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'hej', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'world': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'verden', | 
					
						
							| 
									
										
										
										
											2018-06-12 09:16:04 +00:00
										 |  |  |     'letter %idx of %s': | 
					
						
							|  |  |  |         'bogstav %idx af %s', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'length of %s': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'l\u00E6ngde af %s', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'unicode of %s': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'unicode af %s', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'unicode %n as letter': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'unicode %n som bogstav', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'is %s a %typ ?': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'er %s et %typ ?', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'is %s identical to %s ?': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'er %s identisk med %s ?', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     'type of %s': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'type af %s', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // variables:
 | 
					
						
							|  |  |  |     'Make a variable': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'lav en variabel', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Variable name': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'variabelnavn', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Delete a variable': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'slet en variabel', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     'set %var to %s': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         's\u00E6t %var til %s', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'change %var by %n': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         '\u00E6ndr %var med %n', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'show variable %var': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'vis variabel %var', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'hide variable %var': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'skjul variabel %var', | 
					
						
							|  |  |  | // hvad er "script" paa dansk?
 | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'script variables %scriptVars': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'scriptvariable %scriptVars', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // lists:
 | 
					
						
							|  |  |  |     'list %exp': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'liste %exp', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     '%s in front of %l': | 
					
						
							|  |  |  |         '%s foran %l', | 
					
						
							|  |  |  |     'item %idx of %l': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'genstand %idx af %l', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'all but first of %l': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'alle undtagen den f\u00F8rste af %l', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'length of %l': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'l\u00E6ngde af %l', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     '%l contains %s': | 
					
						
							|  |  |  |         '%l indeholder %s', | 
					
						
							|  |  |  |     'thing': | 
					
						
							|  |  |  |         'ting', | 
					
						
							|  |  |  |     'add %s to %l': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'tilf\u00F8j %s til %l', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'delete %ida of %l': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'slet %ida fra %l', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'insert %s at %idx of %l': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'inds\u00E6t %s ved %idx i %l', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'replace item %idx of %l with %s': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'erstat genstand %idx af %l med %s', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // other
 | 
					
						
							|  |  |  |     'Make a block': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Lav en blok', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // menus
 | 
					
						
							|  |  |  |     // snap menu
 | 
					
						
							|  |  |  |     'About...': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Om...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Reference manual': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Referencemanual', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Snap! website': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Snap! hjemmeside', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Download source': | 
					
						
							|  |  |  |         'Hent kildekode', | 
					
						
							|  |  |  |     'Switch back to user mode': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Skift tilbage til brugertilstand', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'disable deep-Morphic\ncontext menus\nand show user-friendly ones': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'sl\u00E5 deep-Morphics kontekstmenuer fra \nog vis brugervenlige \ni stedet', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Switch to dev mode': | 
					
						
							|  |  |  |         'Skift til udviklertilstand', | 
					
						
							|  |  |  |     'enable Morphic\ncontext menus\nand inspectors,\nnot user-friendly!': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         's\u00E6t deep-Morphics kontekstmenuer til \nog vis brugervenlige \ni stedet', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // project menu
 | 
					
						
							|  |  |  |     'Project Notes...': | 
					
						
							|  |  |  |         'Projektnoter...', | 
					
						
							|  |  |  |     'New': | 
					
						
							|  |  |  |         'Ny', | 
					
						
							|  |  |  |     'Open...': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         '\u00C5bn...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Save': | 
					
						
							|  |  |  |         'Gem', | 
					
						
							|  |  |  |     'Save As...': | 
					
						
							|  |  |  |         'Gem som...', | 
					
						
							|  |  |  |     'Import...': | 
					
						
							|  |  |  |         'Importer...', | 
					
						
							|  |  |  |     'file menu import hint': | 
					
						
							|  |  |  |         'Importer et eksporteret projekt,' | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |             + 'et blokbibliotek, et kostume' | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |             + 'eller en lydfil', | 
					
						
							|  |  |  |     'Export project as plain text ...': | 
					
						
							|  |  |  |         'Eksporter projekt som ren tekst...', | 
					
						
							|  |  |  |     'Export project...': | 
					
						
							|  |  |  |         'Eksporter projekt...', | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |     'Export summary...': | 
					
						
							|  |  |  |         'Eksporter opsummering...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'show project data as XML\nin a new browser window': | 
					
						
							|  |  |  |         'Vis projekt som XML\ni et nyt browservindue', | 
					
						
							|  |  |  |     'Export blocks ...': | 
					
						
							|  |  |  |         'Eksporter blokke...', | 
					
						
							|  |  |  |     'show global custom block definitions as XML\nin a new browser window': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Vis globale tilpassede blokdefinitioner som XML\ni et nyt browser-vindue', | 
					
						
							|  |  |  |     'Import tools': | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |         'Importer v\u00E6rkt\u00F8jer...', | 
					
						
							|  |  |  |     'load the official library of\npowerful blocks': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Indl\u00E6s det officielle bibliotek med \nkraftfulde blokke', | 
					
						
							|  |  |  |     'Libraries...': | 
					
						
							|  |  |  |         'Biblioteker...', | 
					
						
							|  |  |  |     'Import library': | 
					
						
							|  |  |  |         'Importer bibliotek', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // cloud menu
 | 
					
						
							|  |  |  |     'Login...': | 
					
						
							|  |  |  |         'Login...', | 
					
						
							|  |  |  |     'Signup...': | 
					
						
							|  |  |  |         'Registrer...', | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |     'Reset Password...': | 
					
						
							|  |  |  |         'Nulstil kodeord...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // settings menu
 | 
					
						
							|  |  |  |     'Language...': | 
					
						
							|  |  |  |         'Sprog...', | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |     'Zoom blocks...': | 
					
						
							|  |  |  |         'Forst\u00F8r blokke...', | 
					
						
							|  |  |  |     'Stage size...': | 
					
						
							|  |  |  |         'Scenest\u00F8rrelse...', | 
					
						
							|  |  |  |     'Stage size': | 
					
						
							|  |  |  |         'Scenest\u00F8rrelse', | 
					
						
							|  |  |  |     'Stage width': | 
					
						
							|  |  |  |         'Scenebredde', | 
					
						
							|  |  |  |     'Stage height': | 
					
						
							|  |  |  |         'Sceneh\u00F8jde', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Blurred shadows': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Sl\u00F8rede skygger', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'uncheck to use solid drop\nshadows and highlights': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'afmarker for at bruge h\u00E5rde skygger og fremh\u00E6velser', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'check to use blurred drop\nshadows and highlights': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'marker for at bruge bl\u00F8de \nskygger og fremh\u00E6velser', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Zebra coloring': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Zebrafarvning', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'check to enable alternating\ncolors for nested blocks': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'marker for at vise skiftende \nfarver for blokke inden i hinanden', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'uncheck to disable alternating\ncolors for nested block': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'afmarker for ikke at vise skiftende \nfarver for blokke inden i hinanden', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Dynamic input labels': | 
					
						
							|  |  |  |         'Dynamiske inputm\u00E6rkater', | 
					
						
							|  |  |  |     'uncheck to disable dynamic\nlabels for variadic inputs': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  | // what does variadic even mean?
 | 
					
						
							|  |  |  |         'afmarker for ikke at vise dynamiske \nm\u00E6rkater til varierende input', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'check to enable dynamic\nlabels for variadic inputs': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'marker for at vise dynamiske \nm\u00E6rkater til varierende input', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Prefer empty slot drops': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Foretr\u00E6k tomme hylstre', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'settings menu prefer empty slots hint': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'indstillingsmenu foretr\u00E6kker tomme hylstre', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'uncheck to allow dropped\nreporters to kick out others': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'afmarker for at lade indsatte rapport\u00F8rer sparke andre ud', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Long form input dialog': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Lang formularinputdialog', | 
					
						
							|  |  |  |     'Plain prototype labels': | 
					
						
							|  |  |  |         'Klare prototypem\u00E6rkater', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'check to always show slot\ntypes in the input dialog': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'marker for \naltid at vise hylstertyper i inputdialog', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'uncheck to use the input\ndialog in short form': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'afmarker for at bruge inputsdialogen i kort form', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Virtual keyboard': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Virtuelt tastatur', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'uncheck to disable\nvirtual keyboard support\nfor mobile devices': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'afmarker for at fjerne underst\u00F8ttelse \naf virtuelt tastetur til mobile enheder', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'check to enable\nvirtual keyboard support\nfor mobile devices': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'marker for at bruge underst\u00F8ttelse \naf virtuelt tastetur til mobile enheder ', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Input sliders': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Indtastningsskydeknapper', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'uncheck to disable\ninput sliders for\nentry fields': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'afmarker \nfor at fjerne \nskydeknapper i inputfelter', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'check to enable\ninput sliders for\nentry fields': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'marker \nfor at vise \nskydeknapper i inputfelter', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Clicking sound': | 
					
						
							|  |  |  |         'Kliklyd', | 
					
						
							|  |  |  |     'uncheck to turn\nblock clicking\nsound off': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'afmarker for \nat slukke for blokkliklyd', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'check to turn\nblock clicking\nsound on': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'marker til for at t\u00E6nde for blokkliklyd', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Animations': | 
					
						
							|  |  |  |         'Animationer', | 
					
						
							|  |  |  |     'uncheck to disable\nIDE animations': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'afmarker for at fjerne IDE-animationer', | 
					
						
							|  |  |  |     'Flat design': | 
					
						
							|  |  |  |         'Fladt udseende', | 
					
						
							|  |  |  |     'check for alternative GUI design': | 
					
						
							|  |  |  |         'marker for alternativ grafisk brugerflade', | 
					
						
							|  |  |  |     'uncheck for default GUI design': | 
					
						
							|  |  |  |         'afmarker for s\u00E6dvanlig brugerflade', | 
					
						
							|  |  |  |     'Nested auto-wrapping': | 
					
						
							|  |  |  |         'Automatisk omklamring', | 
					
						
							|  |  |  |     'Keyboard Editing': | 
					
						
							|  |  |  |         'Tastaturredigering', | 
					
						
							|  |  |  |     'Table support': | 
					
						
							|  |  |  |         'Tabelunderst\u00F8ttelse', | 
					
						
							|  |  |  |     'Table lines': | 
					
						
							|  |  |  |         'Tabeller med linjer', | 
					
						
							|  |  |  |     'Visible stepping': | 
					
						
							|  |  |  |         'Synlig gennemgang', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Turbo mode': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Hurtig gennemgang', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'check to prioritize\nscript execution': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'marker for at prioritere scriptudf\u00F8rsel', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'uncheck to run scripts\nat normal speed': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'afmarker for at afvikle scriptet i normal hastighed', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'check to enable\nIDE animations': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'marker for at bruge IDE-animationer', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Thread safe scripts': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Tr\u00E5dsikre scripts', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'uncheck to allow\nscript reentrance': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'afmarker for at tillade scriptgenindgang', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'check to disallow\nscript reentrance': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'marker for at forbyde scriptgenindgang', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Prefer smooth animations': | 
					
						
							|  |  |  |         'Foretr\u00E6k flydende animationer', | 
					
						
							|  |  |  |     'uncheck for greater speed\nat variable frame rates': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'afmarker for \u00F8get afspildningshastighed ved variabel billedfrekvens', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'check for smooth, predictable\nanimations across computers': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'marker for flydende, forudsigelige animationer p\u00E5 forskellige computere', | 
					
						
							|  |  |  |     'Flat line ends': | 
					
						
							|  |  |  |         'Flade penselstr\u00F8g', | 
					
						
							|  |  |  |     'check for flat ends of lines': | 
					
						
							|  |  |  |         'marker for flade\npenselstr\u00F8g', | 
					
						
							|  |  |  |     'uncheck for round ends of lines': | 
					
						
							|  |  |  |         'afmarker for afrundede linjespidser', | 
					
						
							|  |  |  |     'Codification support': | 
					
						
							|  |  |  |         'Afkodningsunderst\u00F8ttelse', | 
					
						
							|  |  |  |     'Inheritance support': | 
					
						
							|  |  |  |         'Nedarvningsunderst\u00F8gttelse', | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // inputs
 | 
					
						
							|  |  |  |     'with inputs': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'med input', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'input names:': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'inputnavne:', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Input Names:': | 
					
						
							|  |  |  |         'Inputnavne:', | 
					
						
							|  |  |  |     'input list:': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'inputliste:', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // context menus:
 | 
					
						
							|  |  |  |     'help': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'hj\u00E6lp', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // blocks:
 | 
					
						
							|  |  |  |     'help...': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'hj\u00E6lp...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'relabel...': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'nyt m\u00E6rkat...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'duplicate': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'dupliker', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'make a copy\nand pick it up': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'lav en kopi og saml den op', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'only duplicate this block': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'dupliker kun denne blok', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'delete': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'slet', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'script pic...': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'scriptbillede...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'open a new window\nwith a picture of this script': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         '\u00E5bn et nyt vindue \nmed et billede af dette script', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'ringify': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'omring', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'unringify': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'fjern omringning', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // custom blocks:
 | 
					
						
							|  |  |  |     'delete block definition...': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'slet blokdefinitionen...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'edit...': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'rediger...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // sprites:
 | 
					
						
							|  |  |  |     'edit': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'rediger', | 
					
						
							|  |  |  |     'move': | 
					
						
							|  |  |  |         'flyt', | 
					
						
							|  |  |  |     'detach from': | 
					
						
							|  |  |  |         'l\u00F8sriv fra', | 
					
						
							|  |  |  |     'detach all parts': | 
					
						
							|  |  |  |         'L\u00F8sriv alle dele', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'export...': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'eksporter...', | 
					
						
							|  |  |  |     'paint a new sprite': | 
					
						
							|  |  |  |         'mal en ny figur', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // stage:
 | 
					
						
							|  |  |  |     'show all': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'vis alle', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // scripting area
 | 
					
						
							|  |  |  |     'clean up': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'ryd op', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'arrange scripts\nvertically': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'arranger scripts \nlodret', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'add comment': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'tilf\u00F8j kommentar', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'make a block...': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'lav en blok...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // costumes
 | 
					
						
							|  |  |  |     'rename': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'skift navn', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'export': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'eksporter', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'rename costume': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'skift kostumenavn', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // sounds
 | 
					
						
							|  |  |  |     'Play sound': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Afspil lyd', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Stop sound': | 
					
						
							|  |  |  |         'Stop lyd', | 
					
						
							|  |  |  |     'Stop': | 
					
						
							|  |  |  |         'Stop', | 
					
						
							|  |  |  |     'Play': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Afspil', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'rename sound': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'skift lydens navn', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // dialogs
 | 
					
						
							|  |  |  |     // buttons
 | 
					
						
							|  |  |  |     'OK': | 
					
						
							|  |  |  |         'OK', | 
					
						
							|  |  |  |     'Ok': | 
					
						
							|  |  |  |         'OK', | 
					
						
							|  |  |  |     'Cancel': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Annuller', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Yes': | 
					
						
							|  |  |  |         'Ja', | 
					
						
							|  |  |  |     'No': | 
					
						
							|  |  |  |         'Nej', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // help
 | 
					
						
							|  |  |  |     'Help': | 
					
						
							|  |  |  |         'Hj\u00F6lp', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // Project Manager
 | 
					
						
							|  |  |  |     'Untitled': | 
					
						
							|  |  |  |         'Unavngivet', | 
					
						
							|  |  |  |     'Open Project': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         '\u00C5bn projekt', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     '(empty)': | 
					
						
							|  |  |  |         '(tom)', | 
					
						
							|  |  |  |     'Saved!': | 
					
						
							|  |  |  |         'Gemt!', | 
					
						
							|  |  |  |     'Delete Project': | 
					
						
							|  |  |  |         'Slet projekt', | 
					
						
							|  |  |  |     'Are you sure you want to delete': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Er du sikker p\u00E5 at du vil slette', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'rename...': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'skift navn...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // costume editor
 | 
					
						
							|  |  |  |     'Costume Editor': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Kostumev\u00E6rkt\u00F8j', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'click or drag crosshairs to move the rotation center': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'klik eller tr\00E6k med sigtekornet for at flytte omdrejningspunktet', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // project notes
 | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |     'Project notes...': | 
					
						
							|  |  |  |         'Projektnoter...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // new project
 | 
					
						
							|  |  |  |     'New Project': | 
					
						
							|  |  |  |         'Nyt projekt', | 
					
						
							|  |  |  |     'Replace the current project with a new one?': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Erstat det nuv\u00E6rende projekt med et nyt et?', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // save project
 | 
					
						
							|  |  |  |     'Save Project As...': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Gem projekt som...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // export blocks
 | 
					
						
							|  |  |  |     'Export blocks': | 
					
						
							|  |  |  |         'Eksporter blokke', | 
					
						
							|  |  |  |     'Import blocks': | 
					
						
							|  |  |  |         'Importer blokke', | 
					
						
							|  |  |  |     'this project doesn\'t have any\ncustom global blocks yet': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'dette projekt har ingen tilpassede globale blokke endnu', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'select': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'v\u00E6lg', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'all': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'alle', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'none': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'ingen', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // variable dialog
 | 
					
						
							|  |  |  |     'for all sprites': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'for alle figurer', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'for this sprite only': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'kun for denne figur', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // block dialog
 | 
					
						
							|  |  |  |     'Change block': | 
					
						
							|  |  |  |         'Skift blok', | 
					
						
							|  |  |  |     'Command': | 
					
						
							|  |  |  |         'Kommando', | 
					
						
							|  |  |  |     'Reporter': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Rapport\u00F8r', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Predicate': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Pr\u00E6dikat', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // block editor
 | 
					
						
							|  |  |  |     'Block Editor': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Blokv\u00E6rkt\u00F8j', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Apply': | 
					
						
							|  |  |  |         'Anvend', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // block deletion dialog
 | 
					
						
							|  |  |  |     'Delete Custom Block': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Slet tilpasset blok', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'block deletion dialog text': | 
					
						
							|  |  |  |         'Skal denne blok virkelig slettes?', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // input dialog
 | 
					
						
							|  |  |  |     'Create input name': | 
					
						
							|  |  |  |         'Lav inputnavn', | 
					
						
							|  |  |  |     'Edit input name': | 
					
						
							|  |  |  |         'Rediger inputnavn', | 
					
						
							|  |  |  |     'Edit label fragment': | 
					
						
							|  |  |  |         'Rediger m\u00E6rkat', | 
					
						
							|  |  |  |     'Title text': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Titelstekst', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Input name': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'inputnavn', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Delete': | 
					
						
							|  |  |  |         'Slet', | 
					
						
							|  |  |  |     'Object': | 
					
						
							|  |  |  |         'Objekt', | 
					
						
							|  |  |  |     'Number': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Tal', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Text': | 
					
						
							|  |  |  |         'Tekst', | 
					
						
							|  |  |  |     'List': | 
					
						
							|  |  |  |         'Liste', | 
					
						
							|  |  |  |     'Any type': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Hvad som helst', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Boolean (T/F)': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Boolsk (S/F)', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Command\n(inline)': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Kommando\n(integreret)', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Command\n(C-shape)': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Kommando\n(C-form)', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Any\n(unevaluated)': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Hvad som helst\n(uevalueret)', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Boolean\n(unevaluated)': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Boolsk\n(uevalueret)', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Single input.': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Enkel input.', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Default Value:': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'V\u00E6rdi som udgangspunkt:', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Multiple inputs (value is list of inputs)': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Flere inputs (v\u00E6rdi er liste af inputs)', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Upvar - make internal variable visible to caller': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Opvar - g\u00F8r interne variable synlige for kalderen', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // About Snap
 | 
					
						
							|  |  |  |     'About Snap': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Om Snap', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Back...': | 
					
						
							|  |  |  |         'Tilbage...', | 
					
						
							|  |  |  |     'License...': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Lisens...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Modules...': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Moduler...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Credits...': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Anerkendelse...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Translators...': | 
					
						
							|  |  |  |         'Overs\u00E6ttere', | 
					
						
							|  |  |  |     'License': | 
					
						
							|  |  |  |         'Licens', | 
					
						
							|  |  |  |     'current module versions:': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Nuv\u00E6rende modulversioner', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Contributors': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Bidragydere', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Translations': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Overs\u00E6ttelser', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // variable watchers
 | 
					
						
							|  |  |  |     'normal': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'normal', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'large': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'stor', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'slider': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'skydeknap', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'slider min...': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'skydeknap minimum...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'slider max...': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'skydeknap maksimum...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'import...': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'importer...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Slider minimum value': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'skydeknap minimumsv\u00E6rdi:', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Slider maximum value': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'skydeknap maksimumsv\u00E6rdi:', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // list watchers
 | 
					
						
							|  |  |  |     'length: ': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'l\u00E6ngde: ', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // coments
 | 
					
						
							|  |  |  |     'add comment here...': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'tilf\u00F8j kommentar her...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // drow downs
 | 
					
						
							|  |  |  |     // directions
 | 
					
						
							|  |  |  |     '(90) right': | 
					
						
							|  |  |  |         '(90) h\u00F8jre', | 
					
						
							|  |  |  |     '(-90) left': | 
					
						
							|  |  |  |         '(-90) venstre', | 
					
						
							|  |  |  |     '(0) up': | 
					
						
							|  |  |  |         '(0) op', | 
					
						
							|  |  |  |     '(180) down': | 
					
						
							|  |  |  |         '(180) ned', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // collision detection
 | 
					
						
							|  |  |  |     'mouse-pointer': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'musemark\u00F8r', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'edge': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'kant', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'pen trails': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'penselspor', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // costumes
 | 
					
						
							|  |  |  |     'Turtle': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'Skildpadde', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Empty': | 
					
						
							|  |  |  |         'Tom', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // graphical effects
 | 
					
						
							|  |  |  |     'ghost': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'sp\u00F8gelse', | 
					
						
							|  |  |  |     'color': | 
					
						
							|  |  |  |         'farve', | 
					
						
							|  |  |  |     'fisheye': | 
					
						
							|  |  |  |         'fiske\u00F8je', | 
					
						
							|  |  |  |     'whirl': | 
					
						
							|  |  |  |         'hvirvel', | 
					
						
							|  |  |  |     'pixelate': | 
					
						
							|  |  |  |         'pixeler', | 
					
						
							|  |  |  |     'mosaic': | 
					
						
							|  |  |  |         'mosaik', | 
					
						
							|  |  |  |     'negative': | 
					
						
							|  |  |  |         'negativ', | 
					
						
							|  |  |  |     'comic': | 
					
						
							|  |  |  |         'tegneserie', | 
					
						
							|  |  |  |     'confetti': | 
					
						
							|  |  |  |         'konfetti', | 
					
						
							|  |  |  |     'saturation': | 
					
						
							|  |  |  |         'm\u00E6tning', | 
					
						
							|  |  |  |     'brightness': | 
					
						
							|  |  |  |         'lysstyrke', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // keys
 | 
					
						
							|  |  |  |     'space': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'mellemrum', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'up arrow': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'pil op', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'down arrow': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'pil ned', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'right arrow': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'pil h\u00F8jre', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'left arrow': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'pil venstre', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'a': | 
					
						
							|  |  |  |         'a', | 
					
						
							|  |  |  |     'b': | 
					
						
							|  |  |  |         'b', | 
					
						
							|  |  |  |     'c': | 
					
						
							|  |  |  |         'c', | 
					
						
							|  |  |  |     'd': | 
					
						
							|  |  |  |         'd', | 
					
						
							|  |  |  |     'e': | 
					
						
							|  |  |  |         'e', | 
					
						
							|  |  |  |     'f': | 
					
						
							|  |  |  |         'f', | 
					
						
							|  |  |  |     'g': | 
					
						
							|  |  |  |         'g', | 
					
						
							|  |  |  |     'h': | 
					
						
							|  |  |  |         'h', | 
					
						
							|  |  |  |     'i': | 
					
						
							|  |  |  |         'i', | 
					
						
							|  |  |  |     'j': | 
					
						
							|  |  |  |         'j', | 
					
						
							|  |  |  |     'k': | 
					
						
							|  |  |  |         'k', | 
					
						
							|  |  |  |     'l': | 
					
						
							|  |  |  |         'l', | 
					
						
							|  |  |  |     'm': | 
					
						
							|  |  |  |         'm', | 
					
						
							|  |  |  |     'n': | 
					
						
							|  |  |  |         'n', | 
					
						
							|  |  |  |     'o': | 
					
						
							|  |  |  |         'o', | 
					
						
							|  |  |  |     'p': | 
					
						
							|  |  |  |         'p', | 
					
						
							|  |  |  |     'q': | 
					
						
							|  |  |  |         'q', | 
					
						
							|  |  |  |     'r': | 
					
						
							|  |  |  |         'r', | 
					
						
							|  |  |  |     's': | 
					
						
							|  |  |  |         's', | 
					
						
							|  |  |  |     't': | 
					
						
							|  |  |  |         't', | 
					
						
							|  |  |  |     'u': | 
					
						
							|  |  |  |         'u', | 
					
						
							|  |  |  |     'v': | 
					
						
							|  |  |  |         'v', | 
					
						
							|  |  |  |     'w': | 
					
						
							|  |  |  |         'w', | 
					
						
							|  |  |  |     'x': | 
					
						
							|  |  |  |         'x', | 
					
						
							|  |  |  |     'y': | 
					
						
							|  |  |  |         'y', | 
					
						
							|  |  |  |     'z': | 
					
						
							|  |  |  |         'z', | 
					
						
							|  |  |  |     '0': | 
					
						
							|  |  |  |         '0', | 
					
						
							|  |  |  |     '1': | 
					
						
							|  |  |  |         '1', | 
					
						
							|  |  |  |     '2': | 
					
						
							|  |  |  |         '2', | 
					
						
							|  |  |  |     '3': | 
					
						
							|  |  |  |         '3', | 
					
						
							|  |  |  |     '4': | 
					
						
							|  |  |  |         '4', | 
					
						
							|  |  |  |     '5': | 
					
						
							|  |  |  |         '5', | 
					
						
							|  |  |  |     '6': | 
					
						
							|  |  |  |         '6', | 
					
						
							|  |  |  |     '7': | 
					
						
							|  |  |  |         '7', | 
					
						
							|  |  |  |     '8': | 
					
						
							|  |  |  |         '8', | 
					
						
							|  |  |  |     '9': | 
					
						
							|  |  |  |         '9', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // messages
 | 
					
						
							|  |  |  |     'new...': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'ny...', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // math functions
 | 
					
						
							|  |  |  |     'abs': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'absolut', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'sqrt': | 
					
						
							|  |  |  |         'kvadratrod', | 
					
						
							|  |  |  |     'sin': | 
					
						
							|  |  |  |         'sin', | 
					
						
							|  |  |  |     'cos': | 
					
						
							|  |  |  |         'cos', | 
					
						
							|  |  |  |     'tan': | 
					
						
							|  |  |  |         'tan', | 
					
						
							|  |  |  |     'asin': | 
					
						
							|  |  |  |         'asin', | 
					
						
							|  |  |  |     'acos': | 
					
						
							|  |  |  |         'acos', | 
					
						
							|  |  |  |     'atan': | 
					
						
							|  |  |  |         'atan', | 
					
						
							|  |  |  |     'ln': | 
					
						
							|  |  |  |         'ln', | 
					
						
							|  |  |  |     'e^': | 
					
						
							|  |  |  |         'e^', | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     // data types
 | 
					
						
							|  |  |  |     'number': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'tal', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'text': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'tekst', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'Boolean': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'boolsk', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'list': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'liste', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'command': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'kommando', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'reporter': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'rapport\u00F8r', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'predicate': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'pr\u00e4dikat', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     // list indices
 | 
					
						
							|  |  |  |     'last': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'sidste', | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  |     'any': | 
					
						
							| 
									
										
										
										
											2016-12-07 23:44:40 +00:00
										 |  |  |         'hvilken som helst' | 
					
						
							| 
									
										
										
										
											2013-09-16 09:53:31 +00:00
										 |  |  | }; |