Skip to content

Commit 4ffd1b9

Browse files
committed
Merge remote-tracking branch 'upstream/develop' into a11y-attributes
2 parents a4c189a + a6dc97b commit 4ffd1b9

File tree

100 files changed

+3534
-168
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+3534
-168
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -131,3 +131,6 @@ env/**/**
131131
## Ruby ###
132132
vendor/
133133
.bundle/
134+
135+
## IntelliJ IDEA ##
136+
.idea

.ruby-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
3.0.3

Documentation/Setup.md

Lines changed: 8 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -12,36 +12,26 @@ Install the latest version of Xcode from the App Store or Apple Developer Downlo
1212
This guide may not suit your machine and actually setup procedure may change in the future. Please file the issue or Pull Request if there are any problems.
1313

1414
## CocoaPods
15-
The app use [CocoaPods]() and [Arkana](https://github.com/rogerluan/arkana). Ruby Gems are managed through Bundler. The M1 Mac needs virtual ruby env to workaround compatibility issues. Make sure you have [Rosetta](https://support.apple.com/en-us/HT211861) installed if you are using the M1 Mac.
16-
17-
#### Intel Mac
18-
19-
```zsh
20-
gem install bundler
21-
bundle install
22-
```
23-
24-
#### M1 Mac
15+
The app use [CocoaPods]() and [Arkana](https://github.com/rogerluan/arkana). Ruby Gems are managed through Bundler. Make sure you have [Rosetta](https://support.apple.com/en-us/HT211861) installed if you are using the M1 Mac.
2516

2617
```zsh
2718
# install the rbenv
2819
brew install rbenv
20+
21+
# configure the terminal
2922
which ruby
3023
# > /usr/bin/ruby
3124
echo 'eval "$(rbenv init -)"' >> ~/.zprofile
3225
source ~/.zprofile
3326
which ruby
3427
# > /Users/mainasuk/.rbenv/shims/ruby
3528

36-
# select ruby
37-
rbenv install --list
38-
# here we use the latest 3.0.x version
39-
rbenv install 3.0.3
40-
rbenv global 3.0.3
41-
ruby --version
42-
# > ruby 3.0.3p157 (2021-11-24 revision 3fb7d2cadc) [arm64-darwin21]
29+
# restart the terminal
30+
31+
# install ruby (we use the version defined in .ruby-version)
32+
rbenv install
4333

44-
gem install bundler
34+
# install gem dependencies
4535
bundle install
4636
```
4737

Localization/StringsConvertor/input/Base.lproj/app.json

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
"translated_from": "Translated from %s using %s",
187187
"unknown_language": "Unknown",
188188
"unknown_provider": "Unknown",
189-
"show_original": "Shown Original"
189+
"show_original": "Show Original"
190190
},
191191
"media": {
192192
"accessibility_label": "%s, attachment %d of %d",
@@ -485,6 +485,12 @@
485485
"toggle_content_warning": "Toggle Content Warning",
486486
"append_attachment_entry": "Add Attachment - %s",
487487
"select_visibility_entry": "Select Visibility - %s"
488+
},
489+
"language": {
490+
"title": "Post Language",
491+
"suggested": "Suggested",
492+
"recent": "Recent",
493+
"other": "Other Language…"
488494
}
489495
},
490496
"profile": {

Localization/app.json

Lines changed: 33 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
"translated_from": "Translated from %s using %s",
187187
"unknown_language": "Unknown",
188188
"unknown_provider": "Unknown",
189-
"show_original": "Shown Original"
189+
"show_original": "Show Original"
190190
},
191191
"media": {
192192
"accessibility_label": "%s, attachment %d of %d",
@@ -502,6 +502,12 @@
502502
"toggle_content_warning": "Toggle Content Warning",
503503
"append_attachment_entry": "Add Attachment - %s",
504504
"select_visibility_entry": "Select Visibility - %s"
505+
},
506+
"language": {
507+
"title": "Post Language",
508+
"suggested": "Suggested",
509+
"recent": "Recent",
510+
"other": "Other Language…"
505511
}
506512
},
507513
"profile": {
@@ -810,5 +816,31 @@
810816
"open_in": {
811817
"invalid_link_error": "This doesn't seem to be a valid Mastodon link."
812818
}
819+
},
820+
"widget": {
821+
"common": {
822+
"unsupported_widget_family": "Sorry but this Widget family is unsupported.",
823+
"user_not_logged_in": "Please open Mastodon to log in to an Account."
824+
},
825+
"followers_count": {
826+
"configuration_display_name": "Followers",
827+
"configuration_description": "Show number of followers.",
828+
"title": "FOLLOWERS",
829+
"followers_today": "%s followers today"
830+
},
831+
"multiple_followers": {
832+
"configuration_display_name": "Multiple followers",
833+
"configuration_description": "Show number of followers for multiple accounts.",
834+
"mock_user": {
835+
"display_name": "Another follower",
836+
"account_name": "another@follower.social"
837+
}
838+
},
839+
"latest_followers": {
840+
"configuration_display_name": "Latest followers",
841+
"configuration_description": "Show latest followers.",
842+
"title": "Latest followers",
843+
"last_update": "Last update: %s"
844+
}
813845
}
814846
}

0 commit comments

Comments
 (0)