Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

📜 Fix Weblate merge errors #6198

Merged
merged 3 commits into from
Feb 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
68 changes: 1 addition & 67 deletions content/keywords/lt.yaml
Original file line number Diff line number Diff line change
@@ -1,67 +1 @@
add: pridėti
ask: paklausti
and: ir
at: adresu
brown: rudas
call: iškviesti
clear: išvalyti
color: spalva
comma: ','
d1: '1'
d2: '2'
d3: '3'
d4: '4'
d6: '6'
def: apibrėžti
define: apibrėžti
echo: aidas
elif: kitaip jei
else: kitaip
in: viduje
input: įvestis
left: kairė
length: ilgis
or: arba
orange: oranžinė
play: paleisti
pressed: paspaustas
purple: violetinė
quote: "'"
random: atsitiktinis
range: intervalas
red: raudona
remove: pašalinti
repeat: pakartoti
return: grąžinti
sleep: miegoti
step: žingsnis
times: dauginti
to: į
to_list: į sąraša
'true': tiesa
'True': Tiesa
turn: sukti
while: kol
white: balta
d7: '7'
is: yra
green: žalia
black: juodas
blue: mėlynas
gray: pilka
d0: '0'
'false': melas
d5: '5'
d8: '8'
d9: '9'
'False': Melas
not_in: ne viduje
from: iš
yellow: geltona
for: kartoti
forward: toliau
if: jei
with: su
pink: rožinė
print: spausdinti
right: dešinė
{}
6 changes: 5 additions & 1 deletion content/pages/kab.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,12 @@ teacher-guide:
solution_text: Kkes isekkilen imeqqranen.
title: Inelmaden sseqdacen asekkil ameqqran mi ara ttarun tiludna
- title: Inelmaden sseqdacen echo war steqsi
example:
error_code: '{echo} Isem-ik'
- {}
- {}
- example:
error_code: "{forward} 300\n{turn} 90"
solution_code: "{forward} 100\n{turn} 90"
- example:
solution_code: '{welleh} -100'
level: '1'
Expand Down
108 changes: 54 additions & 54 deletions grammars/keywords-lt.lark
Original file line number Diff line number Diff line change
@@ -1,54 +1,54 @@
_DEFINE: ("apibrėžti" | "define") _SPACE?
_CALL: ("iškviesti" | "call") _SPACE?
_WITH: ("su" | "with") _SPACE?
_DEF: ("apibrėžti" | "def") _SPACE?
_RETURN: ("grąžinti" | "return") _SPACE?
_PRINT: ("spausdinti" | "print") _SPACE?
_PLAY: ("paleisti" | "play") _SPACE
_ASK: ("paklausti" | "ask")
_ECHO: ("aidas" | "echo") _SPACE?
_FORWARD: ("toliau" | "forward") _SPACE?
_TURN: ("sukti" | "turn") _SPACE?
left: ("kairė" | "left") _SPACE?
right: ("dešinė" | "right") _SPACE?
black: ("juodas" | "black") _SPACE?
blue: ("mėlynas" | "blue") _SPACE?
brown: ("rudas" | "brown") _SPACE?
gray: ("pilka" | "gray") _SPACE?
green: ("žalia" | "green") _SPACE?
orange: ("oranžinė" | "orange") _SPACE?
pink: ("rožinė" | "pink") _SPACE?
purple: ("violetinė" | "purple") _SPACE?
red: ("raudona" | "red") _SPACE?
white: ("balta" | "white") _SPACE?
yellow: ("geltona" | "yellow") _SPACE?
_IS: _SPACE ("yra" | "is") _SPACE
_STANDALONE_IS: ("yra" | "is")
_SLEEP: ("miegoti" | "sleep") _SPACE?
_ADD_LIST: ("pridėti" | "add") _SPACE
_TO_LIST: _SPACE? ("į sąraša" | "to")
_REMOVE: ("pašalinti" | "remove") _SPACE
_FROM: _SPACE? ("" | "from")
_AT: _SPACE ("adresu" | "at") _SPACE
random: ("atsitiktinis" | "random") _SPACE?
_IN: _SPACE ("viduje" | "in") _SPACE
_NOT_IN: _SPACE ("ne viduje" | "not in") _SPACE
_IF: ("jei" | "if") _SPACE
_ELSE: "kitaip" | "else"
_AND: _SPACE? ("ir" | "and") _SPACE
_REPEAT: ("pakartoti" | "repeat") _SPACE
_TIMES: _SPACE ("dauginti" | "times")
_FOR: ("kartoti" | "for") _SPACE
_RANGE: ("intervalas" | "range") _SPACE?
_TO: _SPACE ("į" | "to") _SPACE
_STEP: "žingsnis" | "step"
_ELIF: _SPACE? ("kitaip jei" | "elif") _SPACE
_INPUT: ("įvestis" | "input")
_OR: _SPACE? ("arba" | "or") _SPACE
_WHILE: ("kol" | "while") _SPACE
_LENGTH: "ilgis" | "length"
_COLOR : ("spalva" | "color") _SPACE?
_PRESSED: ("paspaustas" | "pressed") _SPACE?
clear: ("išvalyti" | "clear") _SPACE?
TRUE: ("tiesa" | "Tiesa" | "true" | "True") _SPACE?
FALSE: ("melas" | "Melas" | "false" | "False") _SPACE?
_DEFINE: ("define" | "define") _SPACE?
_CALL: ("call" | "call") _SPACE?
_WITH: ("with" | "with") _SPACE?
_DEF: ("def" | "def") _SPACE?
_RETURN: ("return" | "return") _SPACE?
_PRINT: ("print" | "print") _SPACE?
_PLAY: ("play" | "play") _SPACE
_ASK: ("ask" | "ask")
_ECHO: ("echo" | "echo") _SPACE?
_FORWARD: ("forward" | "forward") _SPACE?
_TURN: ("turn" | "turn") _SPACE?
left: ("left" | "left") _SPACE?
right: ("right" | "right") _SPACE?
black: ("black" | "black") _SPACE?
blue: ("blue" | "blue") _SPACE?
brown: ("brown" | "brown") _SPACE?
gray: ("gray" | "gray") _SPACE?
green: ("green" | "green") _SPACE?
orange: ("orange" | "orange") _SPACE?
pink: ("pink" | "pink") _SPACE?
purple: ("purple" | "purple") _SPACE?
red: ("red" | "red") _SPACE?
white: ("white" | "white") _SPACE?
yellow: ("yellow" | "yellow") _SPACE?
_IS: _SPACE ("is" | "is") _SPACE
_STANDALONE_IS: ("is" | "is")
_SLEEP: ("sleep" | "sleep") _SPACE?
_ADD_LIST: ("add" | "add") _SPACE
_TO_LIST: _SPACE? ("to" | "to")
_REMOVE: ("remove" | "remove") _SPACE
_FROM: _SPACE? ("from" | "from")
_AT: _SPACE ("at" | "at") _SPACE
random: ("random" | "random") _SPACE?
_IN: _SPACE ("in" | "in") _SPACE
_NOT_IN: _SPACE ("not in" | "not in") _SPACE
_IF: ("if" | "if") _SPACE
_ELSE: "else" | "else"
_AND: _SPACE? ("and" | "and") _SPACE
_REPEAT: ("repeat" | "repeat") _SPACE
_TIMES: _SPACE ("times" | "times")
_FOR: ("for" | "for") _SPACE
_RANGE: ("range" | "range") _SPACE?
_TO: _SPACE ("to" | "to") _SPACE
_STEP: "step" | "step"
_ELIF: _SPACE? ("elif" | "elif") _SPACE
_INPUT: ("input" | "input")
_OR: _SPACE? ("or" | "or") _SPACE
_WHILE: ("while" | "while") _SPACE
_LENGTH: "length" | "length"
_COLOR : ("color" | "color") _SPACE?
_PRESSED: ("pressed" | "pressed") _SPACE?
clear: ("clear" | "clear") _SPACE?
TRUE: ("true" | "True" | "true" | "True") _SPACE?
FALSE: ("false" | "False" | "false" | "False") _SPACE?
110 changes: 55 additions & 55 deletions highlighting/highlighting-trad.json
Original file line number Diff line number Diff line change
Expand Up @@ -2065,62 +2065,62 @@
"DIGIT": "0123456789"
},
"lt": {
"False": "Melas|False",
"True": "Tiesa|True",
"add": "pridėti|add",
"and": "ir|and",
"ask": "paklausti|ask",
"at": "adresu|at",
"black": "juodas|black",
"blue": "mėlynas|blue",
"brown": "rudas|brown",
"call": "iškviesti|call",
"clear": "išvalyti|clear",
"color": "spalva|color",
"False": "False",
"True": "True",
"add": "add",
"and": "and",
"ask": "ask",
"at": "at",
"black": "black",
"blue": "blue",
"brown": "brown",
"call": "call",
"clear": "clear",
"color": "color",
"comma": ",",
"def": "apibrėžti|def",
"define": "apibrėžti|define",
"echo": "aidas|echo",
"elif": "kitaip jei|elif",
"else": "kitaip|else",
"false": "melas|false",
"for": "kartoti|for",
"forward": "toliau|forward",
"from": "iš|from",
"gray": "pilka|gray",
"green": "žalia|green",
"if": "jei|if",
"in": "viduje|in",
"input": "įvestis|input",
"is": "yra|is",
"left": "kairė|left",
"length": "ilgis|length",
"not_in": "ne viduje|not in",
"or": "arba|or",
"orange": "oranžinė|orange",
"pink": "rožinė|pink",
"play": "paleisti|play",
"pressed": "paspaustas|pressed",
"print": "spausdinti|print",
"purple": "violetinė|purple",
"random": "atsitiktinis|random",
"range": "intervalas|range",
"red": "raudona|red",
"remove": "pašalinti|remove",
"repeat": "pakartoti|repeat",
"return": "grąžinti|return",
"right": "dešinė|right",
"sleep": "miegoti|sleep",
"step": "žingsnis|step",
"times": "dauginti|times",
"to": "į|to",
"to_list": "į sąraša|to",
"true": "tiesa|true",
"turn": "sukti|turn",
"while": "kol|while",
"white": "balta|white",
"with": "su|with",
"yellow": "geltona|yellow",
"def": "def",
"define": "define",
"echo": "echo",
"elif": "elif",
"else": "else",
"false": "false",
"for": "for",
"forward": "forward",
"from": "from",
"gray": "gray",
"green": "green",
"if": "if",
"in": "in",
"input": "input",
"is": "is",
"left": "left",
"length": "length",
"not_in": "not in",
"or": "or",
"orange": "orange",
"pink": "pink",
"play": "play",
"pressed": "pressed",
"print": "print",
"purple": "purple",
"random": "random",
"range": "range",
"red": "red",
"remove": "remove",
"repeat": "repeat",
"return": "return",
"right": "right",
"sleep": "sleep",
"step": "step",
"times": "times",
"to": "to",
"to_list": "to",
"true": "true",
"turn": "turn",
"while": "while",
"white": "white",
"with": "with",
"yellow": "yellow",
"DIGIT": "0123456789"
},
"mi": {
Expand Down
Loading
Loading