Skip to content

Commit

Permalink
StartupDialog: fix two untranslated strings (#3293)
Browse files Browse the repository at this point in the history
Signed-off-by: Jared Van Bortel <[email protected]>
  • Loading branch information
cebtenzzre authored Dec 13, 2024
1 parent b7df4eb commit 03f7ca4
Show file tree
Hide file tree
Showing 9 changed files with 444 additions and 373 deletions.
1 change: 1 addition & 0 deletions gpt4all-chat/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
- Fix API server replying with incorrect token counts and stop reason after v3.5.0 ([#3256](https://github.com/nomic-ai/gpt4all/pull/3256))
- Fix API server remembering previous, unrelated conversations after v3.5.0 ([#3256](https://github.com/nomic-ai/gpt4all/pull/3256))
- Fix mishandling of default chat template and system message of cloned models in v3.5.0 ([#3262](https://github.com/nomic-ai/gpt4all/pull/3262))
- Fix untranslated text on the startup dialog ([#3293](https://github.com/nomic-ai/gpt4all/pull/3293))

## [3.5.1] - 2024-12-10

Expand Down
4 changes: 2 additions & 2 deletions gpt4all-chat/qml/StartupDialog.qml
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ model release that uses your data!")
anchors.right: parent.right
Label {
id: optInStatistics
text: "Opt-in to anonymous usage analytics used to improve GPT4All"
text: qsTr("Opt-in to anonymous usage analytics used to improve GPT4All")
Layout.row: 0
Layout.column: 0
color: theme.textColor
Expand Down Expand Up @@ -229,7 +229,7 @@ model release that uses your data!")

Label {
id: optInNetwork
text: "Opt-in to anonymous sharing of chats to the GPT4All Datalake"
text: qsTr("Opt-in to anonymous sharing of chats to the GPT4All Datalake")
Layout.row: 1
Layout.column: 0
color: theme.textColor
Expand Down
116 changes: 63 additions & 53 deletions gpt4all-chat/translations/gpt4all_en_US.ts

Large diffs are not rendered by default.

116 changes: 63 additions & 53 deletions gpt4all-chat/translations/gpt4all_es_MX.ts

Large diffs are not rendered by default.

116 changes: 63 additions & 53 deletions gpt4all-chat/translations/gpt4all_it_IT.ts

Large diffs are not rendered by default.

116 changes: 63 additions & 53 deletions gpt4all-chat/translations/gpt4all_pt_BR.ts

Large diffs are not rendered by default.

116 changes: 63 additions & 53 deletions gpt4all-chat/translations/gpt4all_ro_RO.ts

Large diffs are not rendered by default.

116 changes: 63 additions & 53 deletions gpt4all-chat/translations/gpt4all_zh_CN.ts

Large diffs are not rendered by default.

116 changes: 63 additions & 53 deletions gpt4all-chat/translations/gpt4all_zh_TW.ts

Large diffs are not rendered by default.

0 comments on commit 03f7ca4

Please sign in to comment.