Untuk mengonversi file .strings
menjadi file .strings.json
:
- Jika Anda menggunakan versi Looker sebelum 7.12, nonaktifkan fitur lama File .strings lama untuk pelokalan.
- Buat file
.strings.json
baru untuk project Anda dengan mengklik ikon + di kanan atas daftar file project, lalu pilih Create Locale Strings File. - Beri nama file
.strings.json
baru Anda. Judul file.strings
harus cocok dengan kode lokalitas yang ditetapkan untuk pengguna atau grup yang menggunakan lokalitas tersebut, dan judul file lokalitas default harus cocok dengan nilai untukdefault_locale
di file manifes project Anda. - Cuplikan yang muncul di file
.strings.json
baru memberikan contoh pemformatan JSON. Hapus contoh ini dan ganti dengan sepasang kurung kurawal:{}
- Salin pasangan nilai kunci dari file
.strings
lama dan tempelkan di dalam tanda kurung kurawal. - Ganti semua tanda sama dengan dengan titik dua.
- Hapus komentar apa pun; atau format ulang sebagai komentar individual atau sebagai array komentar, seperti yang diilustrasikan di bawah.
- Ganti semua titik koma dengan koma.
Pemformatan .strings.json
standar dari pasangan nilai kunci terlihat seperti ini:
{ "flight_info" : "Flight Info", "id" : "Identifier", "airline" : "Air Carrier" }
Untuk memformat komentar, Anda dapat menggunakan format berikut:
{ " My Comment": { "my_comment_array": [ "The name of this file should be the associated locale code followed by '.strings.json'", "There is one .strings.json file per locale.", "Define your translated strings one key at a time", "Keys can be any string; choose whatever scheme helps you stay organized", "Then, set your Lookml label and description parameters to the desired key values.", "To choose this file as the master key list and as the one to validate against", "set its locale code ('test') as the default_locale in the manifest file" ], "value": "Translation for My Comment" }, "My Key": { "value": "Translation for My Key", "comment": "Define your translated strings with a comment or an array of comments" } }