chore: Update translation#372
Closed
caixr23 wants to merge 0 commit intolinuxdeepin:masterfrom
Closed
Conversation
Reviewer's GuideThis PR refreshes and standardizes all TS translation files by normalizing XML headers, completing many previously unfinished strings (including key UI labels and error messages), adding new translation entries for network validation errors, introducing new contexts for recently added UI items, and adding a Class diagram for translation file structure and new contextsclassDiagram
class TSFile {
+language: string
+contexts: Context[]
}
class Context {
+name: string
+messages: Message[]
}
class Message {
+source: string
+translation: string
+type: string
}
TSFile "1" -- "*" Context : contains
Context "1" -- "*" Message : contains
class NetAirplaneModeTipsItem {
<<Context>>
+Disable <a>Airplane Mode</a> first if you want to connect to a wireless network
}
class NetSystemProxyControlItem {
<<Context>>
+System Proxy
}
class NetWirelessMineItem {
<<Context>>
+My Networks
}
class NetWirelessOtherItem {
<<Context>>
+Other Networks
}
TSFile -- NetAirplaneModeTipsItem
TSFile -- NetSystemProxyControlItem
TSFile -- NetWirelessMineItem
TSFile -- NetWirelessOtherItem
Class diagram for new and updated translation messages for network validationclassDiagram
class SectionIPv4 {
<<Context>>
+Invalid netmask
+Invalid gateway
+Duplicate IP address
}
class SectionIPv6 {
<<Context>>
+Invalid netmask
+Invalid gateway
+Duplicate IP address
}
SectionIPv4 <|-- Message
SectionIPv6 <|-- Message
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: caixr23 The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Update translation
Summary by Sourcery
Update translation files across multiple languages
Enhancements:
Chores: