Skip to content

Commit 284ff46

Browse files
committed
#1859 i18n: add more app and webpage translation
Signed-off-by: Patrizio Bekerle <[email protected]>
1 parent e7e11f7 commit 284ff46

File tree

5 files changed

+81
-7
lines changed

5 files changed

+81
-7
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
- The gathering of note relations and drawing is stopped when another note is selected
99
- Added a **new editor color schema** *Simple* by @nobodyF34R
1010
(for [#3238](https://github.com/pbek/QOwnNotes/issues/3238))
11+
- Added more Spanish, Korean, Dutch translation (thank you, alejandromoc, venusgirl, stephanp)
1112

1213
## 25.3.0
1314
- There now is a new **note relations panel**, that shows links to other notes in a graph

src/languages/QOwnNotes_es.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3300,7 +3300,7 @@ Si la papelera está habilitada en su servidor ownCloud debería poder restaurar
33003300
</message>
33013301
<message>
33023302
<source>Note relations</source>
3303-
<translation type="unfinished">Note relations</translation>
3303+
<translation>Relaciones de la nota</translation>
33043304
</message>
33053305
<message>
33063306
<source>Log</source>
@@ -4094,7 +4094,7 @@ Si la papelera está habilitada en su servidor ownCloud debería poder restaurar
40944094
</message>
40954095
<message>
40964096
<source>Double-click to open note</source>
4097-
<translation type="unfinished">Double-click to open note</translation>
4097+
<translation>Doble clic para abrir la nota</translation>
40984098
</message>
40994099
</context>
41004100
<context>

src/languages/QOwnNotes_ko.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3273,7 +3273,7 @@ ownCloud 서버에서 휴지통을 사용할 수 있는 경우 휴지통을 복
32733273
</message>
32743274
<message>
32753275
<source>Note relations</source>
3276-
<translation type="unfinished">Note relations</translation>
3276+
<translation>노트 관계</translation>
32773277
</message>
32783278
<message>
32793279
<source>Log</source>
@@ -4057,7 +4057,7 @@ ownCloud 서버에서 휴지통을 사용할 수 있는 경우 휴지통을 복
40574057
</message>
40584058
<message>
40594059
<source>Double-click to open note</source>
4060-
<translation type="unfinished">Double-click to open note</translation>
4060+
<translation>노트를 열려면 두 번 클릭합니다</translation>
40614061
</message>
40624062
</context>
40634063
<context>

src/languages/QOwnNotes_nl.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -3301,7 +3301,7 @@ Als de prullenbak is ingeschakeld op de server van uw ownCloud moet je in staat
33013301
</message>
33023302
<message>
33033303
<source>Note relations</source>
3304-
<translation type="unfinished">Note relations</translation>
3304+
<translation>Notitierelaties</translation>
33053305
</message>
33063306
<message>
33073307
<source>Log</source>
@@ -4096,7 +4096,7 @@ Als de prullenbak is ingeschakeld op de server van uw ownCloud moet je in staat
40964096
</message>
40974097
<message>
40984098
<source>Double-click to open note</source>
4099-
<translation type="unfinished">Double-click to open note</translation>
4099+
<translation>Dubbelkliken om notitie te openen</translation>
41004100
</message>
41014101
</context>
41024102
<context>

webpage/src/ko/scripting/methods-and-objects.md

+74-1
Original file line numberDiff line numberDiff line change
@@ -1115,7 +1115,80 @@ var fileName = script.getSaveFileName("Please select HTML file to save", "output
11151115

11161116
### 예제
11171117
```js
1118-
// you have to define your registered variables so you can access them later
1118+
// 나중에 액세스하려면 등록된 변수를 정의해야 합니다
1119+
property string myString;
1120+
property string myStringSecret;
1121+
property bool myBoolean;
1122+
property string myText;
1123+
property int myInt;
1124+
property string myFile;
1125+
property string myDirectory;
1126+
property string mySelection;
1127+
1128+
// register your settings variables so the user can set them in the script settings
1129+
//
1130+
// unfortunately there is no QVariantHash in Qt, we only can use
1131+
// QVariantMap (that has no arbitrary ordering) or QVariantList (which at
1132+
// least can be ordered arbitrarily)
1133+
property variant settingsVariables: [
1134+
{
1135+
"identifier": "myString",
1136+
"name": "I am a line edit",
1137+
"description": "Please enter a valid string:",
1138+
"type": "string",
1139+
"default": "My default value",
1140+
},
1141+
{
1142+
"identifier": "myStringSecret",
1143+
"name": "I am a password field",
1144+
"description": "Please enter a valid string:",
1145+
"type": "string-secret",
1146+
},
1147+
{
1148+
"identifier": "myBoolean",
1149+
"name": "I am a checkbox",
1150+
"description": "Some description",
1151+
"text": "Check this checkbox",
1152+
"type": "boolean",
1153+
"default": true,
1154+
},
1155+
{
1156+
"identifier": "myText",
1157+
"name": "I am textbox",
1158+
"description": "Please enter your text:",
1159+
"type": "text",
1160+
"default": "This can be a really long text\nwith multiple lines.",
1161+
},
1162+
{
1163+
"identifier": "myInt",
1164+
"name": "I am a number selector",
1165+
"description": "Please enter a number:",
1166+
"type": "integer",
1167+
"default": 42,
1168+
},
1169+
{
1170+
"identifier": "myFile",
1171+
"name": "I am a file selector",
1172+
"description": "Please select the file:",
1173+
"type": "file",
1174+
"default": "pandoc",
1175+
},
1176+
{
1177+
"identifier": "myDirectory",
1178+
"name": "I am a directory selector",
1179+
"description": "Please select the directory:",
1180+
"type": "directory",
1181+
"default": "/home",
1182+
},
1183+
{
1184+
"identifier": "mySelection",
1185+
"name": "I am an item selector",
1186+
"description": "Please select an item:",
1187+
"type": "selection",
1188+
"default": "option2",
1189+
"items": {"option1": "Text for option 1", "option2": "Text for option 2", "option3": "Text for option 3"},
1190+
}
1191+
];
11191192
property string myString;
11201193
property string myStringSecret;
11211194
property bool myBoolean;

0 commit comments

Comments
 (0)