2014-10-30 12:00:02 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
lang-sv.js
|
|
|
|
|
|
|
|
Swedish translation for SNAP!
|
|
|
|
|
|
|
|
written by Erik A Olsson
|
|
|
|
|
|
|
|
Copyright (C) 2014 by Jens Mönig
|
|
|
|
|
|
|
|
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.sv = {
|
|
|
|
|
|
|
|
/*
|
|
|
|
Special characters: (see <http://0xcc.net/jsescape/>)
|
|
|
|
|
|
|
|
¯ , \u00F8
|
|
|
|
Ê , \u00E6
|
|
|
|
 , \u00E5
|
|
|
|
ÿ , \u00D8
|
|
|
|
∆ ; \u00C6
|
|
|
|
≈ , \u00C5
|
|
|
|
*/
|
|
|
|
|
|
|
|
// translations meta information
|
|
|
|
'language_name':
|
|
|
|
'svenska', // the name as it should appear in the language menu
|
|
|
|
'language_translator':
|
|
|
|
'Erik A Olsson', // your name for the Translators tab
|
|
|
|
'translator_e-mail':
|
|
|
|
'eolsson@gmail.com', // optional
|
|
|
|
'last_changed':
|
2014-10-30 22:11:58 +00:00
|
|
|
'2014-11-01', // this, too, will appear in the Translators tab
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// GUI
|
|
|
|
// control bar:
|
|
|
|
'untitled':
|
2014-10-30 22:11:58 +00:00
|
|
|
'namnlös',
|
2014-10-30 12:00:02 +00:00
|
|
|
'development mode':
|
|
|
|
'utvecklareläge',
|
|
|
|
|
|
|
|
// categories:
|
|
|
|
'Motion':
|
|
|
|
'Rörelse',
|
|
|
|
'Looks':
|
|
|
|
'Utseende',
|
|
|
|
'Sound':
|
|
|
|
'Ljud',
|
|
|
|
'Pen':
|
|
|
|
'Penna',
|
|
|
|
'Control':
|
|
|
|
'Kontroll',
|
|
|
|
'Sensing':
|
|
|
|
'Känna av',
|
|
|
|
'Operators':
|
|
|
|
'Operatorer',
|
|
|
|
'Variables':
|
|
|
|
'Variabler',
|
|
|
|
'Lists':
|
|
|
|
'Listor',
|
|
|
|
'Other':
|
|
|
|
'Annat',
|
|
|
|
|
|
|
|
// editor:
|
|
|
|
'draggable':
|
|
|
|
'flyttbar',
|
|
|
|
|
|
|
|
// tabs:
|
|
|
|
'Scripts':
|
|
|
|
'Skript',
|
|
|
|
'Costumes':
|
|
|
|
'Kostymer',
|
|
|
|
'Sounds':
|
|
|
|
'Ljud',
|
|
|
|
|
|
|
|
// names:
|
|
|
|
'Sprite':
|
|
|
|
'Sprite',
|
|
|
|
'Stage':
|
|
|
|
'Scen',
|
|
|
|
|
|
|
|
// rotation styles:
|
|
|
|
'don\'t rotate':
|
|
|
|
'rotera inte',
|
|
|
|
'can rotate':
|
|
|
|
'rotera',
|
|
|
|
'only face left/right':
|
|
|
|
'peka bara höger/vänster',
|
|
|
|
|
|
|
|
// new sprite button:
|
|
|
|
'add a new Sprite':
|
|
|
|
'lägg till ny Sprite',
|
|
|
|
|
|
|
|
// tab help
|
|
|
|
'costumes tab help':
|
|
|
|
'kostymflikshjälp',
|
|
|
|
|
|
|
|
'import a sound from your computer\nby dragging it into here':
|
|
|
|
'importera en ljudfil från din dator\ngenom att dra den hit',
|
|
|
|
|
|
|
|
// 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':
|
|
|
|
'Scen vald:\ninga standard rörelser'
|
|
|
|
+ 'finns',
|
|
|
|
'move %n steps':
|
|
|
|
'gå %n steg',
|
|
|
|
'turn %clockwise %n degrees':
|
|
|
|
'vänd %clockwise %n grader',
|
|
|
|
'turn %counterclockwise %n degrees':
|
|
|
|
'vänd %counterclockwise %n grader',
|
|
|
|
'point in direction %dir':
|
|
|
|
'peka mot riktning %dir',
|
|
|
|
'point towards %dst':
|
|
|
|
'peka mot %dst',
|
|
|
|
'go to x: %n y: %n':
|
|
|
|
'gå till x: %n y: %n',
|
|
|
|
'go to %dst':
|
|
|
|
'gå till %dst',
|
|
|
|
'glide %n secs to x: %n y: %n':
|
|
|
|
'glid %n sek till x: %n y: %n',
|
|
|
|
'change x by %n':
|
|
|
|
'ändra x med %n',
|
|
|
|
'set x to %n':
|
|
|
|
'sätt x till %n',
|
|
|
|
'change y by %n':
|
|
|
|
'ändra y med %n',
|
|
|
|
'set y to %n':
|
|
|
|
'sätt y till %n',
|
|
|
|
'if on edge, bounce':
|
|
|
|
'studsa om vid kanten',
|
|
|
|
'x position':
|
|
|
|
'x-position',
|
|
|
|
'y position':
|
|
|
|
'y-position',
|
|
|
|
'direction':
|
|
|
|
'riktning',
|
|
|
|
|
|
|
|
// looks:
|
|
|
|
'switch to costume %cst':
|
|
|
|
'byt till kostym %cst',
|
|
|
|
'next costume':
|
|
|
|
'nästa kostym',
|
|
|
|
'costume #':
|
|
|
|
'kostym nr.',
|
|
|
|
'say %s for %n secs':
|
|
|
|
'säg %s i %n sek',
|
|
|
|
'say %s':
|
|
|
|
'säg %s',
|
|
|
|
'think %s for %n secs':
|
|
|
|
'tänk %s i %n sek',
|
|
|
|
'think %s':
|
|
|
|
'tänk %s',
|
|
|
|
'Hello!':
|
|
|
|
'Hej!',
|
|
|
|
'Hmm...':
|
2014-10-30 14:09:39 +00:00
|
|
|
'Hmm...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'change %eff effect by %n':
|
|
|
|
'ändra %eff -effekt med %n',
|
|
|
|
'set %eff effect to %n':
|
|
|
|
'sätt %eff -effekt til %n',
|
|
|
|
'clear graphic effects':
|
|
|
|
'nollställ grafiska effekter',
|
|
|
|
'change size by %n':
|
|
|
|
'ändra storlek med %n',
|
|
|
|
'set size to %n %':
|
|
|
|
'sätt storlek till %n %',
|
|
|
|
'size':
|
|
|
|
'storlek',
|
|
|
|
'show':
|
|
|
|
'visa',
|
|
|
|
'hide':
|
|
|
|
'göm',
|
|
|
|
'go to front':
|
|
|
|
'lägg överst',
|
|
|
|
'go back %n layers':
|
|
|
|
'flytta %n lager bakåt',
|
|
|
|
|
|
|
|
'development mode \ndebugging primitives:':
|
|
|
|
'utvecklarläge \nDebugging av block',
|
|
|
|
'console log %mult%s':
|
|
|
|
'skriv till konsoll: %mult%s',
|
|
|
|
'alert %mult%s':
|
|
|
|
'Pop-up: %mult%s',
|
|
|
|
|
|
|
|
// sound:
|
|
|
|
'play sound %snd':
|
2014-10-30 14:09:39 +00:00
|
|
|
'spela ljud %snd',
|
2014-10-30 12:00:02 +00:00
|
|
|
'play sound %snd until done':
|
2014-10-30 14:09:39 +00:00
|
|
|
'spela ljud %snd tills färdig',
|
2014-10-30 12:00:02 +00:00
|
|
|
'stop all sounds':
|
2014-10-30 14:09:39 +00:00
|
|
|
'stoppa alla ljud',
|
2014-10-30 12:00:02 +00:00
|
|
|
'rest for %n beats':
|
2014-10-30 14:09:39 +00:00
|
|
|
'pausa %n slag',
|
2014-10-30 12:00:02 +00:00
|
|
|
'play note %n for %n beats':
|
2014-10-30 14:09:39 +00:00
|
|
|
'spela ton %n i %n slag',
|
2014-10-30 12:00:02 +00:00
|
|
|
'change tempo by %n':
|
2014-10-30 14:09:39 +00:00
|
|
|
'ändra tempo med %n',
|
2014-10-30 12:00:02 +00:00
|
|
|
'set tempo to %n bpm':
|
2014-10-30 14:09:39 +00:00
|
|
|
'sätt tempo till %n bpm',
|
2014-10-30 12:00:02 +00:00
|
|
|
'tempo':
|
|
|
|
'tempo',
|
|
|
|
|
|
|
|
// pen:
|
|
|
|
'clear':
|
2014-10-30 14:09:39 +00:00
|
|
|
'rensa',
|
2014-10-30 12:00:02 +00:00
|
|
|
'pen down':
|
2014-10-30 14:09:39 +00:00
|
|
|
'penna ned',
|
2014-10-30 12:00:02 +00:00
|
|
|
'pen up':
|
2014-10-30 14:09:39 +00:00
|
|
|
'penna upp',
|
2014-10-30 12:00:02 +00:00
|
|
|
'set pen color to %clr':
|
2014-10-30 14:09:39 +00:00
|
|
|
'sätt pennfärg till %clr',
|
2014-10-30 12:00:02 +00:00
|
|
|
'change pen color by %n':
|
2014-10-30 14:09:39 +00:00
|
|
|
'ändra pennfärg till %n',
|
2014-10-30 12:00:02 +00:00
|
|
|
'set pen color to %n':
|
2014-10-30 14:09:39 +00:00
|
|
|
'sätt penfärg till %n',
|
2014-10-30 12:00:02 +00:00
|
|
|
'change pen shade by %n':
|
2014-10-30 14:09:39 +00:00
|
|
|
'ändra pennstyrka med %n',
|
2014-10-30 12:00:02 +00:00
|
|
|
'set pen shade to %n':
|
2014-10-30 14:09:39 +00:00
|
|
|
'sätt pennstyrka till %n',
|
2014-10-30 12:00:02 +00:00
|
|
|
'change pen size by %n':
|
2014-10-30 14:09:39 +00:00
|
|
|
'ändra penntjocklek med %n',
|
2014-10-30 12:00:02 +00:00
|
|
|
'set pen size to %n':
|
2014-10-30 14:09:39 +00:00
|
|
|
'sätt penntjocklek til %n',
|
2014-10-30 12:00:02 +00:00
|
|
|
'stamp':
|
2014-10-30 14:09:39 +00:00
|
|
|
'stämpla',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// control:
|
|
|
|
'when %greenflag clicked':
|
2014-10-30 14:09:39 +00:00
|
|
|
'när %greenflag klickas på',
|
2014-10-30 12:00:02 +00:00
|
|
|
'when %key key pressed':
|
2014-10-30 14:09:39 +00:00
|
|
|
'när tangent %key trycks ned',
|
2014-10-30 12:00:02 +00:00
|
|
|
'when I am clicked':
|
2014-10-30 14:09:39 +00:00
|
|
|
'när jag klickas',
|
2014-10-30 12:00:02 +00:00
|
|
|
'when I receive %msg':
|
2014-10-30 14:09:39 +00:00
|
|
|
'när jag tar emot meddelande %msg',
|
2014-10-30 12:00:02 +00:00
|
|
|
'broadcast %msg':
|
2014-10-30 14:09:39 +00:00
|
|
|
'skicka meddelande %msg',
|
2014-10-30 12:00:02 +00:00
|
|
|
'broadcast %msg and wait':
|
2014-10-30 14:09:39 +00:00
|
|
|
'skicka meddelande %msg och vänta',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Message name':
|
2014-10-30 14:09:39 +00:00
|
|
|
'Meddelandets namn',
|
2014-10-30 12:00:02 +00:00
|
|
|
'wait %n secs':
|
2014-10-30 14:09:39 +00:00
|
|
|
'vänta %n sek',
|
2014-10-30 12:00:02 +00:00
|
|
|
'wait until %b':
|
2014-10-30 14:09:39 +00:00
|
|
|
'vänta tills %b',
|
2014-10-30 12:00:02 +00:00
|
|
|
'forever %c':
|
2014-10-30 14:09:39 +00:00
|
|
|
'för alltid %c',
|
2014-10-30 12:00:02 +00:00
|
|
|
'repeat %n %c':
|
2014-10-30 14:09:39 +00:00
|
|
|
'upprepa %n gånger %c',
|
2014-10-30 12:00:02 +00:00
|
|
|
'repeat until %b %c':
|
2014-10-30 14:09:39 +00:00
|
|
|
'upprepa tills %b %c',
|
2014-10-30 12:00:02 +00:00
|
|
|
'if %b %c':
|
2014-10-30 14:09:39 +00:00
|
|
|
'om %b %c',
|
2014-10-30 12:00:02 +00:00
|
|
|
'if %b %c else %c':
|
2014-10-30 14:09:39 +00:00
|
|
|
'om %b %c då %c',
|
2014-10-30 12:00:02 +00:00
|
|
|
'report %s':
|
2014-10-30 14:09:39 +00:00
|
|
|
'returnera %s',
|
2014-10-30 12:00:02 +00:00
|
|
|
'stop block':
|
2014-10-30 14:09:39 +00:00
|
|
|
'stoppa block',
|
2014-10-30 12:00:02 +00:00
|
|
|
'stop script':
|
2014-10-30 14:09:39 +00:00
|
|
|
'stoppa skript',
|
2014-10-30 12:00:02 +00:00
|
|
|
'stop all %stop':
|
2014-10-30 14:09:39 +00:00
|
|
|
'stoppa alla %stop',
|
2014-10-30 12:00:02 +00:00
|
|
|
'pause all %pause':
|
2014-10-30 14:09:39 +00:00
|
|
|
'pausa alla %pause',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
'run %cmdRing %inputs':
|
2014-10-30 14:09:39 +00:00
|
|
|
'kör %cmdRing med %inputs',
|
2014-10-30 12:00:02 +00:00
|
|
|
'launch %cmdRing %inputs':
|
2014-10-30 14:09:39 +00:00
|
|
|
'starta %cmdRing med %inputs',
|
2014-10-30 12:00:02 +00:00
|
|
|
'call %repRing %inputs':
|
2014-10-30 14:09:39 +00:00
|
|
|
'anropa %repRing med %inputs',
|
2014-10-30 12:00:02 +00:00
|
|
|
'run %cmdRing w/continuation':
|
2014-10-30 14:09:39 +00:00
|
|
|
'kör %cmdRing och fortsätt',
|
2014-10-30 12:00:02 +00:00
|
|
|
'call %cmdRing w/continuation':
|
2014-10-30 14:09:39 +00:00
|
|
|
'anropa %cmdRing och fortsätt',
|
2014-10-30 12:00:02 +00:00
|
|
|
'when I start as a clone':
|
2014-10-30 14:09:39 +00:00
|
|
|
'när jag startar som klon',
|
2014-10-30 12:00:02 +00:00
|
|
|
'create a clone of %cln':
|
2014-10-30 14:09:39 +00:00
|
|
|
'skapa klon av %cln',
|
2014-10-30 12:00:02 +00:00
|
|
|
'myself':
|
2014-10-30 14:09:39 +00:00
|
|
|
'mig själv',
|
2014-10-30 12:00:02 +00:00
|
|
|
'delete this clone':
|
2014-10-30 14:09:39 +00:00
|
|
|
'radera klon',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
'warp %c':
|
|
|
|
'warp %c',
|
|
|
|
|
|
|
|
// sensing:
|
|
|
|
'touching %col ?':
|
2014-10-30 14:09:39 +00:00
|
|
|
'rör %col ?',
|
2014-10-30 12:00:02 +00:00
|
|
|
'touching %clr ?':
|
2014-10-30 14:09:39 +00:00
|
|
|
'rör %clr ?',
|
2014-10-30 12:00:02 +00:00
|
|
|
'color %clr is touching %clr ?':
|
2014-10-30 14:09:39 +00:00
|
|
|
'färgen %clr rör %clr ?',
|
2014-10-30 12:00:02 +00:00
|
|
|
'ask %s and wait':
|
2014-10-30 14:09:39 +00:00
|
|
|
'fråga %s och vänta',
|
2014-10-30 12:00:02 +00:00
|
|
|
'what\'s your name?':
|
2014-10-30 14:09:39 +00:00
|
|
|
'vad heter du?',
|
2014-10-30 12:00:02 +00:00
|
|
|
'answer':
|
|
|
|
'svar',
|
|
|
|
'mouse x':
|
2014-10-30 14:09:39 +00:00
|
|
|
'mus x-pos',
|
2014-10-30 12:00:02 +00:00
|
|
|
'mouse y':
|
2014-10-30 14:09:39 +00:00
|
|
|
'mus y-pos',
|
2014-10-30 12:00:02 +00:00
|
|
|
'mouse down?':
|
2014-10-30 14:09:39 +00:00
|
|
|
'musknapp nedtryckt?',
|
2014-10-30 12:00:02 +00:00
|
|
|
'key %key pressed?':
|
2014-10-30 14:09:39 +00:00
|
|
|
'tangent %key nedtryckt?',
|
2014-10-30 12:00:02 +00:00
|
|
|
'distance to %dst':
|
2014-10-30 14:09:39 +00:00
|
|
|
'avstånd till %dst',
|
2014-10-30 12:00:02 +00:00
|
|
|
'reset timer':
|
2014-10-30 14:09:39 +00:00
|
|
|
'nollställ stoppur',
|
2014-10-30 12:00:02 +00:00
|
|
|
'timer':
|
2014-10-30 14:09:39 +00:00
|
|
|
'stoppur',
|
2014-10-30 12:00:02 +00:00
|
|
|
'http:// %s':
|
|
|
|
'http:// %s',
|
|
|
|
|
|
|
|
'turbo mode?':
|
2014-10-30 14:09:39 +00:00
|
|
|
'turboläge?',
|
2014-10-30 12:00:02 +00:00
|
|
|
'set turbo mode to %b':
|
2014-10-30 14:09:39 +00:00
|
|
|
'sätt turboläge till %b',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
|
|
|
|
'filtered for %clr':
|
2014-10-30 14:09:39 +00:00
|
|
|
'filtrera på %clr',
|
2014-10-30 12:00:02 +00:00
|
|
|
'stack size':
|
2014-10-30 14:09:39 +00:00
|
|
|
'stack-storlek',
|
2014-10-30 12:00:02 +00:00
|
|
|
'frames':
|
2014-10-30 14:09:39 +00:00
|
|
|
'ramar',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// operators:
|
|
|
|
'%n mod %n':
|
|
|
|
'%n mod %n',
|
|
|
|
'round %n':
|
2014-10-30 14:09:39 +00:00
|
|
|
'avrunda %n',
|
2014-10-30 12:00:02 +00:00
|
|
|
'%fun av %n':
|
|
|
|
'%fun von %n',
|
|
|
|
'pick random %n to %n':
|
2014-10-30 14:09:39 +00:00
|
|
|
'slumptal från %n till %n',
|
2014-10-30 12:00:02 +00:00
|
|
|
'%b and %b':
|
2014-10-30 14:09:39 +00:00
|
|
|
'%b och %b',
|
2014-10-30 12:00:02 +00:00
|
|
|
'%b or %b':
|
2014-10-30 14:09:39 +00:00
|
|
|
'%b eller %b',
|
2014-10-30 12:00:02 +00:00
|
|
|
'not %b':
|
2014-10-30 14:09:39 +00:00
|
|
|
'inte %b',
|
2014-10-30 12:00:02 +00:00
|
|
|
'true':
|
2014-10-30 14:09:39 +00:00
|
|
|
'sant',
|
2014-10-30 12:00:02 +00:00
|
|
|
'false':
|
2014-10-30 14:09:39 +00:00
|
|
|
'falskt',
|
2014-10-30 12:00:02 +00:00
|
|
|
'join %words':
|
2014-10-30 14:09:39 +00:00
|
|
|
'slå ihop %words',
|
2014-10-30 12:00:02 +00:00
|
|
|
'hello':
|
2014-10-30 14:09:39 +00:00
|
|
|
'hej',
|
2014-10-30 12:00:02 +00:00
|
|
|
'world':
|
2014-10-30 14:09:39 +00:00
|
|
|
'världen',
|
2014-10-30 12:00:02 +00:00
|
|
|
'letter %n of %s':
|
|
|
|
'bokstav %n av %s',
|
|
|
|
'length of %s':
|
|
|
|
'lengde av %s',
|
|
|
|
'unicode of %s':
|
|
|
|
'unicode av %s',
|
|
|
|
'unicode %n as letter':
|
|
|
|
'unicode %n som bokstav',
|
|
|
|
'is %s a %typ ?':
|
2014-10-30 14:09:39 +00:00
|
|
|
'%s är %typ ?',
|
2014-10-30 12:00:02 +00:00
|
|
|
'is %s identical to %s ?':
|
|
|
|
'%s identisk med %s ?',
|
|
|
|
|
|
|
|
'type of %s':
|
|
|
|
'type %s',
|
|
|
|
|
|
|
|
// variables:
|
|
|
|
'Make a variable':
|
|
|
|
'Ny variabel',
|
|
|
|
'Variable name':
|
2014-10-30 14:09:39 +00:00
|
|
|
'Variabelnamn',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Delete a variable':
|
2014-10-30 14:09:39 +00:00
|
|
|
'Radera variabel',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
'set %var to %s':
|
2014-10-30 14:09:39 +00:00
|
|
|
'sätt %var till %s',
|
2014-10-30 12:00:02 +00:00
|
|
|
'change %var by %n':
|
2014-10-30 14:09:39 +00:00
|
|
|
'ändra %var med %n',
|
2014-10-30 12:00:02 +00:00
|
|
|
'show variable %var':
|
2014-10-30 14:09:39 +00:00
|
|
|
'visa variabel %var',
|
2014-10-30 12:00:02 +00:00
|
|
|
'hide variable %var':
|
2014-10-30 14:09:39 +00:00
|
|
|
'göm variabel %var',
|
2014-10-30 12:00:02 +00:00
|
|
|
'script variables %scriptVars':
|
2014-10-30 14:09:39 +00:00
|
|
|
'skriptvariabel %scriptVars',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// lists:
|
|
|
|
'list %exp':
|
2014-10-30 14:09:39 +00:00
|
|
|
'lista %exp',
|
2014-10-30 12:00:02 +00:00
|
|
|
'%s in front of %l':
|
2014-10-30 14:09:39 +00:00
|
|
|
'%s främst i %l',
|
2014-10-30 12:00:02 +00:00
|
|
|
'item %idx of %l':
|
2014-10-30 14:09:39 +00:00
|
|
|
'element %idx i %l',
|
2014-10-30 12:00:02 +00:00
|
|
|
'all but first of %l':
|
2014-10-30 14:09:39 +00:00
|
|
|
'allt utom första i %l',
|
2014-10-30 12:00:02 +00:00
|
|
|
'length of %l':
|
2014-10-30 14:09:39 +00:00
|
|
|
'längd av %l',
|
2014-10-30 12:00:02 +00:00
|
|
|
'%l contains %s':
|
2014-10-30 14:09:39 +00:00
|
|
|
'%l innehåller %s',
|
2014-10-30 12:00:02 +00:00
|
|
|
'thing':
|
2014-10-30 14:09:39 +00:00
|
|
|
'sak',
|
2014-10-30 12:00:02 +00:00
|
|
|
'add %s to %l':
|
2014-10-30 14:09:39 +00:00
|
|
|
'lägg %s till %l',
|
2014-10-30 12:00:02 +00:00
|
|
|
'delete %ida of %l':
|
2014-10-30 14:09:39 +00:00
|
|
|
'radera %ida från %l',
|
2014-10-30 12:00:02 +00:00
|
|
|
'insert %s at %idx of %l':
|
2014-10-30 14:09:39 +00:00
|
|
|
'lägg in %s på plats %idx i lista %l',
|
2014-10-30 12:00:02 +00:00
|
|
|
'replace item %idx of %l with %s':
|
2014-10-30 14:09:39 +00:00
|
|
|
'ersätt element %idx i %l med %s',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// other
|
|
|
|
'Make a block':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Skapa nytt block',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// menus
|
|
|
|
// snap menu
|
|
|
|
'About...':
|
|
|
|
'Om Snap!...',
|
|
|
|
'Snap! website':
|
2014-10-30 14:09:39 +00:00
|
|
|
'Snap! webbsida',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Download source':
|
2014-10-30 14:09:39 +00:00
|
|
|
'Ladda ner källkoden',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Switch back to user mode':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Tillbaka till användarläge',
|
2014-10-30 12:00:02 +00:00
|
|
|
'disable deep-Morphic\ncontext menus\nand show user-friendly ones':
|
2014-10-30 22:11:58 +00:00
|
|
|
'stäng av Morphic\nmenyeroch visa \nanvändarvänliga istället',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Switch to dev mode':
|
2014-10-30 14:09:39 +00:00
|
|
|
'Byt till utvecklarläge',
|
2014-10-30 12:00:02 +00:00
|
|
|
'enable Morphic\ncontext menus\nand inspectors,\nnot user-friendly!':
|
2014-10-30 22:11:58 +00:00
|
|
|
'aktivera Morphic menyer\noch inspektorer,\ninte användarvänligt!',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// project menu
|
|
|
|
'Project notes...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Annoteringar...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'New':
|
2014-10-30 14:09:39 +00:00
|
|
|
'Ny',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Open...':
|
2014-10-30 14:09:39 +00:00
|
|
|
'Öppna...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Save':
|
2014-10-30 14:09:39 +00:00
|
|
|
'Spara',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Save As...':
|
2014-10-30 14:09:39 +00:00
|
|
|
'Spara som...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Import...':
|
2014-10-30 14:09:39 +00:00
|
|
|
'Importera...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'file menu import hint':
|
|
|
|
'laster inn eksportertes prosjekt,\net bibliotek med '
|
|
|
|
+ 'blokker\n'
|
|
|
|
+ 'et kostym eller en lyd',
|
|
|
|
'Export project as plain text ...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Exportera projektet som vanlig text...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Export project...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Exportera projekt...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'show project data as XML\nin a new browser window':
|
2014-10-30 22:11:58 +00:00
|
|
|
'visa projektdata som XML\ni ett ny fönster',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Export blocks...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Exportera block...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'show global custom block definitions as XML\nin a new browser window':
|
2014-10-30 22:11:58 +00:00
|
|
|
'visa globala anpassade blockdefinitioner som XML\ni ett nytt fönster',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Import tools...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Importverktyg...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'load the official library of\npowerful blocks':
|
2014-10-30 22:11:58 +00:00
|
|
|
'ladda ner det officiella\nsuperblock biblioteket ',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Libraries...':
|
|
|
|
'Biblioteker...',
|
|
|
|
'Import library':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Importera bibliotek',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// cloud menu
|
|
|
|
'Login...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Logga in...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Registrer deg...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Registrera dig...',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// settings menu
|
|
|
|
'Language...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Språk...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Zoom blocks...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Förstora blocken...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Blurred shadows':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Suddade skuggor',
|
2014-10-30 12:00:02 +00:00
|
|
|
'uncheck to use solid drop\nshadows and highlights':
|
2014-10-30 22:11:58 +00:00
|
|
|
'bocka av för att använda\nfasta skuggor och belysningar',
|
2014-10-30 12:00:02 +00:00
|
|
|
'check to use blurred drop\nshadows and highlights':
|
2014-10-30 22:11:58 +00:00
|
|
|
'bocka i för att använda\nsuddiga skuggor och belysningar',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Zebra coloring':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Zebrafärgning',
|
2014-10-30 12:00:02 +00:00
|
|
|
'check to enable alternating\ncolors for nested blocks':
|
2014-10-30 22:11:58 +00:00
|
|
|
'bocka i för att växla blockfärger\nför nestlade block',
|
2014-10-30 12:00:02 +00:00
|
|
|
'uncheck to disable alternating\ncolors for nested block':
|
2014-10-30 22:11:58 +00:00
|
|
|
'bocka av för inaktivera växlade\nfärger för nestlade block',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Dynamic input labels':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Dynamisk namn för indata',
|
2014-10-30 12:00:02 +00:00
|
|
|
'uncheck to disable dynamic\nlabels for variadic inputs':
|
2014-10-30 22:11:58 +00:00
|
|
|
'bocka av för att inaktivera \ndynamiska namn för indata \nmed flera variabelfält',
|
2014-10-30 12:00:02 +00:00
|
|
|
'check to enable dynamic\nlabels for variadic inputs':
|
2014-10-30 22:11:58 +00:00
|
|
|
'bocka i för att aktivera \ndynamiska namn för indata \nmed flera variabelfält',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Prefer empty slot drops':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Föredra släpp på tomma utrymmen',
|
2014-10-30 12:00:02 +00:00
|
|
|
'settings menu prefer empty slots hint':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Inställningar\nföredra tomma utrymmen',
|
2014-10-30 12:00:02 +00:00
|
|
|
'uncheck to allow dropped\nreporters to kick out others':
|
|
|
|
'kryss vekk for at flyttede reportere vil ta plassen til andre\n',
|
|
|
|
'Long form input dialog':
|
|
|
|
'Lange dialoger for inndata',
|
|
|
|
'check to always show slot\ntypes in the input dialog':
|
|
|
|
'kryss av for \u00E5 vise variabelfelttype\ni inndata dialoger',
|
|
|
|
'uncheck to use the input\ndialog in short form':
|
|
|
|
'kryss vekk for \u00E5 bruke korte inndata\ndialoger',
|
|
|
|
'Virtual keyboard':
|
|
|
|
'Virtuelt tastatur',
|
|
|
|
'uncheck to disable\nvirtual keyboard support\nfor mobile devices':
|
|
|
|
'kryss vekk for \u00E5 sl\u00E5 av virtuelt\ntastatur p\u00E5 mobile enheter',
|
|
|
|
'check to enable\nvirtual keyboard support\nfor mobile devices':
|
|
|
|
'kryss av for \u00E5 sl\u00E5 p\u00E5 virtuelt\ntastatur p\u00E5 mobile enheter',
|
|
|
|
'Input sliders':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Volymkontroll för indata',
|
2014-10-30 12:00:02 +00:00
|
|
|
'uncheck to disable\ninput sliders for\nentry fields':
|
|
|
|
'kryss vekk for \u00E5 sl\u00E5 av\nskyveknapper i inndatafelt',
|
|
|
|
'check to enable\ninput sliders for\nentry fields':
|
|
|
|
'kryss av for \u00E5 sl\u00E5 p\u00E5 skyveknapper\ni inndatafelt',
|
|
|
|
'Clicking sound':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Klickljud',
|
2014-10-30 12:00:02 +00:00
|
|
|
'uncheck to turn\nblock clicking\nsound off':
|
|
|
|
'kryss vekk for sl\u00E5 av klikkelyd',
|
|
|
|
'check to turn\nblock clicking\nsound on':
|
|
|
|
'kryss av for \u00E5 sl\u00E5 p\u00E5 klikkelyd',
|
|
|
|
'Animations':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Animationer',
|
2014-10-30 12:00:02 +00:00
|
|
|
'uncheck to disable\nIDE animations':
|
|
|
|
'kryss vekk for \u00E5 sl\u00E5 av IDE-animasjoner',
|
|
|
|
'Turbo mode':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Turboläge',
|
2014-10-30 12:00:02 +00:00
|
|
|
'check to enable\nIDE animations':
|
|
|
|
'kryss av for \u00E5 sl\u00E5 p\u00E5 IDE-animasjoner',
|
|
|
|
'Thread safe scripts':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Trådsäker skripting',
|
2014-10-30 12:00:02 +00:00
|
|
|
'uncheck to allow\nscript reentrancy':
|
|
|
|
'kryss vekk for \u00E5 sl\u00E5 p\u00E5 gjenbruk av p\u00E5begynte skripter',
|
|
|
|
'check to disallow\nscript reentrancy':
|
|
|
|
'kryss av for \u00E5 sl\u00E5 av gjenbruk av p\u00E5begynte skripter',
|
|
|
|
'Prefer smooth animations':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Jämna animeringar',
|
2014-10-30 12:00:02 +00:00
|
|
|
'uncheck for greater speed\nat variable frame rates':
|
|
|
|
'kryss bort for st¯rre fart ved variabel frame rate',
|
|
|
|
'check for smooth, predictable\nanimations across computers':
|
|
|
|
'kryss av for jevne animasjoner p alle maskinplattformer',
|
|
|
|
// inputs
|
|
|
|
'with inputs':
|
2014-10-30 22:11:58 +00:00
|
|
|
'med indata',
|
2014-10-30 12:00:02 +00:00
|
|
|
'input names:':
|
2014-10-30 22:11:58 +00:00
|
|
|
'indatanamn:',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Input Names:':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Indatanamn:',
|
2014-10-30 12:00:02 +00:00
|
|
|
'input list:':
|
2014-10-30 22:11:58 +00:00
|
|
|
'indata lista:',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// context menus:
|
|
|
|
'help':
|
2014-10-30 22:11:58 +00:00
|
|
|
'hjälp',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// blocks:
|
|
|
|
'hjelp...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'hjälp...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'relabel...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'döp om...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'duplicate':
|
2014-10-30 22:11:58 +00:00
|
|
|
'duplicera',
|
2014-10-30 12:00:02 +00:00
|
|
|
'make a copy\nand pick it up':
|
2014-10-30 22:11:58 +00:00
|
|
|
'gör en kopia\noch plocka upp den',
|
2014-10-30 12:00:02 +00:00
|
|
|
'only duplicate this block':
|
2014-10-30 22:11:58 +00:00
|
|
|
'duplicera endast detta block',
|
2014-10-30 12:00:02 +00:00
|
|
|
'delete':
|
2014-10-30 22:11:58 +00:00
|
|
|
'radera',
|
2014-10-30 12:00:02 +00:00
|
|
|
'script pic...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'skript bild...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'open a new window\nwith a picture of this script':
|
2014-10-30 22:11:58 +00:00
|
|
|
'öppna ett nytt fönster\nmed en bild av detta skript',
|
2014-10-30 12:00:02 +00:00
|
|
|
'ringify':
|
2014-10-30 22:11:58 +00:00
|
|
|
'ring runt',
|
2014-10-30 12:00:02 +00:00
|
|
|
'unringify':
|
2014-10-30 22:11:58 +00:00
|
|
|
'radera ringen runt',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// custom blocks:
|
|
|
|
'delete block definition...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'radera blockdefinition...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'edit...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'redigera...',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// sprites:
|
|
|
|
'edit':
|
2014-10-30 22:11:58 +00:00
|
|
|
'redigera',
|
2014-10-30 12:00:02 +00:00
|
|
|
'export...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'exportera...',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// stage:
|
|
|
|
'show all':
|
2014-10-30 22:11:58 +00:00
|
|
|
'visa allt',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// scripting area
|
|
|
|
'clean up':
|
2014-10-30 22:11:58 +00:00
|
|
|
'städa',
|
2014-10-30 12:00:02 +00:00
|
|
|
'arrange scripts\nvertically':
|
2014-10-30 22:11:58 +00:00
|
|
|
'organisera skript\nvertikalt',
|
2014-10-30 12:00:02 +00:00
|
|
|
'add comment':
|
2014-10-30 22:11:58 +00:00
|
|
|
'lägg till kommentar',
|
2014-10-30 12:00:02 +00:00
|
|
|
'make a block...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'skapa nytt block...',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// costumes
|
|
|
|
'rename':
|
2014-10-30 22:11:58 +00:00
|
|
|
'döp om',
|
2014-10-30 12:00:02 +00:00
|
|
|
'export':
|
2014-10-30 22:11:58 +00:00
|
|
|
'exportera',
|
2014-10-30 12:00:02 +00:00
|
|
|
'rename costume':
|
2014-10-30 22:11:58 +00:00
|
|
|
'döp om kostymen',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// sounds
|
|
|
|
'Play sound':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Spela ljud',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Stop sound':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Stoppa ljud',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Stop':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Stoppa',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Play':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Starta',
|
2014-10-30 12:00:02 +00:00
|
|
|
'rename sound':
|
2014-10-30 22:11:58 +00:00
|
|
|
'döp om ljud',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// dialogs
|
|
|
|
// buttons
|
|
|
|
'OK':
|
|
|
|
'OK',
|
|
|
|
'Ok':
|
|
|
|
'OK',
|
|
|
|
'Cancel':
|
|
|
|
'Avbryt',
|
|
|
|
'Yes':
|
|
|
|
'Ja',
|
|
|
|
'No':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Nej',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// help
|
|
|
|
'Help':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Hjälp',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// Project Manager
|
|
|
|
'Untitled':
|
2014-10-30 14:09:39 +00:00
|
|
|
'Namnlös',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Open Project':
|
2014-10-30 14:09:39 +00:00
|
|
|
'Öppna projekt',
|
2014-10-30 12:00:02 +00:00
|
|
|
'(empty)':
|
|
|
|
'(tomt)',
|
|
|
|
'Saved!':
|
2014-10-30 14:09:39 +00:00
|
|
|
'Sparat!',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Delete Project':
|
2014-10-30 14:09:39 +00:00
|
|
|
'Radera projekt',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Are you sure you want to delete':
|
2014-10-30 14:09:39 +00:00
|
|
|
'Är du säker på att du vill radera',
|
2014-10-30 12:00:02 +00:00
|
|
|
'rename...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'döp om...',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// costume editor
|
|
|
|
'Costume Editor':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Kostym redigerare',
|
2014-10-30 12:00:02 +00:00
|
|
|
'click or drag crosshairs to move the rotation center':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Klicka eller dra krysset för att marker mitten',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// project notes
|
|
|
|
'Project Notes':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Annoteringar',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// new project
|
|
|
|
'New Project':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Nytt projekt',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Replace the current project with a new one?':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Ersätt aktuella projektet med ett nytt?',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// save project
|
|
|
|
'Save Project As...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Spara projekt som...',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// export blocks
|
|
|
|
'Export blocks':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Exportera block',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Import blocks':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Importera block',
|
2014-10-30 12:00:02 +00:00
|
|
|
'this project doesn\'t have any\ncustom global blocks yet':
|
2014-10-30 22:11:58 +00:00
|
|
|
'detta projekt har inte ännu\nnågra egna globala block',
|
2014-10-30 12:00:02 +00:00
|
|
|
'select':
|
2014-10-30 22:11:58 +00:00
|
|
|
'välj',
|
2014-10-30 12:00:02 +00:00
|
|
|
'all':
|
2014-10-30 22:11:58 +00:00
|
|
|
'allt',
|
2014-10-30 12:00:02 +00:00
|
|
|
'none':
|
|
|
|
'ingenting',
|
|
|
|
|
|
|
|
// variable dialog
|
|
|
|
'for all sprites':
|
2014-10-30 22:11:58 +00:00
|
|
|
'för alla sprites',
|
2014-10-30 12:00:02 +00:00
|
|
|
'for this sprite only':
|
2014-10-30 22:11:58 +00:00
|
|
|
'bara för denna sprite',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// block dialog
|
|
|
|
'Change block':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Ändra block',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Command':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Kommando',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Reporter':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Funktion',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Predicate':
|
|
|
|
'Predikat',
|
|
|
|
|
|
|
|
// block editor
|
|
|
|
'Block Editor':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Blockredigerare',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Apply':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Verkställ',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// block deletion dialog
|
|
|
|
'Delete Custom Block':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Radera custom blokk',
|
2014-10-30 12:00:02 +00:00
|
|
|
'block deletion dialog text':
|
|
|
|
'Skal denne blokken med alle dens instanser\n' +
|
|
|
|
'bli slettet?',
|
|
|
|
|
|
|
|
// input dialog
|
|
|
|
'Create input name':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Skapa indata-namn',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Edit input name':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Redigera indata-namn',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Edit label fragment':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Redigera etikettdel',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Title text':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Titel',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Input name':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Indata-namn',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Delete':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Radera',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Object':
|
|
|
|
'Objekt',
|
|
|
|
'Number':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Nummer',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Text':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Text',
|
2014-10-30 12:00:02 +00:00
|
|
|
'List':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Lista',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Any type':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Valfri typ',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Boolean (T/F)':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Boolean (S/F)',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Command\n(inline)':
|
|
|
|
'Kommando\n(inline)',
|
|
|
|
'Command\n(C-shape)':
|
|
|
|
'Kommando\n(C-Form)',
|
|
|
|
'Any\n(unevaluated)':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Vilken som helst\n(oevaluerad)',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Boolean\n(unevaluated)':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Boolean\n(oevaluerad)',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Single input.':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Enkel indata.',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Default Value:':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Standardvärde:',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Multiple inputs (value is list of inputs)':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Flera indata (värdet är en lista av indata)',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Upvar - make internal variable visible to caller':
|
2014-10-30 22:21:45 +00:00
|
|
|
'Upvar - gör internal variabel synlig för anroparen',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// About Snap
|
|
|
|
'About Snap':
|
|
|
|
'Om Snap',
|
|
|
|
'Back...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Tillbaka...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'License...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Licens...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Modules...':
|
|
|
|
'Moduler...',
|
|
|
|
'Credits...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Tack till...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Translators...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Översättare',
|
2014-10-30 12:00:02 +00:00
|
|
|
'License':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Licens',
|
2014-10-30 12:00:02 +00:00
|
|
|
'current module versions:':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Modulversioner',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Contributors':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Bidragsgivare',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Translations':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Översättningar',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// variable watchers
|
|
|
|
'normal':
|
|
|
|
'normal',
|
|
|
|
'large':
|
|
|
|
'stor',
|
|
|
|
'slider':
|
2014-10-30 22:11:58 +00:00
|
|
|
'volymkontroll',
|
2014-10-30 12:00:02 +00:00
|
|
|
'slider min...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'volymkontroll min...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'slider max...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'volymkontroll max...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'import...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'importera...',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Slider minimum value':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Volymkontroll - minsta värde',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Slider maximum value':
|
2014-10-30 22:11:58 +00:00
|
|
|
'volymkontroll - högsta värde',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// list watchers
|
|
|
|
'length: ':
|
2014-10-30 22:11:58 +00:00
|
|
|
'längd: ',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// coments
|
|
|
|
'add comment here...':
|
2014-10-30 22:11:58 +00:00
|
|
|
'lägg till kommentar här...',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// drow downs
|
|
|
|
// directions
|
2014-10-30 22:11:58 +00:00
|
|
|
'(90) right':
|
|
|
|
'(90) höger',
|
|
|
|
'(-90) left':
|
|
|
|
'(-90) vänster',
|
|
|
|
'(0) up':
|
|
|
|
'(0) upp',
|
|
|
|
'(180) down':
|
|
|
|
'(180) ned',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// collision detection
|
|
|
|
'mouse-pointer':
|
2014-10-30 22:11:58 +00:00
|
|
|
'muspekare',
|
2014-10-30 12:00:02 +00:00
|
|
|
'edge':
|
|
|
|
'kant',
|
|
|
|
'pen trails':
|
2014-10-30 22:11:58 +00:00
|
|
|
'pennspår',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// costumes
|
|
|
|
'Turtle':
|
2014-10-30 22:11:58 +00:00
|
|
|
'Sköldpadda',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// graphical effects
|
|
|
|
'ghost':
|
2014-10-30 22:11:58 +00:00
|
|
|
'genomskinligt',
|
2014-10-30 12:00:02 +00:00
|
|
|
|
|
|
|
// keys
|
|
|
|
'space':
|
2014-10-30 22:11:58 +00:00
|
|
|
'mellanslag',
|
2014-10-30 12:00:02 +00:00
|
|
|
'up arrow':
|
2014-10-30 22:11:58 +00:00
|
|
|
'pil upp',
|
2014-10-30 12:00:02 +00:00
|
|
|
'down arrow':
|
|
|
|
'pil ned',
|
|
|
|
'right arrow':
|
2014-10-30 22:11:58 +00:00
|
|
|
'pil höger',
|
2014-10-30 12:00:02 +00:00
|
|
|
'left arrow':
|
2014-10-30 22:11:58 +00:00
|
|
|
'pil vänster',
|
2014-10-30 12:00:02 +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...':
|
|
|
|
'ny...',
|
|
|
|
|
|
|
|
// math functions
|
|
|
|
'abs':
|
|
|
|
'abs',
|
|
|
|
'sqrt':
|
2014-10-30 22:11:58 +00:00
|
|
|
'kvadrat',
|
2014-10-30 12:00:02 +00:00
|
|
|
'sin':
|
|
|
|
'sin',
|
|
|
|
'cos':
|
|
|
|
'cos',
|
|
|
|
'tan':
|
|
|
|
'tan',
|
|
|
|
'asin':
|
|
|
|
'arc-1',
|
|
|
|
'acos':
|
|
|
|
'cos-1',
|
|
|
|
'atan':
|
|
|
|
'tan-1',
|
|
|
|
'ln':
|
|
|
|
'ln',
|
|
|
|
'e^':
|
|
|
|
'e^',
|
|
|
|
|
|
|
|
// data types
|
|
|
|
'number':
|
2014-10-30 22:21:45 +00:00
|
|
|
'nummer',
|
2014-10-30 12:00:02 +00:00
|
|
|
'text':
|
2014-10-30 22:11:58 +00:00
|
|
|
'text',
|
2014-10-30 12:00:02 +00:00
|
|
|
'Boolean':
|
2014-10-30 22:11:58 +00:00
|
|
|
'boolean',
|
2014-10-30 12:00:02 +00:00
|
|
|
'list':
|
2014-10-30 22:11:58 +00:00
|
|
|
'lista',
|
2014-10-30 12:00:02 +00:00
|
|
|
'command':
|
|
|
|
'kommando',
|
|
|
|
'reporter':
|
2014-10-30 22:11:58 +00:00
|
|
|
'funktionsblock',
|
2014-10-30 12:00:02 +00:00
|
|
|
'predicate':
|
|
|
|
'predikat',
|
|
|
|
|
|
|
|
// list indices
|
|
|
|
'last':
|
2014-10-30 22:11:58 +00:00
|
|
|
'sista',
|
2014-10-30 12:00:02 +00:00
|
|
|
'any':
|
2014-10-30 22:11:58 +00:00
|
|
|
'vilken som helst'
|
2014-10-30 12:00:02 +00:00
|
|
|
};
|