2015-07-26 20:01:45 +00:00
/ *
2019-01-24 10:57:24 +00:00
lang - de . js
2015-07-26 20:01:45 +00:00
2019-01-24 10:57:24 +00:00
German translation for SNAP !
2015-07-26 20:01:45 +00:00
2019-01-24 10:57:24 +00:00
written by Jens Mönig
2015-07-26 20:01:45 +00:00
2019-01-24 10:57:24 +00:00
Copyright ( C ) 2018 by Jens Mönig
2015-07-26 20:01:45 +00:00
2019-01-24 10:57:24 +00:00
This file is part of Snap ! .
2015-07-26 20:01:45 +00:00
2019-01-24 10:57:24 +00:00
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 .
2015-07-26 20:01:45 +00:00
2019-01-24 10:57:24 +00:00
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 .
2015-07-26 20:01:45 +00:00
2019-01-24 10:57:24 +00:00
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/>.
2015-07-26 20:01:45 +00:00
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 . tr = {
/ *
Special characters : ( see < http : //0xcc.net/jsescape/>)
Ä , ä \u00c4 , \u00e4
Ö , ö \u00d6 , \u00f6
Ü , ü \u00dc , \u00fc
ß \u00df
* /
// translations meta information
'language_name' :
2018-01-16 11:51:12 +00:00
'Türkçe' , // the name as it should appear in the language menu (Dil menüsünde görünmesi gereken isim)
2015-07-26 20:01:45 +00:00
'language_translator' :
2019-01-24 10:57:24 +00:00
'Hakan Atas - www.3drobolab.com, Turgut Güneysu' , // your name for the Translators tab (Çevirenlerin isimleri)
2015-07-26 20:01:45 +00:00
'translator_e-mail' :
2019-01-24 10:57:24 +00:00
'hakanatas@gmail.com, tguneysu@msn.com, mustafaipekbayrak@gmail.com' , // optional (Mail adresleri)
2015-07-26 20:01:45 +00:00
'last_changed' :
2019-01-24 10:57:24 +00:00
'2019-01-22' , // this, too, will appear in the Translators tab (Son güncelleme tarihi)
2015-07-26 20:01:45 +00:00
// GUI
// control bar:
'untitled' :
2019-01-24 10:57:24 +00:00
'kaydedilmemiş' ,
2015-07-26 20:01:45 +00:00
'development mode' :
'geliştirici modu' ,
// categories:
'Motion' :
'Hareket' ,
'Looks' :
'Görünümler' ,
'Sound' :
'Ses' ,
'Pen' :
'Kalem' ,
'Control' :
'Kontrol' ,
'Sensing' :
'Algı lama' ,
'Operators' :
'İşlemler' ,
'Variables' :
'Değişkenler' ,
'Lists' :
'Listeler' ,
'Other' :
'Diğerleri' ,
// editor:
'draggable' :
'sürüklenebilir' ,
// tabs:
'Scripts' :
'Betikler' ,
'Costumes' :
'Kostümler' ,
2019-01-24 10:57:24 +00:00
'Backgrounds' :
'Arka Planlar' ,
2015-07-26 20:01:45 +00:00
'Sounds' :
'Sesler' ,
// names:
'Sprite' :
2019-01-24 10:57:24 +00:00
'Kukla' ,
2015-07-26 20:01:45 +00:00
'Stage' :
'Sahne' ,
// rotation styles:
'don\'t rotate' :
'dönemez' ,
2019-01-11 16:49:40 +00:00
'can rotate' :
'dönebilir' ,
2015-07-26 20:01:45 +00:00
'only face left/right' :
2019-01-24 10:57:24 +00:00
'sadece sağa/sola bakabilir' ,
2015-07-26 20:01:45 +00:00
// new sprite button:
'add a new sprite' :
2019-01-24 10:57:24 +00:00
'yeni bir kukla ekle' ,
'add a new Turtle sprite' :
'yeni bir kaplumbağa kukla ekle' ,
'paint a new sprite' :
'yeni bir kukla resmi yap' ,
'take a camera snapshot and\nimport it as a new sprite' :
'bir kamera görüntüsü al ve \nonu yeni bir kukla olarak ekle' ,
2015-07-26 20:01:45 +00:00
// tab help
'costumes tab help' :
2019-01-11 16:49:40 +00:00
'bilgisayarı nı zdan bir resmi\nburaya sürükleyerek içeri aktarı n' ,
2019-01-24 10:57:24 +00:00
2015-07-26 20:01:45 +00:00
'import a sound from your computer\nby dragging it into here' :
2019-01-11 16:49:40 +00:00
'bilgisayarı nı zdan bir sesi\nburaya sürükleyerek içeri aktarı n' ,
2015-07-26 20:01:45 +00:00
// 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' :
2019-01-11 16:49:40 +00:00
'Seçili sahne:\nhareket temel blokları yok' ,
2019-01-24 10:57:24 +00:00
2015-07-26 20:01:45 +00:00
'move %n steps' :
'%n adı m git' ,
'turn %clockwise %n degrees' :
'%clockwise yönünde %n derece dön' ,
'turn %counterclockwise %n degrees' :
'%counterclockwise yönünde %n derece dön' ,
'point in direction %dir' :
'%dir yönüne dön' ,
'point towards %dst' :
2019-01-24 10:57:24 +00:00
'%dst doğru dön' ,
2015-07-26 20:01:45 +00:00
'go to x: %n y: %n' :
'x: %n y: %n git' ,
'go to %dst' :
'%dst git' ,
'glide %n secs to x: %n y: %n' :
2019-01-11 16:49:40 +00:00
'%n saniyede x: %n y: %n noktası na kay' ,
2015-07-26 20:01:45 +00:00
'change x by %n' :
'x\'i %n değiştir' ,
'set x to %n' :
2019-01-24 10:57:24 +00:00
'x\'i %n yap' ,
2015-07-26 20:01:45 +00:00
'change y by %n' :
'y\'i %n değiştir' ,
'set y to %n' :
2019-01-24 10:57:24 +00:00
'y\'i %n yap' ,
2015-07-26 20:01:45 +00:00
'if on edge, bounce' :
'kenardaysan sek' ,
'x position' :
'x-pozisyonu' ,
'y position' :
'y-pozisyonu' ,
'direction' :
2019-01-11 16:49:40 +00:00
'yön' ,
2015-07-26 20:01:45 +00:00
// looks:
'switch to costume %cst' :
2019-01-24 10:57:24 +00:00
'kostümü %cst yap' ,
2015-07-26 20:01:45 +00:00
'next costume' :
'sonraki kostüm' ,
'costume #' :
2019-01-11 16:49:40 +00:00
'kostüm #' ,
2015-07-26 20:01:45 +00:00
'say %s for %n secs' :
2019-01-24 10:57:24 +00:00
'%s de %n saniye' ,
2015-07-26 20:01:45 +00:00
'say %s' :
2019-01-24 10:57:24 +00:00
'%s de' ,
2015-07-26 20:01:45 +00:00
'think %s for %n secs' :
2019-01-11 16:49:40 +00:00
'%s diye düşün %n saniye' ,
2015-07-26 20:01:45 +00:00
'think %s' :
'%s diye düşün' ,
'Hello!' :
'Merhaba!' ,
'Hmm...' :
'Hmm...' ,
'change %eff effect by %n' :
'%eff etkisini %n değiştir' ,
'set %eff effect to %n' :
'%eff etkisini %n yap' ,
'clear graphic effects' :
'görsel etkileri temizle' ,
'change size by %n' :
2019-01-24 10:57:24 +00:00
'büyüklüğü %n değiştir' ,
2015-07-26 20:01:45 +00:00
'set size to %n %' :
'büyüklüğü % %n yap' ,
'size' :
'büyüklük' ,
'show' :
'göster' ,
'hide' :
'gizle' ,
'go to front' :
'öne git' ,
2019-01-24 10:57:24 +00:00
'go to %layer layer' :
'katman %layer git' ,
'front' :
'öne' ,
'back' :
'arkaya' ,
2015-07-26 20:01:45 +00:00
'go back %n layers' :
2019-01-24 10:57:24 +00:00
'%n katman arkaya git' ,
2015-07-26 20:01:45 +00:00
'development mode \ndebugging primitives:' :
2019-01-11 16:49:40 +00:00
'geliştirici modu\nhata ayı klama temel blokları ' ,
2015-07-26 20:01:45 +00:00
'console log %mult%s' :
'log dosyası na yaz %mult%s' ,
'alert %mult%s' :
'uyarı : %mult%s' ,
// sound:
'play sound %snd' :
'%snd sesini çal' ,
'play sound %snd until done' :
'%snd sesini bitene kadar çal' ,
'stop all sounds' :
'tüm sesleri durdur' ,
'rest for %n beats' :
'%n vuruş sus' ,
2019-01-24 10:57:24 +00:00
'play note %note for %n beats' :
'%note notası nı %n vuruş çal' ,
'set instrument to %inst' :
'enstrümanı %inst yap' ,
2015-07-26 20:01:45 +00:00
'change tempo by %n' :
'tempoyu %n değiştir' ,
'set tempo to %n bpm' :
'tempoyu %n yap' ,
'tempo' :
'tempo' ,
2019-01-24 10:57:24 +00:00
// "instruments", i.e. wave forms
'(1) sine' :
'(1) Sinus' ,
'(2) square' :
'(2) Kare' ,
'(3) sawtooth' :
'(3) Testere' ,
'(4) triangle' :
'(4) Üçgen' ,
2015-07-26 20:01:45 +00:00
// pen:
'clear' :
'temizle' ,
'pen down' :
'kalemi bastı r' ,
'pen up' :
'kalemi kaldı r' ,
'set pen color to %clr' :
'kalemin rengini %clr yap' ,
'change pen color by %n' :
'kalemin rengini %n değiştir' ,
'set pen color to %n' :
'kalemin rengini %n yap' ,
2019-01-24 10:57:24 +00:00
'change pen %hsva by %n' :
'Kalemin %hsva %n değiştir' ,
'set pen %hsva to %n' :
'Kalemin %hsva %n yap' ,
2015-07-26 20:01:45 +00:00
'change pen size by %n' :
'kalemin kalı nlı ğı nı %n değiştir' ,
'set pen size to %n' :
'kalemin kalı nlı ğı nı %n yap' ,
'stamp' :
2019-01-24 10:57:24 +00:00
'damgala' ,
'fill' :
2019-01-11 16:49:40 +00:00
'doldur' ,
2019-01-24 10:57:24 +00:00
2015-07-26 20:01:45 +00:00
// control:
'when %greenflag clicked' :
'%greenflag tı klanı nca' ,
'when %keyHat key pressed' :
'%keyHat tuşu bası lı nca' ,
2019-01-24 10:57:24 +00:00
'when I am %interaction' :
'kukla %interaction zaman' ,
'clicked' :
'tı klandı ğı ' ,
'pressed' :
'bası ldı ğı ' ,
'dropped' :
'bı rakı ldı ğı ' ,
'mouse-entered' :
'fare geldiği' ,
'mouse-departed' :
'fare gittiği' ,
'scrolled-down' :
'aşağı kaydı rı ldı ğı ' ,
'scrolled-up' :
'yukarı kaydı rı ldı ğı ' ,
'stopped' :
'durdurulduğu' ,
'when %b' :
'%b olunca' ,
2015-07-26 20:01:45 +00:00
'when I receive %msgHat' :
'%msgHat haberi gelince' ,
'broadcast %msg' :
'%msg yayı mla' ,
'broadcast %msg and wait' :
'%msg yayı mla ve bekle' ,
'Message name' :
'Mesaj adı ' ,
'message' :
'mesaj' ,
'any message' :
'herhangi bir mesaj' ,
'wait %n secs' :
'%n sn bekle' ,
'wait until %b' :
'%b olana kadar bekle' ,
2019-01-24 10:57:24 +00:00
'forever %c' :
'sürekli %c' ,
'repeat %n %c' :
'tekrarla %n kere %c' ,
'repeat until %b %c' :
'tekrarla %b olana kadar %c' ,
2015-07-26 20:01:45 +00:00
'if %b %c' :
'eğer %b %c' ,
'if %b %c else %c' :
'eğer %b %c değilse %c' ,
'report %s' :
2019-01-24 10:57:24 +00:00
'bildir %s' ,
2015-07-26 20:01:45 +00:00
'stop %stopChoices' :
'durdur %stopChoices' ,
'all' :
'tümü' ,
'this script' :
2019-01-11 16:49:40 +00:00
'bu betik' ,
2015-07-26 20:01:45 +00:00
'this block' :
'bu blok' ,
'stop %stopOthersChoices' :
'durdur %stopOthersChoices' ,
'all but this script' :
2019-01-24 10:57:24 +00:00
'bu betik hariç diğerleri' ,
2015-07-26 20:01:45 +00:00
'other scripts in sprite' :
2019-01-24 10:57:24 +00:00
'bu kukla içindeki diğer betikler' ,
2015-07-26 20:01:45 +00:00
'pause all %pause' :
'tümünü beklet %pause' ,
'run %cmdRing %inputs' :
'çalı ştı r %cmdRing %inputs' ,
'launch %cmdRing %inputs' :
'başlat %cmdRing %inputs' ,
'call %repRing %inputs' :
'çağı r %repRing %inputs' ,
'run %cmdRing w/continuation' :
2019-01-24 10:57:24 +00:00
'çalı ştı r %cmdRing (arta kalanlı )' ,
2015-07-26 20:01:45 +00:00
'call %cmdRing w/continuation' :
2019-01-24 10:57:24 +00:00
'çağı r %cmdRing (arta kalanlı )' ,
2015-07-26 20:01:45 +00:00
'warp %c' :
2019-01-11 16:49:40 +00:00
'Turbo %c' ,
2015-07-26 20:01:45 +00:00
'when I start as a clone' :
2019-01-24 10:57:24 +00:00
'Klon olarak başladı ğı mda' ,
2015-07-26 20:01:45 +00:00
'create a clone of %cln' :
'%cln klonunu oluştur' ,
2019-01-24 10:57:24 +00:00
'a new clone of %cln' :
'%cln in yeni bir klonu' ,
2015-07-26 20:01:45 +00:00
'myself' :
'kendim' ,
'delete this clone' :
'bu klonu sil' ,
2019-01-24 10:57:24 +00:00
'tell %spr to %cmdRing %inputs' :
'söyle %spr bunu yapsı n %cmdRing %inputs' ,
'ask %spr for %repRing %inputs' :
'sor %spr bunun cevabı %repRing %inputs' ,
2015-07-26 20:01:45 +00:00
// sensing:
'touching %col ?' :
2019-01-24 10:57:24 +00:00
'%col değiyor mu?' ,
2015-07-26 20:01:45 +00:00
'touching %clr ?' :
'%clr rengine değiyor mu?' ,
'color %clr is touching %clr ?' :
2019-01-24 10:57:24 +00:00
'%clr rengi %clr rengine değiyor mu?' ,
2015-07-26 20:01:45 +00:00
'ask %s and wait' :
'%s sor ve bekle' ,
'what\'s your name?' :
'adı nı z ne?' ,
'answer' :
'cevap' ,
'mouse x' :
'Fare x-konumu' ,
'mouse y' :
'Fare y-konumu' ,
'mouse down?' :
2019-01-24 10:57:24 +00:00
'fare bası lı mı ?' ,
2015-07-26 20:01:45 +00:00
'key %key pressed?' :
'%key tuşu bası lı mı ?' ,
2019-01-24 10:57:24 +00:00
'%rel to %dst' :
'%rel buna: %dst' ,
'distance' :
'mesafe' ,
// '%asp at %loc' :
// '%asp bei %loc',
'sprites' :
'kuklalar' ,
2015-07-26 20:01:45 +00:00
'reset timer' :
'zamanlayı cı yı sı fı rla' ,
'timer' :
'zamanlayı cı ' ,
2019-01-24 10:57:24 +00:00
2015-07-26 20:01:45 +00:00
'%att of %spr' :
2019-01-11 16:49:40 +00:00
'%att bunun: %spr' ,
2019-01-24 10:57:24 +00:00
'my %get' :
'benim %get' ,
2015-07-26 20:01:45 +00:00
'http:// %s' :
'http:// %s' ,
'turbo mode?' :
2019-01-24 10:57:24 +00:00
'turbo mod?' ,
2015-07-26 20:01:45 +00:00
'set turbo mode to %b' :
'turbo modu %b yap' ,
2019-01-24 10:57:24 +00:00
'current %dates' :
'şu anki %dates' ,
'year' :
'yı l' ,
'month' :
'ay' ,
'date' :
'gün' ,
'day of week' :
'haftanı n günü' ,
'hour' :
'saat' ,
'minute' :
'dakika' ,
'second' :
'saniye' ,
'time in milliseconds' :
'milisaniye' ,
2015-07-26 20:01:45 +00:00
'filtered for %clr' :
'%clr için filtrele' ,
'stack size' :
2019-01-24 10:57:24 +00:00
'yı ğı t boyutu' ,
2015-07-26 20:01:45 +00:00
'frames' :
'çerçeveler' ,
// operators:
'%n mod %n' :
'%n mod %n' ,
'round %n' :
'%n yuvarla' ,
'%fun of %n' :
2019-01-11 16:49:40 +00:00
'%fun bunun: %n' ,
2015-07-26 20:01:45 +00:00
'pick random %n to %n' :
2019-01-11 16:49:40 +00:00
'%n ile %n arası nda rastgele sayı ' ,
2015-07-26 20:01:45 +00:00
'%b and %b' :
'%b ve %b' ,
'%b or %b' :
'%b veya %b' ,
'not %b' :
'%b değil' ,
'true' :
'doğru' ,
'false' :
'yanlı ş' ,
'join %words' :
'%words birleştir' ,
'split %s by %delim' :
2019-01-24 10:57:24 +00:00
'%s ayı r %delim e göre' ,
2015-07-26 20:01:45 +00:00
'hello' :
'merhaba' ,
'world' :
'dünya' ,
2018-06-12 09:16:04 +00:00
'letter %idx of %s' :
2019-01-24 10:57:24 +00:00
'%idx harfi bunun: %s' ,
2015-07-26 20:01:45 +00:00
'length of %s' :
'%s in uzunluğu' ,
'unicode of %s' :
2019-01-24 10:57:24 +00:00
'%s harfinin unicode değeri' ,
2015-07-26 20:01:45 +00:00
'unicode %n as letter' :
2019-01-24 10:57:24 +00:00
'%n unicode değerinin harfi' ,
2015-07-26 20:01:45 +00:00
'is %s a %typ ?' :
'%s bir %typ mi?' ,
'is %s identical to %s ?' :
'%s ile %s aynı mı ?' ,
2019-01-24 10:57:24 +00:00
'JavaScript function ( %mult%s ) { %code }' :
'JavaScript fonksiyonu ( %mult%s ) { %code }' ,
'compile %repRing' :
'derle %repRing' ,
2015-07-26 20:01:45 +00:00
'type of %s' :
'%s un tipi' ,
// variables:
'Make a variable' :
'Değişken oluştur' ,
'Variable name' :
'Değişken adı ' ,
'Script variable name' :
2019-01-11 16:49:40 +00:00
'Betik değişken adı ' ,
2019-01-24 10:57:24 +00:00
'inherit %shd' :
'kalı t al: %shd' ,
2015-07-26 20:01:45 +00:00
'Delete a variable' :
'Değişkeni sil' ,
'set %var to %s' :
'%var %s olsun' ,
'change %var by %n' :
'%var i %n değiştir' ,
'show variable %var' :
'%var değişkenini göster' ,
'hide variable %var' :
'%var değişkenini gizle' ,
'script variables %scriptVars' :
2019-01-24 10:57:24 +00:00
'betik değişkenleri: %scriptVars' ,
2015-07-26 20:01:45 +00:00
// lists:
'list %exp' :
2019-01-24 10:57:24 +00:00
'liste %exp' ,
2015-07-26 20:01:45 +00:00
'%s in front of %l' :
2019-01-24 10:57:24 +00:00
'%s i %l en öne koy' ,
2015-07-26 20:01:45 +00:00
'item %idx of %l' :
2019-01-11 16:49:40 +00:00
'öğe %idx %l listesinin' ,
2015-07-26 20:01:45 +00:00
'all but first of %l' :
'%l in ilk elemanı hariç tümü' ,
'length of %l' :
'%l nin uzunluğu' ,
'%l contains %s' :
'%l %s i içeriyor' ,
'thing' :
'şey' ,
'add %s to %l' :
'%s i %l ye ekle' ,
'delete %ida of %l' :
2019-01-11 16:49:40 +00:00
'sil %ida öğesini %l listesinin' ,
2015-07-26 20:01:45 +00:00
'insert %s at %idx of %l' :
2019-01-24 10:57:24 +00:00
'ekle %s %idx öğesine %l listesinin' ,
2015-07-26 20:01:45 +00:00
'replace item %idx of %l with %s' :
2019-01-11 16:49:40 +00:00
'değiştir %idx öğesini %l listesinin %s ile' ,
2015-07-26 20:01:45 +00:00
// other
'Make a block' :
'Yeni bir blok oluştur' ,
// menus
// snap menu
'About...' :
'Snap Hakkı nda!...' ,
'Reference manual' :
2019-01-11 16:49:40 +00:00
'Başvuru kitabı ' ,
2015-07-26 20:01:45 +00:00
'Snap! website' :
'Snap! web sitesi' ,
'Download source' :
2019-01-11 16:49:40 +00:00
'Kaynak kodu indir' ,
2015-07-26 20:01:45 +00:00
'Switch back to user mode' :
'Kullanı cı moduna geri dön' ,
'disable deep-Morphic\ncontext menus\nand show user-friendly ones' :
2019-01-11 16:49:40 +00:00
'Morfik içerik menüsünü\nkapat\nve kullanı mı kolay olanları göster' ,
2015-07-26 20:01:45 +00:00
'Switch to dev mode' :
'geliştirici moduna dön' ,
'enable Morphic\ncontext menus\nand inspectors,\nnot user-friendly!' :
2019-01-11 16:49:40 +00:00
'Morfik içerik menüsü\nve gözlemleme etkinleştir\nkullanı mı kolay değil' ,
2015-07-26 20:01:45 +00:00
// project menu
'Project notes...' :
'Proje notları ...' ,
'New' :
'Yeni' ,
'Open...' :
'Aç...' ,
'Save' :
'Kaydet' ,
2019-01-24 10:57:24 +00:00
'Save to disk' :
'Diske kaydet' ,
'store this project\nin the downloads folder\n(in supporting browsers)' :
'bu projeyi indirilenler\nklasörüne kaydet \n(destekleyen tarayı cı larda)' ,
2015-07-26 20:01:45 +00:00
'Save As...' :
'Farklı kaydet...' ,
'Import...' :
'İçeri aktar...' ,
'file menu import hint' :
2019-01-24 10:57:24 +00:00
'Bilgisayarı nı zdaki bir projeyi, kütüphaneyi,\nblokları , kostümleri veya sesleri\nSNAP! a yükleyin' ,
2015-07-26 20:01:45 +00:00
'Export project as plain text...' :
2019-01-24 10:57:24 +00:00
'Projeyi düz metin olarak dı şarı aktar...' ,
2015-07-26 20:01:45 +00:00
'Export project...' :
'Projeyi dı şarı aktar...' ,
2019-01-24 10:57:24 +00:00
'save project data as XML\nto your downloads folder' :
'proje verilerini indirme klasörünüze \nXML olarak kaydedin' ,
2015-07-26 20:01:45 +00:00
'show project data as XML\nin a new browser window' :
2019-01-24 10:57:24 +00:00
'Proje verilerini XML olarak\nyeni bir pencerede göster' ,
2015-07-26 20:01:45 +00:00
'Export blocks...' :
'Blokları dı şarı aktar...' ,
'show global custom block definitions as XML\nin a new browser window' :
2019-01-24 10:57:24 +00:00
'global özel blok tanı mları nı \nXML olarak indirme klasörünüze kaydedin' ,
'Unused blocks...' :
'kullanı lmayan bloklar...' ,
'find unused global custom blocks\nand remove their definitions' :
'kullanı lmayan global özel blokları bulun\nve tanı mları nı kaldı rı n' ,
'Remove unused blocks' :
'kullanı lmayan blokları kaldı rı n' ,
'there are currently no unused\nglobal custom blocks in this project' :
'şu anda bu projede\nkullanı lmamı ş özel blok yok' ,
'unused block(s) removed' :
'kullanı lmayan bloklar kaldı rı ldı ' ,
'Export summary...' :
'Dı şarı aktarı m özeti...' ,
'open a new browser browser window\n with a summary of this project' :
'bu projenin bir özetini içeren\nverileri indirme klasörünüze \nXML olarak kaydedin' ,
'Contents' :
'İçerikler' ,
'Kind of' :
'Tipi' ,
'Part of' :
'Parçası ' ,
'Parts' :
'Parçalar' ,
'Blocks' :
'Bloklar' ,
'For all Sprites' :
'Tüm kuklalar için' ,
2015-07-26 20:01:45 +00:00
'Import tools' :
2019-01-24 10:57:24 +00:00
'TOOLS ktp içeri aktar' ,
2015-07-26 20:01:45 +00:00
'load the official library of\npowerful blocks' :
2019-01-24 10:57:24 +00:00
'güçlü blokları n resmi\nkütüphanesini yükletin' ,
2015-07-26 20:01:45 +00:00
'Libraries...' :
'Kütüphaneler...' ,
2019-01-24 10:57:24 +00:00
'Select categories of additional blocks to add to this project.' :
'Bu projeye eklemek için ek blok kategorileri seçin.' ,
'Select a costume from the media library' :
'Medya kütüphanesinden bir kostüm seçin' ,
'Select a sound from the media library' :
'Medya kütüphanesinden bir ses seçin' ,
//Libraries
2015-07-26 20:01:45 +00:00
'Import library' :
'Kütüphaneyi içeri aktar' ,
2019-01-24 10:57:24 +00:00
'Loading' :
'Yükleniyor' ,
'Imported' :
'İçeri aktarı ldı ' ,
'Iteration, composition' :
'Yineleme, kompozisyon' ,
'List utilities' :
'liste yardı mcı programları ' ,
'Variadic reporters' :
'Çok girdili bildirenler' ,
'Web services access (https)' :
'Web servislerine ulaşı m (https)' ,
'Multi-branched conditional (switch)' :
'Çok dallı koşullu (switch)' ,
'LEAP Motion controller' :
'LEAP Motion denetleyicisi' ,
'Words, sentences' :
'kelimelerö cümleler' ,
'Catch errors in a script' :
'Betikteki hataları bul' ,
'Set RGB or HSV pen color' :
'Kalem rengini RGB veya HSV olarak ayarla' ,
'Text to speech' :
'Metinden konuşmaya' ,
'Provide 100 selected colors' :
'100 seçili renk sağlayı n' ,
'Infinite precision integers, exact rationals, complex' :
'Sonsuz hassasiyetli tam sayı lar, kesin rasyonlar, karı şı k sayı lar' ,
'Provide getters and setters for all GUI-controlled global settings' :
'GUI kontrollü tüm global ayarlar için alı cı lar ve ayarlayı cı lar sağlayı n' ,
'Allow multi-line text input to a block' :
'Bloklara çok satı rlı metin girişi sağla' ,
'create variables in program' :
'Betiklerde değişken yarat' ,
2015-07-26 20:01:45 +00:00
// cloud menu
'Login...' :
'Giriş yap...' ,
'Signup...' :
'Kayı t ol...' ,
2019-01-24 10:57:24 +00:00
'Logout' :
'Çı kı ş yap' ,
'Change Password...' :
'Şifre değiştir...' ,
'Reset Password...' :
'Şifre yenile...' ,
'Resend Verification Email...' :
'Doğrulama e-postası nı tekrar gönder...' ,
2015-07-26 20:01:45 +00:00
// settings menu
'Language...' :
'Dil...' ,
'Zoom blocks...' :
2019-01-24 10:57:24 +00:00
'Blokları büyült...' ,
2015-07-26 20:01:45 +00:00
'Stage size...' :
2019-01-24 10:57:24 +00:00
'Sahne boyutu...' ,
2015-07-26 20:01:45 +00:00
'Stage size' :
2019-01-24 10:57:24 +00:00
'Sahne boyutu' ,
2015-07-26 20:01:45 +00:00
'Stage width' :
'Sahne genişliği' ,
'Stage height' :
'Sahne yüksekliği' ,
'Default' :
'Varsayı lan' ,
'Blurred shadows' :
2019-01-11 16:49:40 +00:00
'Bulanmı ş gölgeler' ,
2015-07-26 20:01:45 +00:00
'uncheck to use solid drop\nshadows and highlights' :
2019-01-24 10:57:24 +00:00
'katı gölge ve parlaklı k kullanmak\niçin seçimi kaldı rı n' ,
2015-07-26 20:01:45 +00:00
'check to use blurred drop\nshadows and highlights' :
2019-01-24 10:57:24 +00:00
'gölge ve parlaklı kları bulanı k\nhale getirmek için seçim yapı n' ,
2015-07-26 20:01:45 +00:00
'Zebra coloring' :
'çizgili boyama' ,
'check to enable alternating\ncolors for nested blocks' :
2019-01-24 10:57:24 +00:00
'iç içe bloklarda değişmeli\nrenkler için seçim yapı n' ,
2015-07-26 20:01:45 +00:00
'uncheck to disable alternating\ncolors for nested block' :
2019-01-24 10:57:24 +00:00
'iç içe bloklarda değişmeli renkleri\nkaldı rmak için seçimi kaldı rı n' ,
2015-07-26 20:01:45 +00:00
'Dynamic input labels' :
'Dinamik girdi etiketleri' ,
'uncheck to disable dynamic\nlabels for variadic inputs' :
2019-01-11 16:49:40 +00:00
'farklı girdiler için dinamik etiketlemeyi\nkaldı rmak için seçimi kaldı rı n' ,
2015-07-26 20:01:45 +00:00
'check to enable dynamic\nlabels for variadic inputs' :
2019-01-11 16:49:40 +00:00
'farklı girdiler için dinamik etiketlemeyi\netkinleştirmek için seçim yapı n' ,
2015-07-26 20:01:45 +00:00
'Prefer empty slot drops' :
2019-01-24 10:57:24 +00:00
'Boş yer tutucuları atmayı tercih et' ,
2015-07-26 20:01:45 +00:00
'settings menu prefer empty slots hint' :
2019-01-24 10:57:24 +00:00
'boş yer tutucuları için menü ayarları ' ,
2015-07-26 20:01:45 +00:00
'uncheck to allow dropped\nreporters to kick out others' :
2019-01-24 10:57:24 +00:00
'kullanı lmayan bildirenlerin başkaları nı atmaları için işareti kaldı r' ,
'check to turn on\n visible stepping (slow)' :
'görünür adı m adı m yürütüm\niçin seçin (yavaş)' ,
'uncheck to turn off\nvisible stepping' :
'görünür adı m adı m yürütümü\nkapatmak için işareti kaldı r' ,
2015-07-26 20:01:45 +00:00
'Long form input dialog' :
'girdi dialogları için uzun form' ,
'Plain prototype labels' :
2019-01-24 10:57:24 +00:00
'Sade prototip etiketleri' ,
2015-07-26 20:01:45 +00:00
'uncheck to always show (+) symbols\nin block prototype labels' :
'prototip etiketinde (+) sembolünün\ngörünmesi için seçimi kaldı rı n' ,
'check to hide (+) symbols\nin block prototype labels' :
2019-01-11 16:49:40 +00:00
'prototip etiketinde (+) sembolünün\ngizlenmesi için seçim yapı n' ,
2015-07-26 20:01:45 +00:00
'check to always show slot\ntypes in the input dialog' :
2019-01-11 16:49:40 +00:00
'girdi dialogları nda girdi tipinin \ngörünmesi için seçim yapı n' ,
2015-07-26 20:01:45 +00:00
'uncheck to use the input\ndialog in short form' :
'girdi dialogları nı kı sa form\nolarak kullanmak için seçimi kaldı rı n' ,
'Virtual keyboard' :
'Sanal klavye' ,
'uncheck to disable\nvirtual keyboard support\nfor mobile devices' :
'mobil araçlar için\nsanal klavye desteğini\nkaldı rmak için seçimi kaldı rı n' ,
'check to enable\nvirtual keyboard support\nfor mobile devices' :
2019-01-11 16:49:40 +00:00
'mobil araçlar için\nsanal klavye desteğini\naktifleştirmek için seçim yapı n' ,
2015-07-26 20:01:45 +00:00
'Input sliders' :
'Girdi sürgüleri' ,
'uncheck to disable\ninput sliders for\nentry fields' :
'girdi alanları ndanki girdi sürgülerini etkisizleştirmek için seçimi kaldı rı n' ,
'check to enable\ninput sliders for\nentry fields' :
2019-01-11 16:49:40 +00:00
'girdi alanları ndanki girdi sürgülerini \naktifleştirmek için seçim yapı n' ,
2019-01-24 10:57:24 +00:00
'Retina display support' :
'Retina ekran desteği' ,
'uncheck for lower resolution,\nsaves computing resources' :
'düşük çözünürlük için işareti kaldı rı n,\nbilgi işlem kaynakları nı korur' ,
'check for higher resolution,\nuses more computing resources' :
'daha yüksek çözünürlük için kontrol edin\ndaha fazla bilgi işlem kaynağı nı kullanı r' ,
'Codification support' :
'Kodlama desteği' ,
2015-07-26 20:01:45 +00:00
'Clicking sound' :
2019-01-11 16:49:40 +00:00
'Tı klama sesi' ,
2015-07-26 20:01:45 +00:00
'uncheck to turn\nblock clicking\nsound off' :
2019-01-11 16:49:40 +00:00
'blok tı klama sesini \nkapatmak için seçimi kaldı rı n' ,
2015-07-26 20:01:45 +00:00
'check to turn\nblock clicking\nsound on' :
2019-01-11 16:49:40 +00:00
'blok tı klama sesini \naçmak için seçim yapı n' ,
2015-07-26 20:01:45 +00:00
'Animations' :
'Animasyonlar' ,
'uncheck to disable\nIDE animations' :
2019-01-24 10:57:24 +00:00
'IDE animasyonları etkisizliştirmek için\nseçimi kaldı rı n' ,
2015-07-26 20:01:45 +00:00
'Turbo mode' :
'Turbo Mod' ,
'check to prioritize\nscript execution' :
2019-01-11 16:49:40 +00:00
'Betik çalı şması na öncelik\nvermek için seçim yapı n' ,
2015-07-26 20:01:45 +00:00
'uncheck to run scripts\nat normal speed' :
2019-01-11 16:49:40 +00:00
'betiklerin normal hı zla çalı şması \niçin seçimi kaldı rı n' ,
2015-07-26 20:01:45 +00:00
'check to enable\nIDE animations' :
'IDE animasyonları nı \naktifleştirmek için seçim yapı n' ,
2019-01-24 10:57:24 +00:00
'Flat design' :
'Sade tasarı m' ,
'check for alternative\nGUI design' :
'alternatif GUI tasarı mı için seçin' ,
'uncheck for default\nGUI design' :
'varsayı lan GUI tasarı mı için seçimi kaldı rı n' ,
'Nested auto-wrapping' :
'İç içe automatik kaydı rma' ,
'Keyboard Editing' :
'Klavyeyle düzenleme' ,
'Table support' :
'Tablo desteği' ,
'Table lines' :
'Tablo çizgileri' ,
'Visible stepping' :
'Adı m adı m yürütüm' ,
2015-07-26 20:01:45 +00:00
'Thread safe scripts' :
2019-01-11 16:49:40 +00:00
'Olay yinelemeyi yoksay' ,
2015-07-26 20:01:45 +00:00
'uncheck to allow\nscript reentrance' :
2019-01-11 16:49:40 +00:00
'betiğe tekrar girişe\nizin vermek için seçimi kaldı rı n' ,
2015-07-26 20:01:45 +00:00
'check to disallow\nscript reentrance' :
2019-01-11 16:49:40 +00:00
'betiğe tekrar girişe\nizin vermemek için seçim yapı n' ,
2015-07-26 20:01:45 +00:00
'Prefer smooth animations' :
2019-01-11 16:49:40 +00:00
'Pürüzsüz animasyonu tercih et' ,
2015-07-26 20:01:45 +00:00
'uncheck for greater speed\nat variable frame rates' :
2019-01-11 16:49:40 +00:00
'Değişken kare hı zları nda \ndaha yüksek hı z için işareti kaldı rı n' ,
2015-07-26 20:01:45 +00:00
'check for smooth, predictable\nanimations across computers' :
'bilgisayarlar arası düz,tahmin edilebilir\nanimasyonlar için seçim yapı n' ,
'Flat line ends' :
'Düz çizgi bitimleri' ,
'check for flat ends of lines' :
2019-01-24 10:57:24 +00:00
'düz biten çizgiler\niçin seçin' ,
2015-07-26 20:01:45 +00:00
'uncheck for round ends of lines' :
2019-01-24 10:57:24 +00:00
'yuvarlak biten çizgiler\niçin seçimi kaldı rı n' ,
'Ternary Boolean slots' :
'Üçlü Boole yer tutucuları ' ,
'Inheritance support' :
'Kalı tı m desteği' ,
2015-07-26 20:01:45 +00:00
// inputs
'with inputs' :
'girdi ile' ,
'input names:' :
'girdi isimleri:' ,
'Input Names:' :
2019-01-11 16:49:40 +00:00
'Girdi isimleri:' ,
2015-07-26 20:01:45 +00:00
'input list:' :
'girdi listesi:' ,
// context menus:
'help' :
'yardı m' ,
// palette:
2019-01-24 10:57:24 +00:00
'find blocks' :
'blokları bul' ,
2015-07-26 20:01:45 +00:00
'hide primitives' :
2019-01-11 16:49:40 +00:00
'temel blokları gizle' ,
2015-07-26 20:01:45 +00:00
'show primitives' :
2019-01-11 16:49:40 +00:00
'temel blokları göster' ,
2015-07-26 20:01:45 +00:00
// blocks:
'help...' :
'yardı m...' ,
'relabel...' :
'yeniden adlandı r...' ,
'duplicate' :
'kopyala' ,
'make a copy\nand pick it up' :
'kopya oluştur\nve onu al' ,
'only duplicate this block' :
'sadece bu bloğun kopyası nı oluştur' ,
'delete' :
'sil' ,
'script pic...' :
'betik resmi...' ,
'open a new window\nwith a picture of this script' :
2019-01-24 10:57:24 +00:00
'bu betiğin resmini\nyeni bir pencerede açı n' ,
2015-07-26 20:01:45 +00:00
'ringify' :
2019-01-11 16:49:40 +00:00
'ringify - veri yap' ,
2015-07-26 20:01:45 +00:00
'unringify' :
2019-01-11 16:49:40 +00:00
'unringify - veri yapma' ,
2019-01-24 10:57:24 +00:00
'transient' :
'geçici' ,
'uncheck to save contents\nin the project' :
'içeriğin projede kaydedilmesi\niçin işareti kaldı rı n' ,
'check to prevent contents\nfrom being saved' :
'içeriğin projede\nkaydedilmemesi için seçin' ,
'new line' :
'yeni satı r' ,
2015-07-26 20:01:45 +00:00
// custom blocks:
'delete block definition...' :
'blok tanı mları nı sil...' ,
2019-01-24 10:57:24 +00:00
'duplicate block definition...' :
'çifte blok tanı mı ...' ,
2015-07-26 20:01:45 +00:00
'edit...' :
'düzenle...' ,
// sprites:
'edit' :
2019-01-24 10:57:24 +00:00
'kalı cı klon ol' ,
'clone' :
'klon yap' ,
2015-07-26 20:01:45 +00:00
'move' :
'hareket et' ,
2019-01-24 10:57:24 +00:00
'pivot' :
'dönme noktası ' ,
'edit the costume\'s\nrotation center' :
'kostümün dönme\nmerkezini düzenle' ,
'rotate' :
'Dön' ,
2015-07-26 20:01:45 +00:00
'detach from' :
2019-01-24 10:57:24 +00:00
'kukladan ayı r: ' ,
2015-07-26 20:01:45 +00:00
'detach all parts' :
'tüm parçaları ayı r' ,
'export...' :
2019-01-11 16:49:40 +00:00
'dı şarı aktar...' ,
2019-01-24 10:57:24 +00:00
'parent...' :
'üst öğe...' ,
'current parent' :
'şimdiki üst öğe' ,
'release' :
'geçici klon ol' ,
'make temporary and\nhide in the sprite corral' :
'geçici yap ve kukla alanı nda gizle' ,
2015-07-26 20:01:45 +00:00
// stage:
'show all' :
'hepsini göster' ,
'pic...' :
'resimler...' ,
'open a new window\nwith a picture of the stage' :
2019-01-11 16:49:40 +00:00
'sahnenin resmini\n yeni bir pencerede aç' ,
2019-01-24 10:57:24 +00:00
'turn all pen trails and stamps\ninto a new background for the stage' :
'tüm kalem izlerini ve damgaları sahne için yeni bir arka plana dönüştür' ,
'turn all pen trails and stamps\ninto a new costume for the\ncurrently selected sprite' :
'tüm kalem izlerini ve damgaları şimdiki kukla için yeni bir kostüme dönüştür' ,
2015-07-26 20:01:45 +00:00
// scripting area
'clean up' :
'temizle' ,
'arrange scripts\nvertically' :
2019-01-11 16:49:40 +00:00
'betikleri dikey olarak düzenle' ,
2015-07-26 20:01:45 +00:00
'add comment' :
'yorum ekle' ,
'undrop' :
2019-01-11 16:49:40 +00:00
'Geri al' ,
2015-07-26 20:01:45 +00:00
'undo the last\nblock drop\nin this pane' :
2019-01-11 16:49:40 +00:00
'alana bı raktı ğı n\n son bloğu geri al' ,
2019-01-24 10:57:24 +00:00
'redrop' :
'yine bı rak' ,
'use the keyboard\nto enter blocks' :
'blokları klavyeden gir' ,
2015-07-26 20:01:45 +00:00
'scripts pic...' :
2019-01-11 16:49:40 +00:00
'betik resimleri...' ,
2015-07-26 20:01:45 +00:00
'open a new window\nwith a picture of all scripts' :
2019-01-24 10:57:24 +00:00
'tüm betiklerin resmini\nyeni bir pencerede aç' ,
2015-07-26 20:01:45 +00:00
'make a block...' :
'bir blok oluştur...' ,
// costumes
'rename' :
'yeniden adlandı r' ,
'export' :
'dı şarı aktar' ,
'rename costume' :
'Köstümü yeniden adlandı r' ,
// sounds
'Play sound' :
2019-01-11 16:49:40 +00:00
'Sesi çal' ,
2015-07-26 20:01:45 +00:00
'Stop sound' :
'Sesi durdur' ,
'Stop' :
'Durdur' ,
'Play' :
2019-01-11 16:49:40 +00:00
'Çal' ,
2015-07-26 20:01:45 +00:00
'rename sound' :
'sesi yeniden adlandı r' ,
2019-01-24 10:57:24 +00:00
// lists and tables
'list view...' :
'liste görünümü...' ,
'table view...' :
'tablo görünümü...' ,
'Table view' :
'Tablo görünümü' ,
'open in dialog...' :
'yeni pencerede aç' ,
'reset columns' :
'sütunları sı fı rla' ,
'items' :
'öğeler' ,
2015-07-26 20:01:45 +00:00
// dialogs
// buttons
'OK' :
'TAMAM' ,
'Ok' :
'Tamam' ,
'Cancel' :
'İptal' ,
'Yes' :
'Evet' ,
'No' :
'Hayı r' ,
// help
'Help' :
'Yardı m' ,
// zoom blocks
'Zoom blocks' :
2019-01-24 10:57:24 +00:00
'Blokları büyült' ,
2015-07-26 20:01:45 +00:00
'build' :
2019-01-24 10:57:24 +00:00
'Kendi' ,
2015-07-26 20:01:45 +00:00
'your own' :
2019-01-24 10:57:24 +00:00
'blokları nı ' ,
2015-07-26 20:01:45 +00:00
'blocks' :
2019-01-24 10:57:24 +00:00
'oluştur' ,
2015-07-26 20:01:45 +00:00
'normal (1x)' :
'normal (1x)' ,
'demo (1.2x)' :
2019-01-11 16:49:40 +00:00
'demo (1.2x)' ,
2015-07-26 20:01:45 +00:00
'presentation (1.4x)' :
2019-01-11 16:49:40 +00:00
'sunum (1.4x)' ,
2015-07-26 20:01:45 +00:00
'big (2x)' :
'büyük (2x)' ,
'huge (4x)' :
'kocaman (4x)' ,
'giant (8x)' :
'devasa (8x)' ,
'monstrous (10x)' :
'çok büyük (10x)' ,
// Project Manager
'Untitled' :
2019-01-24 10:57:24 +00:00
'Kayı tlanmamı ş' ,
2015-07-26 20:01:45 +00:00
'Open Project' :
'Projec aç' ,
2019-01-24 10:57:24 +00:00
'Open' :
'Aç' ,
2015-07-26 20:01:45 +00:00
'(empty)' :
'(boş)' ,
'Saved!' :
'Kaydedildi!' ,
'Delete Project' :
'Projeyi sil' ,
'Are you sure you want to delete' :
'Silmek istediğinize emin misiniz?' ,
'rename...' :
'yeniden adlandı r...' ,
2019-01-24 10:57:24 +00:00
'Examples' :
'Örnekler' ,
'Share' :
'Paylaş' ,
'Updating\nproject list...' :
'Proje listesi güncelleniyor...' ,
'Recover' :
'Kurtar' ,
'Today' :
'Bugün' ,
'Yesterday' :
'Dün' ,
2015-07-26 20:01:45 +00:00
// costume editor
'Costume Editor' :
2019-01-24 10:57:24 +00:00
'Kostüm Editörü' ,
'Paint Editor' :
'Resim Editörü' ,
2015-07-26 20:01:45 +00:00
'click or drag crosshairs to move the rotation center' :
2019-01-24 10:57:24 +00:00
'dönme merkezini ayarlamak için resmi tı klayı n veya artı ikonunu sürükleyin' ,
'undo' :
'geri al' ,
'Vector' :
'Vektör' ,
'Paintbrush tool\n(free draw)' :
'Fı rça (serbest çizme)' ,
'Stroked Rectangle\n(Shift: square)' :
'Konturlu Dikdörtgen (Shift: kare)' ,
'Stroked Ellipse\n(Shift: circle)' :
'Konturlu Elips\n(Shift: daire)' ,
'Eraser tool' :
'Silgi' ,
'Set the rotation center' :
'Dönme noktası nı ayarla' ,
'Line tool\n(Shift: vertical/horizontal)' :
'Çizgi\n(Shift: yatay/dikey)' ,
'Filled Rectangle\n(Shift: square)' :
'dolu Dikdörtgen\n(Shift: kare)' ,
'Filled Ellipse\n(Shift: circle)' :
'dolu Elips\n(Shift: daire)' ,
'Fill a region' :
'alanı seçilmiş renkle doldur' ,
'Pipette tool\n(pick a color anywhere)' :
'Pipet (herhangi bir yere tı klayı p oradaki rengi seçin)' ,
'Brush size' :
'Fı rça boyutu' ,
'Constrain proportions of shapes?\n(you can also hold shift)' :
'Şekillerin oranları nı sı nı rlama\n(Shift-Tuşu da yapar)' ,
'grow' :
'büyült' ,
'shrink' :
'ufalt' ,
'flip ↔' :
'yatay çevir ↔' ,
'flip ↕' :
'dikey çevir ↕' ,
'Vector Paint Editor' :
'Vektör Resim Editörü' ,
'Rectangle\n(shift: square)' :
'Dikdörtgen (Shift: kare)' ,
'Ellipse\n(shift: circle)' :
'Elips\n(Shift: daire)' ,
'Selection tool' :
'Seçme Aracı ' ,
'Line tool\n(shift: constrain to 45º)' :
'Çizgi\n(Shift: 45° dereceli ayarlar)' ,
'Closed brush\n(free draw)' :
'Kontoru kapanan dolu şekil\n(serbest çizme)' ,
'Paint a shape\n(shift: secondary color)' :
'alanı seçilmiş 1ci renkle doldur\n(Shift: 2ci renk)' ,
'Pipette tool\n(pick a color from anywhere\nshift: secondary color)' :
'Pipet\nherhangi bir yere tı klayı p oradaki\nrengi seçin (Shift: 2ci renk)' ,
'grow' :
'büyült' ,
'shrink' :
'küçült' ,
'flip \u2194' :
'yatay çevir \u2194' ,
'flip \u2195' :
'dikey çevir \u2195' ,
'Primary color Secondary color' :
'1ci Renk 2ci Renk' ,
'Top' :
'Üst' ,
'Bottom' :
'Alt' ,
'Up' :
'Yukarı ' ,
'Down' :
'Aşağı ' ,
// project notes
2015-07-26 20:01:45 +00:00
'Project Notes' :
'Proje Notları ' ,
// new project
'New Project' :
'Yeni proje' ,
'Replace the current project with a new one?' :
'Şu an ki projeyi yenisiyle değiştirelim mi?' ,
// save project
'Save Project As...' :
'Projeyi farklı kaydet...' ,
2019-01-24 10:57:24 +00:00
'Save Project' :
'Projeyi kaydet' ,
2015-07-26 20:01:45 +00:00
// export blocks
'Export blocks' :
'Blokları dı şarı aktar' ,
'Import blocks' :
'Blokları içeri aktar' ,
'this project doesn\'t have any\ncustom global blocks yet' :
2019-01-11 16:49:40 +00:00
'bu proje henüz herhangi bir özel genel blok içermiyor' ,
2015-07-26 20:01:45 +00:00
'select' :
'seç' ,
'none' :
'hiçbiri' ,
// variable dialog
'for all sprites' :
2019-01-24 10:57:24 +00:00
'tüm kuklalar için' ,
2015-07-26 20:01:45 +00:00
'for this sprite only' :
2019-01-24 10:57:24 +00:00
'sadece bu kukla için' ,
// variables refactoring
'rename only\nthis reporter' :
'yalnı z bu bildirenin adı nı değiştir' ,
'rename all...' :
'tümünün adı nı değiştir...' ,
'rename all blocks that\naccess this variable' :
'bu bloğu kullanan tüm blokları n adı nı değiştir' ,
2015-07-26 20:01:45 +00:00
// block dialog
'Change block' :
'Bloğu değiştir' ,
'Command' :
'Komut' ,
'Reporter' :
2019-01-11 16:49:40 +00:00
'Bildiren' ,
2015-07-26 20:01:45 +00:00
'Predicate' :
2019-01-11 16:49:40 +00:00
'Karşı laştı rma' ,
2015-07-26 20:01:45 +00:00
// block editor
'Block Editor' :
'Blok Editörü' ,
2019-01-24 10:57:24 +00:00
'Method Editor' :
'Metod Editörü' ,
2015-07-26 20:01:45 +00:00
'Apply' :
'Uygula' ,
// block deletion dialog
'Delete Custom Block' :
2019-01-24 10:57:24 +00:00
'Özel Blok Tanı mları nı Sil' ,
2015-07-26 20:01:45 +00:00
'block deletion dialog text' :
2019-01-24 10:57:24 +00:00
'Blok tanı mları hakikaten silinsin mi?' ,
2015-07-26 20:01:45 +00:00
// input dialog
'Create input name' :
2019-01-24 10:57:24 +00:00
'Girdi adı oluştur' ,
2015-07-26 20:01:45 +00:00
'Edit input name' :
2019-01-24 10:57:24 +00:00
'Girdi adı nı düzenle' ,
2015-07-26 20:01:45 +00:00
'Edit label fragment' :
'Etiketi düzenle' ,
'Title text' :
'Başlı k' ,
'Input name' :
'Girdi Adı ' ,
'Delete' :
'Sil' ,
'Object' :
2019-01-11 16:49:40 +00:00
'Nesne' ,
2015-07-26 20:01:45 +00:00
'Number' :
'Sayı ' ,
'Text' :
'Metin' ,
'List' :
'Liste' ,
'Any type' :
'Herhangi bir tip' ,
'Boolean (T/F)' :
'Mantı ksal (D/Y)' ,
'Command\n(inline)' :
2019-01-24 10:57:24 +00:00
'Komut\n(satı riçi)' ,
2015-07-26 20:01:45 +00:00
'Command\n(C-shape)' :
2019-01-24 10:57:24 +00:00
'Komut\n(C-şeklinde)' ,
2015-07-26 20:01:45 +00:00
'Any\n(unevaluated)' :
'Herhangi\n(değerlendirilmemiş)' ,
'Boolean\n(unevaluated)' :
'Mantı ksal\n(değerlendirilmemiş)' ,
'Single input.' :
'Tek girdi.' ,
'Default Value:' :
'Varsayı lan değer:' ,
'Multiple inputs (value is list of inputs)' :
'Çoklu girdi (liste olarak)' ,
'Upvar - make internal variable visible to caller' :
'İç değişkeni çağı rı cı ya görünür kı l' ,
// About Snap
'About Snap' :
'Snap hakkı nda' ,
'Back...' :
'Geriye...' ,
'License...' :
'Lisans...' ,
'Modules...' :
2019-01-11 16:49:40 +00:00
'Modüller...' ,
2015-07-26 20:01:45 +00:00
'Credits...' :
'Katkı da bulunanlar...' ,
'Translators...' :
'Çevirmenler...' ,
'License' :
'Lisans' ,
'current module versions:' :
'Şu anki versiyonlar' ,
'Contributors' :
'Katkı da bulunanlar' ,
'Translations' :
'Çeviriler' ,
// variable watchers
'normal' :
'normal' ,
'large' :
2019-01-24 10:57:24 +00:00
'büyük' ,
2015-07-26 20:01:45 +00:00
'slider' :
'sürgü' ,
'slider min...' :
'sürgü en düşük...' ,
'slider max...' :
'sürgü en yüksek...' ,
'import...' :
'içeri aktar...' ,
'Slider minimum value' :
'Sürgünün en düşük değeri' ,
2019-01-24 10:57:24 +00:00
'Slider maximum value' :
2015-07-26 20:01:45 +00:00
'Sürgünün en yüksek değeri' ,
// list watchers
'length: ' :
'uzunluk: ' ,
2019-01-11 16:49:40 +00:00
// comments
2015-07-26 20:01:45 +00:00
'add comment here...' :
2019-01-11 16:49:40 +00:00
'... buraya yorum ekle' ,
2019-01-24 10:57:24 +00:00
'comment pic...' :
'Yorum resmi' ,
'open a new window\nwith a picture of this comment' :
'Bu yorumun resmini içeren\nyeni bir pencere aç' ,
2015-07-26 20:01:45 +00:00
// drow downs
// directions
'(90) right' :
'(90) sağ' ,
'(-90) left' :
'(-90) sol' ,
'(0) up' :
'(0) yukarı ' ,
'(180) down' :
'(180) aşağı ' ,
2019-01-24 10:57:24 +00:00
'random' :
'rasgele' ,
'random position' :
'rasgele konuma' ,
2015-07-26 20:01:45 +00:00
// collision detection
'mouse-pointer' :
2019-01-24 10:57:24 +00:00
'fare-imlecine' ,
'edge' :
'kenara' ,
2015-07-26 20:01:45 +00:00
'pen trails' :
2019-01-24 10:57:24 +00:00
'kalem izlerine' ,
'center' :
'orta noktaya' ,
2015-07-26 20:01:45 +00:00
// costumes
'Turtle' :
'Kaplumbağa' ,
'Empty' :
'Boş' ,
2019-01-24 10:57:24 +00:00
'Paint a new costume' :
'Yeni bir kostüm yap' ,
'Import a new costume from your webcam' :
'Web kamerası ndan yeni bir kostüm aktar' ,
'Please make sure your web browser is up to date\nand your camera is properly configured. \n\nSome browsers also require you to access Snap!\nthrough HTTPS to use the camera.\n\nPlase replace the "http://" part of the address\nin your browser by "https://" and try again.' :
'Lütfen web tarayı cı nı zı n güncel olduğundan ve\nkameranı zı n uygun şekilde yapı landı rı ldı ğı ndan\nemin olun. Bazı tarayı cı lar ayrı ca Snap! Kamerayı \nkullanmak için HTTPS öngörürler. Lütfen tarayı cı nı zı n\nadresinin "http: //" bölümünü "https: //" ile\ndeğiştirin ve tekrar deneyin.' ,
'Camera' :
'Kamera' ,
// sounds
'Record a new sound' :
'Yeni bir ses kaydedin' ,
2015-07-26 20:01:45 +00:00
// graphical effects
2019-01-24 10:57:24 +00:00
'color' :
'renk' ,
'hue' :
'Renk tonu' ,
'fisheye' :
'balı k gözü' ,
'whirl' :
'fı rı ldat' ,
'pixelate' :
'pikselle' ,
'mosaic' :
'mosayik' ,
'saturation' :
'doygunluk' ,
2015-07-26 20:01:45 +00:00
'brightness' :
'parlaklı k' ,
2019-01-24 10:57:24 +00:00
'transparency' :
'şeffaflı k' ,
2015-07-26 20:01:45 +00:00
'ghost' :
2019-01-24 10:57:24 +00:00
'şeffaflı k' ,
2015-07-26 20:01:45 +00:00
'negative' :
'negatif' ,
'comic' :
2019-01-24 10:57:24 +00:00
'Moire-hareli' ,
2015-07-26 20:01:45 +00:00
'confetti' :
'konfeti' ,
// keys
'space' :
'boşluk' ,
'up arrow' :
'yukarı ok' ,
'down arrow' :
'aşağı ok' ,
'right arrow' :
'sağ ok' ,
2019-01-24 10:57:24 +00:00
'left arrow' :
'sol ok' ,
'any key' :
'herhangi bir tuş' ,
2015-07-26 20:01:45 +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...' :
'yeni...' ,
// math functions
'abs' :
2019-01-24 10:57:24 +00:00
'mutlakdeğer' ,
'ceiling' :
'yukarı yuvarla' ,
2015-07-26 20:01:45 +00:00
'floor' :
2019-01-24 10:57:24 +00:00
'aşağı yuvarla' ,
2015-07-26 20:01:45 +00:00
'sqrt' :
2019-01-24 10:57:24 +00:00
'karekök' ,
2015-07-26 20:01:45 +00:00
'sin' :
'sin' ,
'cos' :
'cos' ,
'tan' :
'tan' ,
'asin' :
'asin' ,
'acos' :
'acos' ,
'atan' :
'atan' ,
'ln' :
'ln' ,
'e^' :
'e^' ,
2019-01-24 10:57:24 +00:00
// Boolean expressions keyboard entry
'not' :
'değil' ,
2015-07-26 20:01:45 +00:00
// delimiters
'letter' :
'harf' ,
'whitespace' :
2019-01-24 10:57:24 +00:00
'harf olmayan' ,
2015-07-26 20:01:45 +00:00
'line' :
2019-01-11 16:49:40 +00:00
'satı r' ,
2015-07-26 20:01:45 +00:00
'tab' :
'sekme' ,
'cr' :
2019-01-11 16:49:40 +00:00
'satı r başı ' ,
2015-07-26 20:01:45 +00:00
// data types
'number' :
'sayı ' ,
'text' :
'metin' ,
'Boolean' :
2019-01-24 10:57:24 +00:00
'Mantı ksal' ,
2015-07-26 20:01:45 +00:00
'list' :
2019-01-24 10:57:24 +00:00
'liste' ,
2015-07-26 20:01:45 +00:00
'command' :
'komut' ,
'reporter' :
2019-01-11 16:49:40 +00:00
'bildiren' ,
2015-07-26 20:01:45 +00:00
'predicate' :
2019-01-11 16:49:40 +00:00
'karşı laştı rma' ,
2019-01-24 10:57:24 +00:00
'sprite' :
'kukla' ,
2015-07-26 20:01:45 +00:00
// list indices
'last' :
'son' ,
'any' :
2018-01-16 11:51:12 +00:00
'herhangi' ,
2019-01-24 10:57:24 +00:00
// attributes
'my' :
'benim' ,
'neighbors' :
'yakı nı mdakiler' ,
'self' :
'kendim' ,
'other sprites' :
'öteki kuklalar' ,
'parts' :
'parçaları m' ,
'anchor' :
'bağlı olduğum' ,
'parent' :
'üst öğem' ,
'children' :
'alt öğem' ,
'clones' :
'klonları m' ,
'other clones' :
'öteki klonlar' ,
'dangling?' :
'serbest dönebilmem?' ,
'rotation x' :
'dönme x' ,
'rotation y' :
'dönme y' ,
'center x' :
'merkez x' ,
'center y' :
'merkez y' ,
'name' :
'adı m' ,
'stage' :
'sahnem' ,
'costumes' :
'kostümlerim' ,
'sounds' :
'seslerim' ,
'scripts' :
'betiklerim' ,
// inheritance
'inherited' :
'kalı tsal' ,
'check to inherit\nfrom' :
'kalı t almak için seçin' ,
'uncheck to\ndisinherit' :
'kalı t almamak için\nişareti kaldı rı n'
2015-07-26 20:01:45 +00:00
} ;