Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ extension StringCatalog {
.replacingOccurrences(of: "'", with: "\\'")
.replacingOccurrences(of: "%@", with: "%1$s")
.replacingOccurrences(of: "%d", with: "%2$d")
.replacingOccurrences(of: "%%", with: "\\%") // https://stackoverflow.com/a/74864023
}

public func converted(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,24 @@
}
}
},
"concentrationPercent" : {
"comment" : "Label that represents the concentration of a solution in percent",
"extractionState" : "manual",
"localizations" : {
"de" : {
"stringUnit" : {
"state" : "needs_review",
"value" : "Konzentration in %%"
}
},
"en" : {
"stringUnit" : {
"state" : "translated",
"value" : "concentration in %%"
}
}
}
},
"counter.button" : {
"extractionState" : "manual",
"localizations" : {
Expand Down Expand Up @@ -466,4 +484,4 @@
}
},
"version" : "1.0"
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<string name="child_button">Child Tap</string>
<string name="collection_empty_message">Es sind keine Elemente anzuzeigen</string>
<string name="collection_item">Element %1$s</string>
<string name="concentrationPercent">Konzentration in \%</string>
<string name="counter_button">Tap</string>
<string name="counter_status_text">Anzahl der Child Taps: %2$d</string>
<string name="counter_website">Number42 Website</string>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<string name="child_button">Child Tap</string>
<string name="collection_empty_message">There are no items to show</string>
<string name="collection_item">Item %1$s</string>
<string name="concentrationPercent">concentration in \%</string>
<string name="counter_button">Tap</string>
<string name="counter_status_text">Number of Child Taps: %2$d</string>
<string name="counter_website">Number42 Website</string>
Expand Down