Skip to content

Commit

Permalink
chore 36c922f
Browse files Browse the repository at this point in the history
  • Loading branch information
noridev committed Oct 5, 2024
1 parent c773392 commit 1fd55cc
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions locales/en-US.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
_lang_: "English"
widgets: "Widgets"
postNote: "Post note"
bottomNavbar: "Bottom navigation bar"
scheduledNoteDelete: "Schedule note deletion"
Expand Down
4 changes: 4 additions & 0 deletions locales/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ export interface Locale extends ILocale {
* 日本語
*/
"_lang_": string;
/**
* ウィジェット
*/
"widgets": string;
/**
* ノートを作成
*/
Expand Down
1 change: 1 addition & 0 deletions locales/ja-JP.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
_lang_: "日本語"

widgets: "ウィジェット"
postNote: "ノートを作成"
bottomNavbar: "下のナビゲーションバー"
scheduledNoteDelete: "ノートの削除を予約"
Expand Down
1 change: 1 addition & 0 deletions locales/ko-KR.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
---
_lang_: "한국어"
widgets: "위젯"
postNote: "노트 작성"
bottomNavbar: "하단 내비게이션 바"
scheduledNoteDelete: "노트 삭제 예약"
Expand Down
2 changes: 1 addition & 1 deletion packages/frontend/src/pages/settings/navbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ SPDX-License-Identifier: AGPL-3.0-only
<MkSwitch v-model="showSearchButtonInNavbar"><i class="ti ti-search"></i> {{ i18n.ts.search }}</MkSwitch>
<MkSwitch v-model="showNotificationButtonInNavbar"><i class="ti ti-bell"></i> {{ i18n.ts.notifications }}</MkSwitch>
<MkSwitch v-model="showMessageButtonInNavbar"><i class="ti ti-messages"></i> {{ i18n.ts.messaging }}</MkSwitch>
<MkSwitch v-model="showWidgetButtonInNavbar"><i class="ti ti-apps"></i> {{ i18n.ts._deck._columns.widgets }}</MkSwitch>
<MkSwitch v-model="showWidgetButtonInNavbar"><i class="ti ti-apps"></i> {{ i18n.ts.widgets }}</MkSwitch>
<MkSwitch v-model="showPostButtonInNavbar"><i class="ti ti-pencil"></i> {{ i18n.ts.postNote }}</MkSwitch>
</div>
<div class="_buttons" style="margin-top: 20px;">
Expand Down

0 comments on commit 1fd55cc

Please sign in to comment.