Skip to content

Commit 0a9aa58

Browse files
committed
Update translations
1 parent 89f2183 commit 0a9aa58

26 files changed

Lines changed: 232 additions & 42 deletions

readme.ja.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ Logseqのジャーナルをもっとスマートにするプラグインです
3939

4040
### 📌 詳細な機能説明
4141

42-
#### デイリージャーナルの詳細表示
42+
#### デイリージャーナルの補完
4343
- 日付タイトルの横に曜日や週番号を表示
4444
- 表示例:
4545
![画像](https://github.com/YU000jp/logseq-plugin-show-weekday-and-week-number/assets/111847207/f47b8948-5e7a-4e16-a5ae-6966672742b1)

src/settings/commonSettings.ts

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -90,59 +90,59 @@ export const commonSettings = (logseqSettings: LSPluginBaseInfo['settings'] | un
9090
title: t("Colour the letters Saturday and Sunday"),
9191
type: "boolean",
9292
default: true,
93-
description: t("Select your days of the weekends") + "🆕",
93+
description: t("Select your days of the weekends"),
9494
},
9595
{
9696
key: SettingKeys.userWeekendMon,
97-
title: t("Decide the colour of Monday.") + "🆕",
97+
title: t("Decide the colour of Monday."),
9898
type: "enum",
9999
enumChoices: ["", "blue", "red", "green"],
100100
default: "",
101101
description: "",
102102
},
103103
{
104104
key: SettingKeys.userWeekendTue,
105-
title: t("Decide the colour of Tuesday.") + "🆕",
105+
title: t("Decide the colour of Tuesday."),
106106
type: "enum",
107107
enumChoices: ["", "blue", "red", "green"],
108108
default: "",
109109
description: "",
110110
},
111111
{
112112
key: SettingKeys.userWeekendWed,
113-
title: t("Decide the colour of Wednesday.") + "🆕",
113+
title: t("Decide the colour of Wednesday."),
114114
type: "enum",
115115
enumChoices: ["", "blue", "red", "green"],
116116
default: "",
117117
description: "",
118118
},
119119
{
120120
key: SettingKeys.userWeekendThu,
121-
title: t("Decide the colour of Thursday.") + "🆕",
121+
title: t("Decide the colour of Thursday."),
122122
type: "enum",
123123
enumChoices: ["", "blue", "red", "green"],
124124
default: "",
125125
description: "",
126126
},
127127
{
128128
key: SettingKeys.userWeekendFri,
129-
title: t("Decide the colour of Friday.") + "🆕",
129+
title: t("Decide the colour of Friday."),
130130
type: "enum",
131131
enumChoices: ["", "blue", "red", "green"],
132132
default: "",
133133
description: "",
134134
},
135135
{
136136
key: SettingKeys.userWeekendSat,
137-
title: t("Decide the colour of Saturday.") + "🆕",
137+
title: t("Decide the colour of Saturday."),
138138
type: "enum",
139139
enumChoices: ["blue", "", "red", "green"],
140140
default: "blue",
141141
description: "",
142142
},
143143
{
144144
key: SettingKeys.userWeekendSun,
145-
title: t("Decide the colour of Sunday.") + "🆕",
145+
title: t("Decide the colour of Sunday."),
146146
type: "enum",
147147
enumChoices: ["red", "", "blue", "green"],
148148
default: "red",
@@ -166,7 +166,7 @@ export const commonSettings = (logseqSettings: LSPluginBaseInfo['settings'] | un
166166
},
167167
{
168168
key: SettingKeys.userColorList,
169-
title: t("User color") + "🆕",
169+
title: t("User event"),
170170
type: "string",
171171
inputAs: "textarea",
172172
default: "",
@@ -185,6 +185,6 @@ export const commonSettings = (logseqSettings: LSPluginBaseInfo['settings'] | un
185185
type: "string",
186186
inputAs: "color",
187187
default: "#00BFFF",
188-
description: t("User color") + "🆕",
188+
description: t("User color"),
189189
},
190190
]

src/settings/dailyJournalSettings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ export const dailyJournalSettings = (logseqSettings: LSPluginBaseInfo['settings'
9595
{
9696
//20240721
9797
key: SettingKeys.booleanPrevNextLink,
98-
title: t("Show previous and next link") + "🆕",
98+
title: t("Show previous and next link"),
9999
type: "boolean" as const,
100100
default: true,
101101
description: t("Single journal page only"),

src/settings/journalBoundariesSettings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const journalBoundariesSettings = (logseqSettings: LSPluginBaseInfo['sett
5252
title: "",
5353
type: "boolean",
5454
default: false,
55-
description: t("Use on Monthly Journal") + "🆕",
55+
description: t("Use on Monthly Journal"),
5656
},
5757
// Quarterly/Yearly options removed: always off
5858
{

src/settings/leftCalendarSettings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const leftCalendarSettings = (
1111
const settings: SettingSchemaDesc[] = [
1212
{
1313
key: SettingKeys.heading003,
14-
title: `3. ${t("Left Calendar")}${t("(Journal Boundaries)")}🆙`,
14+
title: `3. ${t("Left Calendar")}${t("(Journal Boundaries)")}`,
1515
type: "heading",
1616
default: "",
1717
description: "",

src/settings/weeklyJournalSettings.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export const weeklyJournalSettings = (logseqSettings: LSPluginBaseInfo['settings
3737
{
3838
// Headline of each days
3939
key: SettingKeys.booleanWeeklyJournalHeadline,
40-
title: t("Enable [headline of each days]") + "🆕",
40+
title: t("Enable [headline of each days]"),
4141
type: "boolean",
4242
default: false,
4343
// その週のジャーナルにあるプロパティの値を取得して、日付ごとにヘッドラインを表示するクエリーを自動生成する。過去のWeekly Journalには適用されません。
@@ -46,7 +46,7 @@ export const weeklyJournalSettings = (logseqSettings: LSPluginBaseInfo['settings
4646
{
4747
// Headline of each days用 プロパティ名指定
4848
key: SettingKeys.weeklyJournalHeadlineProperty,
49-
title: t("headline of each days > Property name for headline of each days") + "🆕",
49+
title: t("headline of each days > Property name for headline of each days"),
5050
type: "string",
5151
default: "headline",
5252
// 各ジャーナルのブロックに、このプロパティ名を持つブロックを用意します。ジャーナルテンプレートに取り込むと便利です。変更すると、リネームがおこなわれます。
@@ -78,7 +78,7 @@ export const weeklyJournalSettings = (logseqSettings: LSPluginBaseInfo['settings
7878
},
7979
{
8080
key: SettingKeys.weekNumberOptions,
81-
title: t("Week number format options") + "🆕",
81+
title: t("Week number format options"),
8282
type: "enum",
8383
enumChoices: weekNumberFormat,
8484
default: "YYYY-Www",

src/settings/yearlyJournalSettings.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export const yearlyJournalSettings = (logseqSettings: LSPluginBaseInfo['settings
77
// Yearly Journal
88
{
99
key: SettingKeys.heading007,
10-
title: "7. " + t("Yearly Journal") + "🆕",
10+
title: "7. " + t("Yearly Journal"),
1111
type: "heading",
1212
default: "",
1313
description: "",

src/translations/af.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,5 +114,15 @@
114114
"Confirm": "Bevestig",
115115
"Cancel": "Kanselleer",
116116
"Page created successfully.": "Bladsy suksesvol geskep.",
117-
"Cancelled": "Gekanselleer"
117+
"Cancelled": "Gekanselleer",
118+
"Pick a color to highlight holidays. You can also use CSS variable names like '--highlight-bg-color' by editing the setting text.": "Kies 'n kleur om vakansiedae uit te lig. Jy kan ook CSS-veranderlike name soos '--highlight-bg-color' gebruik deur die instellingstekst te wysig.",
119+
"Decide the colour of Monday.": "Bepaal die kleur van Maandag.",
120+
"Decide the colour of Tuesday.": "Bepaal die kleur van Dinsdag.",
121+
"Decide the colour of Wednesday.": "Bepaal die kleur van Woensdag.",
122+
"Decide the colour of Thursday.": "Bepaal die kleur van Donderdag.",
123+
"Decide the colour of Friday.": "Bepaal die kleur van Vrydag.",
124+
"Decide the colour of Saturday.": "Bepaal die kleur van Saterdag.",
125+
"Decide the colour of Sunday.": "Bepaal die kleur van Sondag.",
126+
"User event": "Gebruiker gebeurtenis",
127+
"No alerts": "Geen waarskuwings"
118128
}

src/translations/de.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,5 +114,15 @@
114114
"Confirm": "Bestätigen",
115115
"Cancel": "Abbrechen",
116116
"Page created successfully.": "Seite erfolgreich erstellt.",
117-
"Cancelled": "Abgebrochen"
117+
"Cancelled": "Abgebrochen",
118+
"Pick a color to highlight holidays. You can also use CSS variable names like '--highlight-bg-color' by editing the setting text.": "Wählen Sie eine Farbe, um Feiertage hervorzuheben. Sie können auch CSS-Variablennamen wie '--highlight-bg-color' verwenden, indem Sie den Einstellungs-Text bearbeiten.",
119+
"Decide the colour of Monday.": "Legen Sie die Farbe für Montag fest.",
120+
"Decide the colour of Tuesday.": "Legen Sie die Farbe für Dienstag fest.",
121+
"Decide the colour of Wednesday.": "Legen Sie die Farbe für Mittwoch fest.",
122+
"Decide the colour of Thursday.": "Legen Sie die Farbe für Donnerstag fest.",
123+
"Decide the colour of Friday.": "Legen Sie die Farbe für Freitag fest.",
124+
"Decide the colour of Saturday.": "Legen Sie die Farbe für Samstag fest.",
125+
"Decide the colour of Sunday.": "Legen Sie die Farbe für Sonntag fest.",
126+
"User event": "Benutzerereignis",
127+
"No alerts": "Keine Warnungen"
118128
}

src/translations/es.json

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,5 +114,15 @@
114114
"Confirm": "Confirmar",
115115
"Cancel": "Cancelar",
116116
"Page created successfully.": "Página creada con éxito.",
117-
"Cancelled": "Cancelado"
118-
}
117+
"Cancelled": "Cancelado",
118+
"Pick a color to highlight holidays. You can also use CSS variable names like '--highlight-bg-color' by editing the setting text.": "Elija un color para resaltar los días festivos. También puede usar nombres de variables CSS como '--highlight-bg-color' editando el texto de la configuración.",
119+
"Decide the colour of Monday.": "Decida el color del lunes.",
120+
"Decide the colour of Tuesday.": "Decida el color del martes.",
121+
"Decide the colour of Wednesday.": "Decida el color del miércoles.",
122+
"Decide the colour of Thursday.": "Decida el color del jueves.",
123+
"Decide the colour of Friday.": "Decida el color del viernes.",
124+
"Decide the colour of Saturday.": "Decida el color del sábado.",
125+
"Decide the colour of Sunday.": "Decida el color del domingo.",
126+
"User event": "Evento de usuario",
127+
"No alerts": "Sin alertas"
128+
}

0 commit comments

Comments
 (0)