-
Notifications
You must be signed in to change notification settings - Fork 202
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
35 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
local Translations = { | ||
error = { | ||
to_far_from_door = 'ドアベルから離れすぎています', | ||
nobody_home = '家には誰もいません..', | ||
nobody_at_door = 'ドアの前には誰もいません...' | ||
}, | ||
success = { | ||
receive_apart = 'アパートを借りました', | ||
changed_apart = 'アパートを引っ越しました', | ||
}, | ||
info = { | ||
at_the_door = '誰かがドアの前にいます!', | ||
}, | ||
text = { | ||
options = '[E] アパートオプション', | ||
enter = 'アパートに入る', | ||
ring_doorbell = 'ドアベルを鳴らす', | ||
logout = 'このキャラクターからログアウトする', | ||
change_outfit = '衣装を変更する', | ||
open_stash = '隠し倉庫を開ける', | ||
move_here = 'ここに移動する', | ||
open_door = 'ドアを開ける', | ||
leave = 'アパートを出る', | ||
close_menu = '⬅ メニューを閉じる', | ||
tennants = '部屋', | ||
}, | ||
} | ||
|
||
if GetConvar('qb_locale', 'en') == 'ja' then | ||
Lang = Locale:new({ | ||
phrases = Translations, | ||
warnOnMissing = true, | ||
fallbackLang = Lang | ||
}) | ||
end |