Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Locale update #1156

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
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
4 changes: 2 additions & 2 deletions apps/phone/src/apps/twitter/components/tweet/TweetList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,15 +55,15 @@ export function TweetList({ tweets }: { tweets: FormattedTweet[] }) {
<div
style={{ padding: '2rem', display: 'flex', justifyContent: 'center', color: '#64A5FD' }}
>
Loading Tweets...
{t('LOADING_TWEETS')}
</div>
);
} else {
return (
<div
style={{ padding: '2rem', display: 'flex', justifyContent: 'center', color: '#64A5FD' }}
>
Nothing More To Load!
{t('NOTHING_TO_LOAD')}
</div>
);
}
Expand Down
2 changes: 2 additions & 0 deletions apps/phone/src/locale/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,8 @@
"TWEET_MESSAGE_PLACEHOLDER": "What's happening?",
"SEARCH_TWEETS_PLACEHOLDER": "Search by profile name or message",
"SEARCH_TWEETS": "Search for posts",
"LOADING_TWEETS": "Loading tweets...",
"NOTHING_TO_LOAD": "Nothing more to load!",
"TIME_JUST_NOW": "Just now",
"TIME_MINUTES": "m",
"TIME_HOURS": "h",
Expand Down
4 changes: 4 additions & 0 deletions apps/phone/src/locale/pl.json
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@
"FAILED_TO_TAKE_PHOTO": "Zdjęcie nie mogło zostać zapisane"
},
"CONTACTS": {
"MY_NUMBER": "Mój numer",
"NEARBY_SHARE": "Udostępnij pobliskim",
"FEEDBACK": {
"ADD_FAILED": "Nie udało się zapisać kontaktu!",
"ADD_SUCCESS": "Kontakt został pomyślnie zapisany!",
Expand Down Expand Up @@ -152,6 +154,8 @@
"TWEET_MESSAGE_PLACEHOLDER": "Co się dzieje?",
"SEARCH_TWEETS_PLACEHOLDER": "Wyszukaj według nazwy profilu lub wiadomości",
"SEARCH_TWEETS": "Wyszukiwanie postów",
"LOADING_TWEETS": "Wczytywanie...",
"NOTHING_TO_LOAD": "Brak wpisów do wczytania!",
"TIME_JUST_NOW": "Przed chwilą",
"TIME_MINUTES": "m",
"TIME_HOURS": "g",
Expand Down
Loading