Export strings for translation

This commit is contained in:
2023-04-29 15:13:03 -04:00
committed by William Casarin
parent 45a78fa14f
commit 36364f4f70
3 changed files with 46 additions and 13 deletions

View File

@@ -201,6 +201,11 @@ Sentence composed of 2 variables to describe how many people are following a use
<target>Are you lost?</target> <target>Are you lost?</target>
<note>Text asking the user if they are lost in the app.</note> <note>Text asking the user if they are lost in the app.</note>
</trans-unit> </trans-unit>
<trans-unit id="Are you sure you want to delete all of your bookmarks?" xml:space="preserve">
<source>Are you sure you want to delete all of your bookmarks?</source>
<target>Are you sure you want to delete all of your bookmarks?</target>
<note>Alert for deleting all of the bookmarks.</note>
</trans-unit>
<trans-unit id="Are you sure you want to upload this image?" xml:space="preserve"> <trans-unit id="Are you sure you want to upload this image?" xml:space="preserve">
<source>Are you sure you want to upload this image?</source> <source>Are you sure you want to upload this image?</source>
<target>Are you sure you want to upload this image?</target> <target>Are you sure you want to upload this image?</target>
@@ -252,6 +257,7 @@ Sentence composed of 2 variables to describe how many people are following a use
Button to cancel out of posting a note. Button to cancel out of posting a note.
Button to cancel out of view adding user inputted relay. Button to cancel out of view adding user inputted relay.
Button to cancel the upload. Button to cancel the upload.
Cancel deleting bookmarks.
Cancel deleting the user. Cancel deleting the user.
Cancel out of logging out the user.</note> Cancel out of logging out the user.</note>
</trans-unit> </trans-unit>
@@ -293,7 +299,8 @@ Sentence composed of 2 variables to describe how many people are following a use
<trans-unit id="Continue" xml:space="preserve"> <trans-unit id="Continue" xml:space="preserve">
<source>Continue</source> <source>Continue</source>
<target>Continue</target> <target>Continue</target>
<note>Continue with deleting the user.</note> <note>Continue with bookmarks.
Continue with deleting the user.</note>
</trans-unit> </trans-unit>
<trans-unit id="Copied" xml:space="preserve"> <trans-unit id="Copied" xml:space="preserve">
<source>Copied</source> <source>Copied</source>
@@ -661,11 +668,6 @@ Sentence composed of 2 variables to describe how many people are following a use
<target>Like</target> <target>Like</target>
<note>Accessibility Label for Like button</note> <note>Accessibility Label for Like button</note>
</trans-unit> </trans-unit>
<trans-unit id="Liked by %@" xml:space="preserve">
<source>Liked by %@</source>
<target>Liked by %@</target>
<note>Liked by heading in local notification</note>
</trans-unit>
<trans-unit id="Likes" xml:space="preserve"> <trans-unit id="Likes" xml:space="preserve">
<source>Likes</source> <source>Likes</source>
<target>Likes</target> <target>Likes</target>
@@ -976,6 +978,11 @@ Button text to indicate that the zap type is a private zap.</note>
<target>Quote</target> <target>Quote</target>
<note>Button to compose a quoted note</note> <note>Button to compose a quoted note</note>
</trans-unit> </trans-unit>
<trans-unit id="Reacted by %@" xml:space="preserve">
<source>Reacted by %@</source>
<target>Reacted by %@</target>
<note>Reacted by heading in local notification</note>
</trans-unit>
<trans-unit id="Reactions" xml:space="preserve"> <trans-unit id="Reactions" xml:space="preserve">
<source>Reactions</source> <source>Reactions</source>
<target>Reactions</target> <target>Reactions</target>
@@ -1619,11 +1626,6 @@ YOU WILL NO LONGER BE ABLE TO LOG INTO DAMUS USING THIS ACCOUNT KEY.
<target>satoshi</target> <target>satoshi</target>
<note>Example username of Bitcoin creator(s), Satoshi Nakamoto.</note> <note>Example username of Bitcoin creator(s), Satoshi Nakamoto.</note>
</trans-unit> </trans-unit>
<trans-unit id="sats" xml:space="preserve">
<source>sats</source>
<target>sats</target>
<note>Shortened form of satoshi, display unit of measure where 1,000,000,000 satoshis is 1 Bitcoin. Used to indicate how many sats will be zapped to a note, configured through the custom zap view.</note>
</trans-unit>
<trans-unit id="self" xml:space="preserve"> <trans-unit id="self" xml:space="preserve">
<source>self</source> <source>self</source>
<target>self</target> <target>self</target>
@@ -1876,6 +1878,21 @@ YOU WILL NO LONGER BE ABLE TO LOG INTO DAMUS USING THIS ACCOUNT KEY.
<target>Reposts</target> <target>Reposts</target>
<note/> <note/>
</trans-unit> </trans-unit>
<trans-unit id="/sats:dict/NSStringLocalizedFormatKey:dict/:string" xml:space="preserve">
<source>%#@SATS@</source>
<target>%#@SATS@</target>
<note/>
</trans-unit>
<trans-unit id="/sats:dict/SATS:dict/one:dict/:string" xml:space="preserve">
<source>sat</source>
<target>sat</target>
<note/>
</trans-unit>
<trans-unit id="/sats:dict/SATS:dict/other:dict/:string" xml:space="preserve">
<source>sats</source>
<target>sats</target>
<note/>
</trans-unit>
<trans-unit id="/sats_count:dict/NSStringLocalizedFormatKey:dict/:string" xml:space="preserve"> <trans-unit id="/sats_count:dict/NSStringLocalizedFormatKey:dict/:string" xml:space="preserve">
<source>%1$#@SATS@</source> <source>%1$#@SATS@</source>
<target>%1$#@SATS@</target> <target>%1$#@SATS@</target>

View File

@@ -210,6 +210,22 @@
<string>Reposts</string> <string>Reposts</string>
</dict> </dict>
</dict> </dict>
<key>sats</key>
<dict>
<key>NSStringLocalizedFormatKey</key>
<string>%#@SATS@</string>
<key>SATS</key>
<dict>
<key>NSStringFormatSpecTypeKey</key>
<string>NSStringPluralRuleType</string>
<key>NSStringFormatValueTypeKey</key>
<string>d</string>
<key>one</key>
<string>sat</string>
<key>other</key>
<string>sats</string>
</dict>
</dict>
<key>sats_count</key> <key>sats_count</key>
<dict> <dict>
<key>NSStringLocalizedFormatKey</key> <key>NSStringLocalizedFormatKey</key>
@@ -253,9 +269,9 @@
<key>NSStringFormatValueTypeKey</key> <key>NSStringFormatValueTypeKey</key>
<string>@</string> <string>@</string>
<key>one</key> <key>one</key>
<string>You received %2$@ sat from %3$@: "%4$@"</string> <string>You received %2$@ sat from %3$@: &quot;%4$@&quot;</string>
<key>other</key> <key>other</key>
<string>You received %2$@ sats from %3$@: "%4$@"</string> <string>You received %2$@ sats from %3$@: &quot;%4$@&quot;</string>
</dict> </dict>
</dict> </dict>
<key>zapped_tagged_in_3</key> <key>zapped_tagged_in_3</key>