-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
16 changed files
with
162 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
{ | ||
"sourceLanguage" : "ja", | ||
"strings" : { | ||
"GitHub" : { | ||
|
||
}, | ||
"iOS Osushi" : { | ||
|
||
}, | ||
"iOS Osushi🍣" : { | ||
|
||
}, | ||
"MarkdownUI" : { | ||
|
||
}, | ||
"X" : { | ||
|
||
}, | ||
"お気に入り" : { | ||
|
||
}, | ||
"お気に入りボタン" : { | ||
|
||
}, | ||
"お気に入りボタンの説明" : { | ||
"extractionState" : "manual", | ||
"localizations" : { | ||
"ja" : { | ||
"stringUnit" : { | ||
"state" : "translated", | ||
"value" : "この記事をお気に入りすることができます🍣\nお気に入りした記事は下のタブから確認することができます!" | ||
} | ||
} | ||
} | ||
}, | ||
"お気に入りリストが空の場合のメッセージ" : { | ||
"localizations" : { | ||
"ja" : { | ||
"stringUnit" : { | ||
"state" : "translated", | ||
"value" : "お気に入りボタンをタップして追加してみよう🍣" | ||
} | ||
} | ||
} | ||
}, | ||
"お気に入り一覧" : { | ||
|
||
}, | ||
"コミュニティの説明" : { | ||
"localizations" : { | ||
"ja" : { | ||
"stringUnit" : { | ||
"state" : "translated", | ||
"value" : "iOS Osushi は、iOS 関連のニュースを定期的に配信するサイトです。" | ||
} | ||
} | ||
} | ||
}, | ||
"バージョン" : { | ||
|
||
}, | ||
"ホーム" : { | ||
|
||
}, | ||
"ライセンス" : { | ||
|
||
}, | ||
"不明" : { | ||
|
||
}, | ||
"投稿一覧" : { | ||
|
||
}, | ||
"詳細情報" : { | ||
|
||
}, | ||
"運営" : { | ||
|
||
}, | ||
"運営メンバー" : { | ||
|
||
} | ||
}, | ||
"version" : "1.0" | ||
} |
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,36 @@ | ||
struct Strings { | ||
struct Home { | ||
static let home = String(localized: "ホーム") | ||
static let favorite = String(localized: "お気に入り") | ||
static let iosOsushi = String(localized: "iOS Osushi") | ||
} | ||
|
||
struct PostList { | ||
static let title = String(localized: "投稿一覧") | ||
static let tipsTitle = String(localized: "お気に入りボタン") | ||
static let tipsMessage = String(localized: "お気に入りボタンの説明") | ||
static let errorMessage = String(localized: "詳細情報") | ||
} | ||
|
||
|
||
struct FavoriteList { | ||
static let title = String(localized: "お気に入り一覧") | ||
static let emptyListTitle = String(localized: "お気に入り一覧") | ||
static let emptyListMessage = String(localized: "お気に入りリストが空の場合のメッセージ") | ||
} | ||
|
||
struct Infomation { | ||
static let title = String(localized: "iOS Osushi🍣") | ||
static let management = String(localized: "運営") | ||
static let license = String(localized: "ライセンス") | ||
static let version = String(localized: "バージョン") | ||
static let description = String(localized: "コミュニティの説明") | ||
static let staffListTitle = String(localized: "運営メンバー") | ||
static let x = String(localized: "X") | ||
static let gitHub = String(localized: "GitHub") | ||
} | ||
|
||
struct Other { | ||
static let unknown = String(localized: "不明") | ||
} | ||
} |
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
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 |
---|---|---|
|
@@ -36,7 +36,7 @@ SOFTWARE. | |
) | ||
) | ||
} | ||
.navigationTitle("ライセンス") | ||
.navigationTitle(Strings.Infomation.license) | ||
} | ||
} | ||
} | ||
|
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
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