-
-
Notifications
You must be signed in to change notification settings - Fork 641
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(workflows): ensure similar formatting with pipeline (#2705)
- Loading branch information
Showing
7 changed files
with
39 additions
and
68 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,45 @@ | ||
import type { Translation } from '../../models/i18n/translation'; | ||
|
||
export const translation: Translation = { | ||
activate: "Aktifkan", | ||
activated: "Tema Ikon Material aktif.", | ||
activate: 'Aktifkan', | ||
activated: 'Tema Ikon Material aktif.', | ||
iconPacks: { | ||
selectPack: "Pilih paket ikon", | ||
selectPack: 'Pilih paket ikon', | ||
description: "Pilih paket ikon '%0'", | ||
disabled: "Nonaktifkan paket ikon" | ||
disabled: 'Nonaktifkan paket ikon', | ||
}, | ||
folders: { | ||
toggleIcons: "Pilih tema folder", | ||
disabled: "Tidak ada ikon folder", | ||
toggleIcons: 'Pilih tema folder', | ||
disabled: 'Tidak ada ikon folder', | ||
theme: { | ||
description: "Pilih tema folder '%0'" | ||
} | ||
description: "Pilih tema folder '%0'", | ||
}, | ||
}, | ||
colorSelect: { | ||
color: "Pilih warna", | ||
hexCode: "Masukkan kode warna HEX", | ||
wrongHexCode: "Kode warna HEX tidak valid!" | ||
color: 'Pilih warna', | ||
hexCode: 'Masukkan kode warna HEX', | ||
wrongHexCode: 'Kode warna HEX tidak valid!', | ||
}, | ||
opacity: { | ||
inputPlaceholder: "Nilai opasitas (antara 0 dan 1)", | ||
wrongValue: "Silakan masukkan angka desimal antara 0 dan 1." | ||
inputPlaceholder: 'Nilai opasitas (antara 0 dan 1)', | ||
wrongValue: 'Silakan masukkan angka desimal antara 0 dan 1.', | ||
}, | ||
toggleSwitch: { | ||
on: "AKTIF", | ||
off: "NONAKTIF" | ||
on: 'AKTIF', | ||
off: 'NONAKTIF', | ||
}, | ||
explorerArrows: { | ||
toggle: "Alihkan panah folder di Explorer", | ||
enable: "Tampilkan panah folder di Explorer", | ||
disable: "Sembunyikan panah folder di Explorer" | ||
toggle: 'Alihkan panah folder di Explorer', | ||
enable: 'Tampilkan panah folder di Explorer', | ||
disable: 'Sembunyikan panah folder di Explorer', | ||
}, | ||
grayscale: { | ||
toggle: "Alihkan ikon grayscale", | ||
enable: "Aktifkan ikon grayscale", | ||
disable: "Nonaktifkan ikon grayscale" | ||
toggle: 'Alihkan ikon grayscale', | ||
enable: 'Aktifkan ikon grayscale', | ||
disable: 'Nonaktifkan ikon grayscale', | ||
}, | ||
saturation: { | ||
inputPlaceholder: "Nilai saturasi (antara 0 dan 1)", | ||
wrongValue: "Silakan masukkan angka desimal antara 0 dan 1." | ||
} | ||
inputPlaceholder: 'Nilai saturasi (antara 0 dan 1)', | ||
wrongValue: 'Silakan masukkan angka desimal antara 0 dan 1.', | ||
}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters