Compare commits
31 Commits
Author | SHA1 | Date | |
---|---|---|---|
0b07178577 | |||
07e545079c | |||
95d64dc5e8 | |||
abe546dcda | |||
e6f367acaf | |||
a9b61853b9 | |||
5afc04a630 | |||
1da4cc2782 | |||
c5ebc89e4f | |||
dfc1719cce | |||
0812259470 | |||
e1476c5840 | |||
e30ea28e3f | |||
4a6d3aab7f | |||
8157146498 | |||
94d23888b1 | |||
737fe9bb4a | |||
0051ed2e73 | |||
e0595957e2 | |||
8d09ff7fdb | |||
04feb66b07 | |||
54b2ac7f24 | |||
12356a35fa | |||
12262304ac | |||
c58f97452e | |||
eb3872f7a6 | |||
9fa178d513 | |||
043b184065 | |||
10559bb894 | |||
d0000d66b2 | |||
b447ac738a |
35
.github/CONTRIBUTING.md
vendored
35
.github/CONTRIBUTING.md
vendored
@ -46,12 +46,33 @@ You can directly import this project into IntellIJ/Android Studio.
|
|||||||
|
|
||||||
You'll have to:
|
You'll have to:
|
||||||
|
|
||||||
- Configure Fabric, or [remove it](https://docs.fabric.io/android/fabric/settings/removing.html#).
|
- Configure fabric and add your `apiKey` and `apiSecret` in the `fabric.properties` file.
|
||||||
- Create a firebase project and add the `google-services.json` to the `app/` folder.
|
- Create a firebase project and add the `google-services.json` to the `app/` folder.
|
||||||
- Define the following in `res/values/strings.xml` or create `res/values/secrets.xml`
|
- Define some parameters either in `~/.gradle/gradle.properties` or as gradle parameters (see the examples)
|
||||||
|
|
||||||
- mercury: A [Mercury](https://mercury.postlight.com/web-parser/) web parser api key for the internal browser
|
- mercuryApiKey: A [Mercury](https://mercury.postlight.com/web-parser/) web parser api key for the internal browser
|
||||||
- feedback_email: An email to receive users feedback.
|
- feedbackEmail: An email to receive users feedback.
|
||||||
- source_url: an url to the source code, used in the settings
|
- sourceUrl: an url to the source code, used in the settings. **It can be empty.**
|
||||||
- tracker_url: an url to the tracker, used in the settings
|
- trackerUrl: an url to the tracker, used in the settings. **It can be empty.**
|
||||||
- To run your app, you'll have to add `-P appLoginUrl="your.selfoss-instance.url" -P appLoginUsername="Username" -P appLoginPassword="password"`. (These are only used to run the espresso tests. You should be able to use empty strings or fake values to build the app)
|
- githubToken: a github token used to report issues from within the app. [Details here](https://github.com/heinrichreimer/android-issue-reporter#how-to-create-a-bot-key). **It can be empty.**
|
||||||
|
- appLoginUrl, appLoginUsername and appLoginPassword: url, username and password of a selfoss instance. **These are only used for tests. They can be empty if you don't test API calls.**
|
||||||
|
|
||||||
|
### Examples:
|
||||||
|
#### Inside ~/.gradle/gradle.properties
|
||||||
|
|
||||||
|
```
|
||||||
|
appLoginUrl="URL" # It can be empty.
|
||||||
|
appLoginUsername="LOGIN" # It can be empty.
|
||||||
|
appLoginPassword="PASS" # It can be empty.
|
||||||
|
mercuryApiKey="LONGAPIKEY"
|
||||||
|
feedbackEmail="EMAIL"
|
||||||
|
sourceUrl="URLSOURCE" # It can be empty.
|
||||||
|
trackerUrl="URLTRACKER" # It can be empty.
|
||||||
|
githubToken="GITHUBTOKEN" # It can be empty or use https://github.com/heinrichreimer/android-issue-reporter#how-to-create-a-bot-key to generate one
|
||||||
|
```
|
||||||
|
|
||||||
|
#### As gradle parameters
|
||||||
|
|
||||||
|
```
|
||||||
|
./gradlew .... -P appLoginUrl="URL" -P appLoginUsername="LOGIN" -P appLoginPassword="PASS" -P mercuryApiKey="LONGAPIKEY" -P feedbackEmail="EMAIL" -P sourceUrl="URLSOURCE" -P trackerUrl="URLTRACKER" -P githubToken="GITHUBTOKEN"
|
||||||
|
```
|
||||||
|
4
.gitignore
vendored
4
.gitignore
vendored
@ -214,6 +214,6 @@ gradle-app.setting
|
|||||||
|
|
||||||
# End of https://www.gitignore.io/api/java,gradle,android,androidstudio
|
# End of https://www.gitignore.io/api/java,gradle,android,androidstudio
|
||||||
|
|
||||||
secrets.xml
|
|
||||||
|
|
||||||
release/
|
release/
|
||||||
|
|
||||||
|
crowdin.properties
|
73
CHANGELOG.md
73
CHANGELOG.md
@ -1,3 +1,76 @@
|
|||||||
|
**1.5.4.01**
|
||||||
|
|
||||||
|
- Removed the "apk downloaded from outside of playstore" message.
|
||||||
|
|
||||||
|
- Versions update.
|
||||||
|
|
||||||
|
- HTML viewer version update. It should fix an issue with images.
|
||||||
|
|
||||||
|
- Some code cleaning.
|
||||||
|
|
||||||
|
**1.5.4.00**
|
||||||
|
|
||||||
|
- Added issue reporting from within the app.
|
||||||
|
|
||||||
|
**1.5.3.06**
|
||||||
|
|
||||||
|
- Fixed infinite scroll not working.
|
||||||
|
|
||||||
|
- Fixed logs not working.
|
||||||
|
|
||||||
|
- Temporary workaround handling opening invalid urls. Waiting to solve #83.
|
||||||
|
|
||||||
|
**1.5.3.05**
|
||||||
|
|
||||||
|
- Fixed an issue on older versions of Android.
|
||||||
|
|
||||||
|
- Libs update.
|
||||||
|
|
||||||
|
**1.5.3.04**
|
||||||
|
|
||||||
|
- Crowdin translations
|
||||||
|
|
||||||
|
**1.5.3.03**
|
||||||
|
|
||||||
|
- Libs updates.
|
||||||
|
|
||||||
|
- Translation fix.
|
||||||
|
|
||||||
|
**1.5.3.01/02**
|
||||||
|
|
||||||
|
- Added translation link to the settings page.
|
||||||
|
|
||||||
|
- Added the translation link to the README.
|
||||||
|
|
||||||
|
**1.5.3.00**
|
||||||
|
|
||||||
|
- (BETA) Added pull from bottom to load more pages of results. May be buggy.
|
||||||
|
|
||||||
|
**1.5.2.18/19**
|
||||||
|
|
||||||
|
- APK minification finally working. That means less space taken !
|
||||||
|
- Added an option to log every API call.
|
||||||
|
|
||||||
|
**1.5.2.17**
|
||||||
|
|
||||||
|
- Source code and tracker links weren't being set, and updated the contributing doc.
|
||||||
|
|
||||||
|
**1.5.2.15/16**
|
||||||
|
|
||||||
|
- Adding an account header on the lateral drawer.
|
||||||
|
|
||||||
|
- The account header is only displayed when the setting is enabled.
|
||||||
|
|
||||||
|
**1.5.2.13/14**
|
||||||
|
|
||||||
|
- Updated glide.
|
||||||
|
|
||||||
|
- Loading images from self signed certificate now working.
|
||||||
|
|
||||||
|
**1.5.2.12**
|
||||||
|
|
||||||
|
- Self signed certificates are now working for loading data. Image are not loading yet.
|
||||||
|
|
||||||
**1.5.2.11**
|
**1.5.2.11**
|
||||||
|
|
||||||
- Added a random unique identifier to be used in the logs.
|
- Added a random unique identifier to be used in the logs.
|
||||||
|
@ -1,17 +1,17 @@
|
|||||||
# ReaderForSelfoss
|
# ReaderForSelfoss
|
||||||
|
|
||||||
|
[](https://crowdin.com/project/readerforselfoss) [](https://gitter.im/amine-bou/ReaderForSelfoss)
|
||||||
|
|
||||||
[](http://jenkins.amine-bou.fr/job/ReaderForSelfoss/)
|
[](http://jenkins.amine-bou.fr/job/ReaderForSelfoss/)
|
||||||
|
|
||||||
[](https://gitter.im/amine-bou/ReaderForSelfoss)
|
|
||||||
|
|
||||||
[](https://codebeat.co/projects/github-com-aminecmi-readerforselfoss-master)
|
|
||||||
|
|
||||||
[](https://www.codetriage.com/aminecmi/readerforselfoss)
|
[](https://www.codetriage.com/aminecmi/readerforselfoss)
|
||||||
|
|
||||||
This is the repo of [Reader For Selfoss](https://play.google.com/store/apps/details?id=apps.amine.bou.readerforselfoss&hl=en).
|
This is the repo of [Reader For Selfoss](https://play.google.com/store/apps/details?id=apps.amine.bou.readerforselfoss&hl=en).
|
||||||
|
|
||||||
It's an RSS Reader for Android, that **only** works with [Selfoss](https://selfoss.aditu.de/)
|
It's an RSS Reader for Android, that **only** works with [Selfoss](https://selfoss.aditu.de/)
|
||||||
|
|
||||||
|
The last APK built from source is available [here](https://jenkins.amine-bou.fr/job/ReaderForSelfoss/lastSuccessfulBuild/artifact/SignApksBuilder-out/selfoss-key/selfoss/app-githubConfig-release-unsigned.apk/app-githubConfig-release.apk).
|
||||||
|
|
||||||
|
|
||||||
## Want to help ?
|
## Want to help ?
|
||||||
|
|
||||||
|
@ -23,6 +23,8 @@ def versionNameFromGit() {
|
|||||||
return gitVersion().trim()
|
return gitVersion().trim()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
apply plugin: 'org.sonarqube'
|
||||||
|
|
||||||
apply plugin: 'com.android.application'
|
apply plugin: 'com.android.application'
|
||||||
|
|
||||||
apply plugin: 'io.fabric'
|
apply plugin: 'io.fabric'
|
||||||
@ -30,12 +32,14 @@ apply plugin: 'io.fabric'
|
|||||||
apply plugin: 'kotlin-android'
|
apply plugin: 'kotlin-android'
|
||||||
|
|
||||||
repositories {
|
repositories {
|
||||||
maven { url 'https://maven.fabric.io/public' }
|
maven {
|
||||||
|
url 'https://maven.fabric.io/public'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 26
|
compileSdkVersion 26
|
||||||
buildToolsVersion "26.0.0"
|
buildToolsVersion '26.0.2'
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "apps.amine.bou.readerforselfoss"
|
applicationId "apps.amine.bou.readerforselfoss"
|
||||||
minSdkVersion 16
|
minSdkVersion 16
|
||||||
@ -53,10 +57,18 @@ android {
|
|||||||
|
|
||||||
// tests
|
// tests
|
||||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||||
|
|
||||||
|
buildConfigField "String", "MERCURY_KEY", mercuryApiKey
|
||||||
|
buildConfigField "String", "FEEDBACK_EMAIL", feedbackEmail
|
||||||
|
buildConfigField "String", "SOURCE_URL", sourceUrl
|
||||||
|
buildConfigField "String", "TRACKER_URL", trackerUrl
|
||||||
|
buildConfigField "String", "TRANSLATION_URL", translationUrl
|
||||||
|
buildConfigField "String", "GITHUB_TOKEN", githubToken
|
||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
release {
|
release {
|
||||||
minifyEnabled false
|
minifyEnabled true
|
||||||
|
shrinkResources true
|
||||||
proguardFiles getDefaultProguardFile('proguard-android.txt'),
|
proguardFiles getDefaultProguardFile('proguard-android.txt'),
|
||||||
'proguard-rules.pro'
|
'proguard-rules.pro'
|
||||||
}
|
}
|
||||||
@ -83,33 +95,33 @@ android {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
// Testing
|
// Testing
|
||||||
androidTestCompile 'com.android.support.test.espresso:espresso-core:2.2.2'
|
androidTestCompile 'com.android.support.test.espresso:espresso-core:3.0.1'
|
||||||
androidTestCompile 'com.android.support.test:runner:0.5'
|
androidTestCompile 'com.android.support.test:runner:1.0.1'
|
||||||
// Espresso-contrib for DatePicker, RecyclerView, Drawer actions, Accessibility checks, CountingIdlingResource
|
// Espresso-contrib for DatePicker, RecyclerView, Drawer actions, Accessibility checks, CountingIdlingResource
|
||||||
androidTestCompile 'com.android.support.test.espresso:espresso-contrib:2.2.2'
|
androidTestCompile 'com.android.support.test.espresso:espresso-contrib:3.0.1'
|
||||||
// Espresso-intents for validation and stubbing of Intents
|
// Espresso-intents for validation and stubbing of Intents
|
||||||
androidTestCompile 'com.android.support.test.espresso:espresso-intents:2.2.2'
|
androidTestCompile 'com.android.support.test.espresso:espresso-intents:3.0.1'
|
||||||
|
|
||||||
|
|
||||||
compile fileTree(dir: 'libs', include: ['*.jar'])
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
||||||
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
|
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
|
||||||
|
|
||||||
// Android Support
|
// Android Support
|
||||||
compile 'com.android.support:appcompat-v7:26.0.1'
|
compile 'com.android.support:appcompat-v7:26.1.0'
|
||||||
compile 'com.android.support:design:26.0.1'
|
compile 'com.android.support:design:26.1.0'
|
||||||
compile 'com.android.support:recyclerview-v7:26.0.1'
|
compile 'com.android.support:recyclerview-v7:26.1.0'
|
||||||
compile 'com.android.support:support-v4:26.0.1'
|
compile 'com.android.support:support-v4:26.1.0'
|
||||||
compile 'com.android.support:support-vector-drawable:26.0.1'
|
compile 'com.android.support:support-vector-drawable:26.1.0'
|
||||||
compile 'com.android.support:customtabs:26.0.1'
|
compile 'com.android.support:customtabs:26.1.0'
|
||||||
compile 'com.android.support:cardview-v7:26.0.1'
|
compile 'com.android.support:cardview-v7:26.1.0'
|
||||||
compile 'com.android.support.constraint:constraint-layout:1.0.2'
|
compile 'com.android.support.constraint:constraint-layout:1.0.2'
|
||||||
|
|
||||||
// Firebase + crashlytics
|
// Firebase + crashlytics
|
||||||
compile 'com.google.firebase:firebase-core:11.2.0'
|
compile 'com.google.firebase:firebase-core:11.4.2'
|
||||||
compile 'com.google.firebase:firebase-config:11.2.0'
|
compile 'com.google.firebase:firebase-config:11.4.2'
|
||||||
compile 'com.google.firebase:firebase-invites:11.2.0'
|
compile 'com.google.firebase:firebase-invites:11.4.2'
|
||||||
compile('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
|
compile('com.crashlytics.sdk.android:crashlytics:2.7.1@aar') {
|
||||||
transitive = true
|
transitive = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
//multidex
|
//multidex
|
||||||
@ -119,31 +131,32 @@ dependencies {
|
|||||||
compile 'agency.tango.android:material-intro-screen:0.0.5'
|
compile 'agency.tango.android:material-intro-screen:0.0.5'
|
||||||
|
|
||||||
// About
|
// About
|
||||||
compile('com.mikepenz:aboutlibraries:5.9.6@aar') {
|
compile('com.mikepenz:aboutlibraries:5.9.7@aar') {
|
||||||
transitive = true
|
transitive = true
|
||||||
}
|
}
|
||||||
|
|
||||||
// Retrofit + http logging + okhttp
|
// Retrofit + http logging + okhttp
|
||||||
compile 'com.squareup.retrofit2:retrofit:2.3.0'
|
compile 'com.squareup.retrofit2:retrofit:2.3.0'
|
||||||
compile 'com.squareup.okhttp3:logging-interceptor:3.8.0'
|
compile 'com.squareup.okhttp3:logging-interceptor:3.9.0'
|
||||||
compile 'com.squareup.retrofit2:converter-gson:2.3.0'
|
compile 'com.squareup.retrofit2:converter-gson:2.3.0'
|
||||||
compile 'com.burgstaller:okhttp-digest:1.12'
|
compile 'com.burgstaller:okhttp-digest:1.12'
|
||||||
|
|
||||||
// Material-ish things
|
// Material-ish things
|
||||||
compile 'com.ashokvarma.android:bottom-navigation-bar:2.0.2'
|
compile 'com.ashokvarma.android:bottom-navigation-bar:2.0.3'
|
||||||
compile 'com.melnykov:floatingactionbutton:1.3.0'
|
compile 'com.melnykov:floatingactionbutton:1.3.0'
|
||||||
compile 'com.github.jd-alexander:LikeButton:0.2.1'
|
compile 'com.github.jd-alexander:LikeButton:0.2.1'
|
||||||
compile 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
|
compile 'com.amulyakhare:com.amulyakhare.textdrawable:1.0.1'
|
||||||
compile 'org.sufficientlysecure:html-textview:3.3'
|
compile 'org.sufficientlysecure:html-textview:3.5'
|
||||||
|
|
||||||
// glide
|
// glide
|
||||||
compile 'com.github.bumptech.glide:glide:3.7.0'
|
compile 'com.github.bumptech.glide:glide:4.1.1'
|
||||||
|
compile 'com.github.bumptech.glide:okhttp3-integration:4.1.1'
|
||||||
|
|
||||||
// Asking politely users to rate the app
|
// Asking politely users to rate the app
|
||||||
compile 'com.github.stkent:amplify:1.5.0'
|
compile 'com.github.stkent:amplify:2.1.0'
|
||||||
|
|
||||||
// For the article reader
|
// For the article reader
|
||||||
compile 'com.klinkerapps:drag-dismiss-activity:1.4.3'
|
compile 'com.klinkerapps:drag-dismiss-activity:1.5.0'
|
||||||
|
|
||||||
// Drawer
|
// Drawer
|
||||||
compile('com.mikepenz:materialdrawer:5.9.5@aar') {
|
compile('com.mikepenz:materialdrawer:5.9.5@aar') {
|
||||||
@ -154,6 +167,8 @@ dependencies {
|
|||||||
// Themes
|
// Themes
|
||||||
compile 'com.52inc:scoops:1.0.0'
|
compile 'com.52inc:scoops:1.0.0'
|
||||||
|
|
||||||
|
// Github issues reporter
|
||||||
|
compile 'com.heinrichreimersoftware:android-issue-reporter:1.3.1'
|
||||||
}
|
}
|
||||||
|
|
||||||
apply plugin: 'com.google.gms.google-services'
|
apply plugin: 'com.google.gms.google-services'
|
||||||
@ -162,6 +177,7 @@ apply plugin: 'com.google.gms.google-services'
|
|||||||
afterEvaluate {
|
afterEvaluate {
|
||||||
initFabricPropertiesIfNeeded()
|
initFabricPropertiesIfNeeded()
|
||||||
initAppLoginPropertiesIfNeeded()
|
initAppLoginPropertiesIfNeeded()
|
||||||
|
initAppForSecretPropertiesIfNeeded()
|
||||||
}
|
}
|
||||||
|
|
||||||
def initFabricPropertiesIfNeeded() {
|
def initFabricPropertiesIfNeeded() {
|
||||||
@ -186,3 +202,18 @@ def initAppLoginPropertiesIfNeeded() {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
def initAppForSecretPropertiesIfNeeded() {
|
||||||
|
def propertiesFile = file(System.getProperty("user.home") + '/.gradle/gradle.properties')
|
||||||
|
if (!propertiesFile.exists()) {
|
||||||
|
def commentMessage = "This is autogenerated local property from system environment to prevent key to be committed to source control."
|
||||||
|
ant.propertyfile(file: System.getProperty("user.home") + "/.gradle/gradle.properties", comment: commentMessage) {
|
||||||
|
entry(key: "mercuryApiKey", value: System.getProperty("mercuryApiKey"))
|
||||||
|
entry(key: "feedbackEmail", value: System.getProperty("feedbackEmail"))
|
||||||
|
entry(key: "sourceUrl", value: System.getProperty("sourceUrl"))
|
||||||
|
entry(key: "trackerUrl", value: System.getProperty("trackerUrl"))
|
||||||
|
entry(key: "translationUrl", value: System.getProperty("translationUrl"))
|
||||||
|
entry(key: "githubToken", value: System.getProperty("githubToken"))
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
13
app/proguard-rules.pro
vendored
13
app/proguard-rules.pro
vendored
@ -57,3 +57,16 @@
|
|||||||
|
|
||||||
#Bottom bar lib
|
#Bottom bar lib
|
||||||
-dontwarn com.roughike.bottombar.**
|
-dontwarn com.roughike.bottombar.**
|
||||||
|
|
||||||
|
|
||||||
|
# self signed glidemodule
|
||||||
|
-keep public class * implements com.bumptech.glide.module.GlideModule
|
||||||
|
-keep public class * extends com.bumptech.glide.AppGlideModule
|
||||||
|
-keep public enum com.bumptech.glide.load.resource.bitmap.ImageHeaderParser$** {
|
||||||
|
**[] $VALUES;
|
||||||
|
public *;
|
||||||
|
}
|
||||||
|
|
||||||
|
-dontwarn com.anupcowkur.reservoir.**
|
||||||
|
|
||||||
|
-dontwarn javax.annotation.**
|
@ -23,8 +23,8 @@ import org.junit.Rule
|
|||||||
import org.junit.Test
|
import org.junit.Test
|
||||||
import org.junit.runner.RunWith
|
import org.junit.runner.RunWith
|
||||||
|
|
||||||
import apps.amine.bou.readerforselfoss.settings.SettingsActivity
|
|
||||||
import apps.amine.bou.readerforselfoss.utils.Config
|
import apps.amine.bou.readerforselfoss.utils.Config
|
||||||
|
import com.heinrichreimersoftware.androidissuereporter.IssueReporterLauncher
|
||||||
import org.junit.After
|
import org.junit.After
|
||||||
|
|
||||||
|
|
||||||
@ -72,9 +72,6 @@ class HomeActivityEspressoTest {
|
|||||||
|
|
||||||
onView(withContentDescription(R.string.abc_toolbar_collapse_description)).perform(click())
|
onView(withContentDescription(R.string.abc_toolbar_collapse_description)).perform(click())
|
||||||
|
|
||||||
|
|
||||||
onView(withMenu(id = R.id.readAll, titleId = R.string.readAll)).perform(click())
|
|
||||||
|
|
||||||
openActionBarOverflowOrOptionsMenu(context)
|
openActionBarOverflowOrOptionsMenu(context)
|
||||||
|
|
||||||
onView(withMenu(id = R.id.refresh, titleId = R.string.menu_home_refresh))
|
onView(withMenu(id = R.id.refresh, titleId = R.string.menu_home_refresh))
|
||||||
@ -86,9 +83,6 @@ class HomeActivityEspressoTest {
|
|||||||
|
|
||||||
intended(hasComponent(LoginActivity::class.java.name), times(1))
|
intended(hasComponent(LoginActivity::class.java.name), times(1))
|
||||||
|
|
||||||
//onView(isRoot()).perform(pressBack())
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
@ -98,8 +92,9 @@ class HomeActivityEspressoTest {
|
|||||||
|
|
||||||
onView(withId(R.id.material_drawer_layout)).perform(DrawerActions.open())
|
onView(withId(R.id.material_drawer_layout)).perform(DrawerActions.open())
|
||||||
|
|
||||||
onView(withText(R.string.action_about)).perform(click())
|
onView(withText(R.string.drawer_report_bug)).perform(click())
|
||||||
intended(hasComponent(LibsActivity::class.java.name))
|
intended(hasComponent(IssueReporterLauncher.Activity::class.java.name))
|
||||||
|
onView(isRoot()).perform(pressBack())
|
||||||
onView(isRoot()).perform(pressBack())
|
onView(isRoot()).perform(pressBack())
|
||||||
intended(hasComponent(HomeActivity::class.java.name))
|
intended(hasComponent(HomeActivity::class.java.name))
|
||||||
|
|
||||||
@ -108,10 +103,6 @@ class HomeActivityEspressoTest {
|
|||||||
onView(withId(R.id.material_drawer_layout)).perform(DrawerActions.open())
|
onView(withId(R.id.material_drawer_layout)).perform(DrawerActions.open())
|
||||||
onView(withText(R.string.drawer_action_clear)).perform(click())
|
onView(withText(R.string.drawer_action_clear)).perform(click())
|
||||||
|
|
||||||
// bug
|
|
||||||
//onView(withText(R.string.title_activity_settings)).perform(scrollTo(), click())
|
|
||||||
//intended(hasComponent(SettingsActivity::class.java.name))
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: test articles opening and actions for cards and lists
|
// TODO: test articles opening and actions for cards and lists
|
||||||
|
@ -46,7 +46,7 @@ class IntroActivityEspressoTest {
|
|||||||
Intents.init()
|
Intents.init()
|
||||||
}
|
}
|
||||||
|
|
||||||
/*@Test
|
@Test
|
||||||
fun nextEachTimes() {
|
fun nextEachTimes() {
|
||||||
|
|
||||||
rule.launchActivity(Intent())
|
rule.launchActivity(Intent())
|
||||||
@ -61,7 +61,7 @@ class IntroActivityEspressoTest {
|
|||||||
intended(hasComponent(IntroActivity::class.java.name), times(1))
|
intended(hasComponent(IntroActivity::class.java.name), times(1))
|
||||||
intended(hasComponent(LoginActivity::class.java.name), times(1))
|
intended(hasComponent(LoginActivity::class.java.name), times(1))
|
||||||
|
|
||||||
}*/
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
fun nextBackRandomTimes() {
|
fun nextBackRandomTimes() {
|
||||||
@ -91,29 +91,6 @@ class IntroActivityEspressoTest {
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
fun clickSelfossUrl() {
|
|
||||||
rule.launchActivity(Intent())
|
|
||||||
|
|
||||||
onView(withText(R.string.intro_hello_title)).check(matches(isDisplayed()))
|
|
||||||
|
|
||||||
onView(withId(R.id.button_next)).perform(click())
|
|
||||||
|
|
||||||
onView(withId(R.id.button_message)).perform(click())
|
|
||||||
|
|
||||||
intended(
|
|
||||||
allOf(
|
|
||||||
hasData(
|
|
||||||
hasHost(
|
|
||||||
equalTo("selfoss.aditu.de")
|
|
||||||
)
|
|
||||||
),
|
|
||||||
hasAction(Intent.ACTION_VIEW)
|
|
||||||
)
|
|
||||||
)
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
@After
|
@After
|
||||||
fun releaseIntents() {
|
fun releaseIntents() {
|
||||||
Intents.release()
|
Intents.release()
|
||||||
|
@ -28,7 +28,8 @@
|
|||||||
android:name=".IntroActivity"
|
android:name=".IntroActivity"
|
||||||
android:theme="@style/Theme.Intro">
|
android:theme="@style/Theme.Intro">
|
||||||
</activity>
|
</activity>
|
||||||
<activity android:name=".LoginActivity"
|
<activity
|
||||||
|
android:name=".LoginActivity"
|
||||||
android:label="@string/title_activity_login">
|
android:label="@string/title_activity_login">
|
||||||
</activity>
|
</activity>
|
||||||
<activity android:name=".HomeActivity">
|
<activity android:name=".HomeActivity">
|
||||||
@ -41,13 +42,15 @@
|
|||||||
android:name="android.support.PARENT_ACTIVITY"
|
android:name="android.support.PARENT_ACTIVITY"
|
||||||
android:value="apps.amine.bou.readerforselfoss.HomeActivity" />
|
android:value="apps.amine.bou.readerforselfoss.HomeActivity" />
|
||||||
</activity>
|
</activity>
|
||||||
<activity android:name=".SourcesActivity"
|
<activity
|
||||||
|
android:name=".SourcesActivity"
|
||||||
android:parentActivityName=".HomeActivity">
|
android:parentActivityName=".HomeActivity">
|
||||||
<meta-data
|
<meta-data
|
||||||
android:name="android.support.PARENT_ACTIVITY"
|
android:name="android.support.PARENT_ACTIVITY"
|
||||||
android:value=".HomeActivity" />
|
android:value=".HomeActivity" />
|
||||||
</activity>
|
</activity>
|
||||||
<activity android:name=".AddSourceActivity"
|
<activity
|
||||||
|
android:name=".AddSourceActivity"
|
||||||
android:parentActivityName=".SourcesActivity">
|
android:parentActivityName=".SourcesActivity">
|
||||||
<meta-data
|
<meta-data
|
||||||
android:name="android.support.PARENT_ACTIVITY"
|
android:name="android.support.PARENT_ACTIVITY"
|
||||||
@ -61,9 +64,14 @@
|
|||||||
<data android:mimeType="text/plain" />
|
<data android:mimeType="text/plain" />
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
</activity>
|
</activity>
|
||||||
<activity android:name=".ReaderActivity"
|
<activity
|
||||||
|
android:name=".ReaderActivity"
|
||||||
android:theme="@style/DragDismissTheme">
|
android:theme="@style/DragDismissTheme">
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
|
<meta-data
|
||||||
|
android:name="apps.amine.bou.readerforselfoss.utils.glide.SelfSignedGlideModule"
|
||||||
|
android:value="GlideModule" />
|
||||||
</application>
|
</application>
|
||||||
|
|
||||||
</manifest>
|
</manifest>
|
@ -45,7 +45,7 @@ class AddSourceActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
try {
|
try {
|
||||||
val prefs = PreferenceManager.getDefaultSharedPreferences(this)
|
val prefs = PreferenceManager.getDefaultSharedPreferences(this)
|
||||||
api = SelfossApi(this, this@AddSourceActivity, prefs.getBoolean("isSelfSignedCert", false))
|
api = SelfossApi(this, this@AddSourceActivity, prefs.getBoolean("isSelfSignedCert", false), prefs.getBoolean("should_log_everything", false))
|
||||||
} catch (e: IllegalArgumentException) {
|
} catch (e: IllegalArgumentException) {
|
||||||
mustLoginToAddSource()
|
mustLoginToAddSource()
|
||||||
}
|
}
|
||||||
|
@ -55,7 +55,6 @@ import apps.amine.bou.readerforselfoss.themes.AppColors
|
|||||||
import apps.amine.bou.readerforselfoss.utils.Config
|
import apps.amine.bou.readerforselfoss.utils.Config
|
||||||
import apps.amine.bou.readerforselfoss.utils.bottombar.maybeShow
|
import apps.amine.bou.readerforselfoss.utils.bottombar.maybeShow
|
||||||
import apps.amine.bou.readerforselfoss.utils.bottombar.removeBadge
|
import apps.amine.bou.readerforselfoss.utils.bottombar.removeBadge
|
||||||
import apps.amine.bou.readerforselfoss.utils.checkAndDisplayStoreApk
|
|
||||||
import apps.amine.bou.readerforselfoss.utils.checkApkVersion
|
import apps.amine.bou.readerforselfoss.utils.checkApkVersion
|
||||||
import apps.amine.bou.readerforselfoss.utils.customtabs.CustomTabActivityHelper
|
import apps.amine.bou.readerforselfoss.utils.customtabs.CustomTabActivityHelper
|
||||||
import apps.amine.bou.readerforselfoss.utils.drawer.CustomUrlPrimaryDrawerItem
|
import apps.amine.bou.readerforselfoss.utils.drawer.CustomUrlPrimaryDrawerItem
|
||||||
@ -64,6 +63,10 @@ import com.ashokvarma.bottomnavigation.BottomNavigationBar
|
|||||||
import com.ashokvarma.bottomnavigation.BottomNavigationItem
|
import com.ashokvarma.bottomnavigation.BottomNavigationItem
|
||||||
import com.ashokvarma.bottomnavigation.TextBadgeItem
|
import com.ashokvarma.bottomnavigation.TextBadgeItem
|
||||||
import com.ftinc.scoop.Scoop
|
import com.ftinc.scoop.Scoop
|
||||||
|
import com.heinrichreimersoftware.androidissuereporter.IssueReporterLauncher
|
||||||
|
import com.mikepenz.materialdrawer.AccountHeader
|
||||||
|
import com.mikepenz.materialdrawer.AccountHeaderBuilder
|
||||||
|
import com.mikepenz.materialdrawer.model.ProfileDrawerItem
|
||||||
|
|
||||||
|
|
||||||
class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
|
class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
|
||||||
@ -93,6 +96,8 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
|
|||||||
private var maybeSourceFilter: Sources? = null
|
private var maybeSourceFilter: Sources? = null
|
||||||
private var maybeSearchFilter: String? = null
|
private var maybeSearchFilter: String? = null
|
||||||
private var userIdentifier: String = ""
|
private var userIdentifier: String = ""
|
||||||
|
private var displayAccountHeader: Boolean = false
|
||||||
|
private var infiniteScroll: Boolean = false
|
||||||
|
|
||||||
private lateinit var emptyText: TextView
|
private lateinit var emptyText: TextView
|
||||||
private lateinit var recyclerView: RecyclerView
|
private lateinit var recyclerView: RecyclerView
|
||||||
@ -110,6 +115,11 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
|
|||||||
private lateinit var sharedPref: SharedPreferences
|
private lateinit var sharedPref: SharedPreferences
|
||||||
private lateinit var firebaseRemoteConfig: FirebaseRemoteConfig
|
private lateinit var firebaseRemoteConfig: FirebaseRemoteConfig
|
||||||
private lateinit var appColors: AppColors
|
private lateinit var appColors: AppColors
|
||||||
|
private var offset: Int = 0
|
||||||
|
private var firstVisible: Int = 0
|
||||||
|
private var recyclerViewScrollListener: RecyclerView.OnScrollListener? = null
|
||||||
|
private lateinit var settings: SharedPreferences
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -142,8 +152,10 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
|
|||||||
|
|
||||||
customTabActivityHelper = CustomTabActivityHelper()
|
customTabActivityHelper = CustomTabActivityHelper()
|
||||||
|
|
||||||
val dirtyPref = PreferenceManager.getDefaultSharedPreferences(this)
|
settings = getSharedPreferences(Config.settingsName, Context.MODE_PRIVATE)
|
||||||
api = SelfossApi(this, this@HomeActivity, dirtyPref.getBoolean("isSelfSignedCert", false))
|
sharedPref = PreferenceManager.getDefaultSharedPreferences(this)
|
||||||
|
|
||||||
|
api = SelfossApi(this, this@HomeActivity, settings.getBoolean("isSelfSignedCert", false), sharedPref.getBoolean("should_log_everything", false))
|
||||||
items = ArrayList()
|
items = ArrayList()
|
||||||
|
|
||||||
appColors = AppColors(this@HomeActivity)
|
appColors = AppColors(this@HomeActivity)
|
||||||
@ -184,11 +196,12 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
|
|||||||
val i = items[viewHolder.adapterPosition]
|
val i = items[viewHolder.adapterPosition]
|
||||||
val position = items.indexOf(i)
|
val position = items.indexOf(i)
|
||||||
|
|
||||||
if (shouldBeCardView) {
|
val adapter = recyclerView.adapter
|
||||||
(recyclerView.adapter as ItemCardAdapter).removeItemAtIndex(position)
|
when (adapter) {
|
||||||
} else {
|
is ItemCardAdapter -> adapter.removeItemAtIndex(position)
|
||||||
(recyclerView.adapter as ItemListAdapter).removeItemAtIndex(position)
|
is ItemListAdapter -> adapter.removeItemAtIndex(position)
|
||||||
}
|
}
|
||||||
|
|
||||||
if (items.size > 0)
|
if (items.size > 0)
|
||||||
tabNewBadge.setText("${items.size}").maybeShow()
|
tabNewBadge.setText("${items.size}").maybeShow()
|
||||||
else
|
else
|
||||||
@ -200,9 +213,6 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ItemTouchHelper(simpleItemTouchCallback).attachToRecyclerView(recyclerView)
|
ItemTouchHelper(simpleItemTouchCallback).attachToRecyclerView(recyclerView)
|
||||||
|
|
||||||
this@HomeActivity.checkAndDisplayStoreApk()
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun handleBottomBar() {
|
private fun handleBottomBar() {
|
||||||
@ -260,7 +270,6 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
|
|||||||
|
|
||||||
sharedPref = PreferenceManager.getDefaultSharedPreferences(this)
|
sharedPref = PreferenceManager.getDefaultSharedPreferences(this)
|
||||||
|
|
||||||
val settings = getSharedPreferences(Config.settingsName, Context.MODE_PRIVATE)
|
|
||||||
editor = settings.edit()
|
editor = settings.edit()
|
||||||
|
|
||||||
if (BuildConfig.GITHUB_VERSION) {
|
if (BuildConfig.GITHUB_VERSION) {
|
||||||
@ -289,11 +298,31 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
|
|||||||
fullHeightCards = sharedPref.getBoolean("full_height_cards", false)
|
fullHeightCards = sharedPref.getBoolean("full_height_cards", false)
|
||||||
itemsNumber = sharedPref.getString("prefer_api_items_number", "200").toInt()
|
itemsNumber = sharedPref.getString("prefer_api_items_number", "200").toInt()
|
||||||
userIdentifier = sharedPref.getString("unique_id", "")
|
userIdentifier = sharedPref.getString("unique_id", "")
|
||||||
|
displayAccountHeader = sharedPref.getBoolean("account_header_displaying", false)
|
||||||
|
infiniteScroll = sharedPref.getBoolean("infinite_loading", false)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun handleDrawer() {
|
private fun handleDrawer() {
|
||||||
|
displayAccountHeader =
|
||||||
|
PreferenceManager.getDefaultSharedPreferences(this)
|
||||||
|
.getBoolean("account_header_displaying", false)
|
||||||
|
val headerResult: AccountHeader? = if (displayAccountHeader) {
|
||||||
|
AccountHeaderBuilder()
|
||||||
|
.withActivity(this)
|
||||||
|
.withHeaderBackground(R.drawable.bg)
|
||||||
|
.addProfiles(
|
||||||
|
ProfileDrawerItem()
|
||||||
|
.withName(
|
||||||
|
settings.getString("url", "")
|
||||||
|
)
|
||||||
|
.withIcon(resources.getDrawable(R.mipmap.ic_launcher))
|
||||||
|
)
|
||||||
|
.withSelectionListEnabledForSingleProfile(false)
|
||||||
|
.build()
|
||||||
|
} else null
|
||||||
|
|
||||||
drawer = DrawerBuilder()
|
val drawerBuilder =
|
||||||
|
DrawerBuilder()
|
||||||
.withActivity(this)
|
.withActivity(this)
|
||||||
.withRootView(R.id.drawer_layout)
|
.withRootView(R.id.drawer_layout)
|
||||||
.withToolbar(toolbar)
|
.withToolbar(toolbar)
|
||||||
@ -314,27 +343,31 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
|
|||||||
}
|
}
|
||||||
|
|
||||||
})
|
})
|
||||||
.build()
|
|
||||||
|
if (displayAccountHeader && headerResult != null)
|
||||||
|
drawerBuilder.withAccountHeader(headerResult)
|
||||||
|
|
||||||
|
drawer = drawerBuilder.build()
|
||||||
|
|
||||||
drawer.addStickyFooterItem(
|
drawer.addStickyFooterItem(
|
||||||
PrimaryDrawerItem()
|
PrimaryDrawerItem()
|
||||||
.withName(R.string.action_about)
|
.withName(R.string.drawer_report_bug)
|
||||||
.withSelectable(false)
|
.withIcon(R.drawable.ic_bug_report)
|
||||||
.withIcon(R.drawable.ic_info_outline)
|
|
||||||
.withIconTintingEnabled(true)
|
.withIconTintingEnabled(true)
|
||||||
.withOnDrawerItemClickListener { _, _, _ ->
|
.withOnDrawerItemClickListener { _, _, _ ->
|
||||||
LibsBuilder()
|
IssueReporterLauncher.forTarget(getString(R.string.report_github_user), getString(R.string.report_github_repo))
|
||||||
.withActivityStyle(
|
.theme(R.style.Theme_App_Light)
|
||||||
if (appColors.isDarkTheme)
|
.guestToken(BuildConfig.GITHUB_TOKEN)
|
||||||
Libs.ActivityStyle.LIGHT_DARK_TOOLBAR
|
.guestEmailRequired(true)
|
||||||
else
|
.minDescriptionLength(20)
|
||||||
Libs.ActivityStyle.DARK
|
.putExtraInfo("Unique ID", settings.getString("unique_id", ""))
|
||||||
)
|
.putExtraInfo("From github", BuildConfig.GITHUB_VERSION)
|
||||||
.withAboutIconShown(true)
|
.homeAsUpEnabled(true)
|
||||||
.withAboutVersionShown(true)
|
.launch(this)
|
||||||
.start(this@HomeActivity)
|
|
||||||
false
|
false
|
||||||
})
|
}
|
||||||
|
)
|
||||||
|
|
||||||
drawer.addStickyFooterItem(
|
drawer.addStickyFooterItem(
|
||||||
PrimaryDrawerItem()
|
PrimaryDrawerItem()
|
||||||
.withName(R.string.title_activity_settings)
|
.withName(R.string.title_activity_settings)
|
||||||
@ -366,7 +399,7 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
|
|||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
for (tag in maybeTags) {
|
for (tag in maybeTags) {
|
||||||
val gd: GradientDrawable = GradientDrawable()
|
val gd = GradientDrawable()
|
||||||
gd.setColor(Color.parseColor(tag.color))
|
gd.setColor(Color.parseColor(tag.color))
|
||||||
gd.shape = GradientDrawable.RECTANGLE
|
gd.shape = GradientDrawable.RECTANGLE
|
||||||
gd.setSize(30, 30)
|
gd.setSize(30, 30)
|
||||||
@ -438,6 +471,7 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
|
|||||||
.withIdentifier(DRAWER_ID_TAGS)
|
.withIdentifier(DRAWER_ID_TAGS)
|
||||||
.withSelectable(false))
|
.withSelectable(false))
|
||||||
handleTags(maybeDrawerData.tags)
|
handleTags(maybeDrawerData.tags)
|
||||||
|
drawer.addItem(DividerDrawerItem())
|
||||||
drawer.addItem(
|
drawer.addItem(
|
||||||
SecondaryDrawerItem()
|
SecondaryDrawerItem()
|
||||||
.withName(getString(R.string.drawer_item_sources))
|
.withName(getString(R.string.drawer_item_sources))
|
||||||
@ -450,6 +484,26 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
|
|||||||
}
|
}
|
||||||
)
|
)
|
||||||
handleSources(maybeDrawerData.sources)
|
handleSources(maybeDrawerData.sources)
|
||||||
|
drawer.addItem(DividerDrawerItem())
|
||||||
|
drawer.addItem(
|
||||||
|
PrimaryDrawerItem()
|
||||||
|
.withName(R.string.action_about)
|
||||||
|
.withSelectable(false)
|
||||||
|
.withIcon(R.drawable.ic_info_outline)
|
||||||
|
.withIconTintingEnabled(true)
|
||||||
|
.withOnDrawerItemClickListener { _, _, _ ->
|
||||||
|
LibsBuilder()
|
||||||
|
.withActivityStyle(
|
||||||
|
if (appColors.isDarkTheme)
|
||||||
|
Libs.ActivityStyle.LIGHT_DARK_TOOLBAR
|
||||||
|
else
|
||||||
|
Libs.ActivityStyle.DARK
|
||||||
|
)
|
||||||
|
.withAboutIconShown(true)
|
||||||
|
.withAboutVersionShown(true)
|
||||||
|
.start(this@HomeActivity)
|
||||||
|
false
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
if (!loadedFromCache)
|
if (!loadedFromCache)
|
||||||
@ -538,22 +592,49 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
|
|||||||
recyclerView.layoutManager = mLayoutManager
|
recyclerView.layoutManager = mLayoutManager
|
||||||
recyclerView.setHasFixedSize(true)
|
recyclerView.setHasFixedSize(true)
|
||||||
|
|
||||||
|
if (infiniteScroll) {
|
||||||
|
if (recyclerViewScrollListener == null)
|
||||||
|
recyclerViewScrollListener = object: RecyclerView.OnScrollListener() {
|
||||||
|
override fun onScrolled(localRecycler: RecyclerView?, dx: Int, dy: Int) {
|
||||||
|
if (dy > 0) {
|
||||||
|
if (localRecycler != null) {
|
||||||
|
val manager = recyclerView.layoutManager
|
||||||
|
val lastVisibleItem: Int = when (manager) {
|
||||||
|
is StaggeredGridLayoutManager -> manager.findLastCompletelyVisibleItemPositions(null).last()
|
||||||
|
is GridLayoutManager -> manager.findLastCompletelyVisibleItemPosition()
|
||||||
|
else -> 0
|
||||||
|
}
|
||||||
|
|
||||||
|
if (lastVisibleItem == (items.size - 1)) {
|
||||||
|
getElementsAccordingToTab(appendResults = true)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
recyclerView.clearOnScrollListeners()
|
||||||
|
recyclerView.addOnScrollListener(recyclerViewScrollListener)
|
||||||
|
}
|
||||||
|
|
||||||
bottomBar.setTabSelectedListener(object: BottomNavigationBar.OnTabSelectedListener {
|
bottomBar.setTabSelectedListener(object: BottomNavigationBar.OnTabSelectedListener {
|
||||||
override fun onTabUnselected(position: Int) = Unit
|
override fun onTabUnselected(position: Int) = Unit
|
||||||
|
|
||||||
override fun onTabReselected(position: Int) =
|
override fun onTabReselected(position: Int) =
|
||||||
if (shouldBeCardView) {
|
when (mLayoutManager) {
|
||||||
if ((mLayoutManager as StaggeredGridLayoutManager).findFirstCompletelyVisibleItemPositions(null)[0] == 0) {
|
is StaggeredGridLayoutManager ->
|
||||||
|
if (mLayoutManager.findFirstCompletelyVisibleItemPositions(null)[0] == 0) {
|
||||||
getElementsAccordingToTab()
|
getElementsAccordingToTab()
|
||||||
} else {
|
} else {
|
||||||
mLayoutManager.scrollToPositionWithOffset(0, 0)
|
mLayoutManager.scrollToPositionWithOffset(0, 0)
|
||||||
}
|
}
|
||||||
} else {
|
is GridLayoutManager ->
|
||||||
if ((mLayoutManager as GridLayoutManager).findFirstCompletelyVisibleItemPosition() == 0) {
|
if (mLayoutManager.findFirstCompletelyVisibleItemPosition() == 0) {
|
||||||
getElementsAccordingToTab()
|
getElementsAccordingToTab()
|
||||||
} else {
|
} else {
|
||||||
mLayoutManager.scrollToPositionWithOffset(0, 0)
|
mLayoutManager.scrollToPositionWithOffset(0, 0)
|
||||||
}
|
}
|
||||||
|
else -> Unit
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun onTabSelected(position: Int) =
|
override fun onTabSelected(position: Int) =
|
||||||
@ -576,26 +657,31 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
|
|||||||
recyclerView.visibility = View.VISIBLE
|
recyclerView.visibility = View.VISIBLE
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun getElementsAccordingToTab() =
|
private fun getElementsAccordingToTab(appendResults: Boolean = false) =
|
||||||
when (elementsShown) {
|
when (elementsShown) {
|
||||||
UNREAD_SHOWN -> getUnRead()
|
UNREAD_SHOWN -> getUnRead(appendResults)
|
||||||
READ_SHOWN -> getRead()
|
READ_SHOWN -> getRead(appendResults)
|
||||||
FAV_SHOWN -> getStarred()
|
FAV_SHOWN -> getStarred(appendResults)
|
||||||
else -> getUnRead()
|
else -> getUnRead(appendResults)
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun doCallTo(toastMessage: Int, call: (String?, Long?, String?) -> Call<List<Item>>) {
|
private fun doCallTo(appendResults: Boolean, toastMessage: Int, call: (String?, Long?, String?) -> Call<List<Item>>) {
|
||||||
fun handleItemsResponse(response: Response<List<Item>>) {
|
fun handleItemsResponse(response: Response<List<Item>>) {
|
||||||
val didUpdate = (response.body() != items)
|
val didUpdate = (response.body() != items)
|
||||||
if (response.body() != null) {
|
if (response.body() != null) {
|
||||||
if (response.body() != items) {
|
if (response.body() != items) {
|
||||||
|
if (appendResults)
|
||||||
|
items.addAll(response.body() as ArrayList<Item>)
|
||||||
|
else
|
||||||
items = response.body() as ArrayList<Item>
|
items = response.body() as ArrayList<Item>
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
if (!appendResults)
|
||||||
items = ArrayList()
|
items = ArrayList()
|
||||||
}
|
}
|
||||||
if (didUpdate)
|
if (didUpdate)
|
||||||
handleListResult()
|
handleListResult(appendResults)
|
||||||
|
|
||||||
mayBeEmpty()
|
mayBeEmpty()
|
||||||
swipeRefreshLayout.isRefreshing = false
|
swipeRefreshLayout.isRefreshing = false
|
||||||
}
|
}
|
||||||
@ -616,22 +702,40 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
|
|||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun getUnRead() {
|
private fun getUnRead(appendResults: Boolean = false) {
|
||||||
|
offset = if (appendResults) (offset + itemsNumber)
|
||||||
|
else 0
|
||||||
|
firstVisible = if (appendResults) firstVisible else 0
|
||||||
elementsShown = UNREAD_SHOWN
|
elementsShown = UNREAD_SHOWN
|
||||||
doCallTo(R.string.cant_get_new_elements){t, id, f -> api.newItems(t, id, f, itemsNumber)}
|
doCallTo(appendResults, R.string.cant_get_new_elements){t, id, f -> api.newItems(t, id, f, itemsNumber, offset)}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun getRead() {
|
private fun getRead(appendResults: Boolean = false) {
|
||||||
|
offset = if (appendResults) (offset + itemsNumber)
|
||||||
|
else 0
|
||||||
|
firstVisible = if (appendResults) firstVisible else 0
|
||||||
elementsShown = READ_SHOWN
|
elementsShown = READ_SHOWN
|
||||||
doCallTo(R.string.cant_get_read){t, id, f -> api.readItems(t, id, f)}
|
doCallTo(appendResults, R.string.cant_get_read){t, id, f -> api.readItems(t, id, f, itemsNumber, offset)}
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun getStarred() {
|
private fun getStarred(appendResults: Boolean = false) {
|
||||||
|
offset = if (appendResults) (offset + itemsNumber)
|
||||||
|
else 0
|
||||||
|
firstVisible = if (appendResults) firstVisible else 0
|
||||||
elementsShown = FAV_SHOWN
|
elementsShown = FAV_SHOWN
|
||||||
doCallTo(R.string.cant_get_favs){t, id, f -> api.starredItems(t, id, f)}
|
doCallTo(appendResults, R.string.cant_get_favs){t, id, f -> api.starredItems(t, id, f, itemsNumber, offset)}
|
||||||
|
}
|
||||||
|
|
||||||
|
private fun handleListResult(appendResults: Boolean = false) {
|
||||||
|
if (appendResults) {
|
||||||
|
val oldManager = recyclerView.layoutManager
|
||||||
|
firstVisible = if ((oldManager is StaggeredGridLayoutManager)) {
|
||||||
|
oldManager.findFirstCompletelyVisibleItemPositions(null).last()
|
||||||
|
}
|
||||||
|
else
|
||||||
|
(oldManager as GridLayoutManager)?.findFirstCompletelyVisibleItemPosition()
|
||||||
}
|
}
|
||||||
|
|
||||||
private fun handleListResult() {
|
|
||||||
reloadLayoutManager()
|
reloadLayoutManager()
|
||||||
|
|
||||||
val mAdapter: RecyclerView.Adapter<*>
|
val mAdapter: RecyclerView.Adapter<*>
|
||||||
@ -664,6 +768,10 @@ class HomeActivity : AppCompatActivity(), SearchView.OnQueryTextListener {
|
|||||||
recyclerView.adapter = mAdapter
|
recyclerView.adapter = mAdapter
|
||||||
mAdapter.notifyDataSetChanged()
|
mAdapter.notifyDataSetChanged()
|
||||||
|
|
||||||
|
if (appendResults) {
|
||||||
|
recyclerView.scrollToPosition(firstVisible!!)
|
||||||
|
}
|
||||||
|
|
||||||
reloadBadges()
|
reloadBadges()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ class IntroActivity : MaterialIntroActivity() {
|
|||||||
override fun onCreate(savedInstanceState: Bundle?) {
|
override fun onCreate(savedInstanceState: Bundle?) {
|
||||||
super.onCreate(savedInstanceState)
|
super.onCreate(savedInstanceState)
|
||||||
|
|
||||||
AppCompatDelegate.setCompatVectorFromResourcesEnabled(true);
|
AppCompatDelegate.setCompatVectorFromResourcesEnabled(true)
|
||||||
|
|
||||||
addSlide(SlideFragmentBuilder()
|
addSlide(SlideFragmentBuilder()
|
||||||
.backgroundColor(R.color.colorPrimary)
|
.backgroundColor(R.color.colorPrimary)
|
||||||
|
@ -16,7 +16,12 @@ import android.view.MenuItem
|
|||||||
import android.view.View
|
import android.view.View
|
||||||
import android.view.inputmethod.EditorInfo
|
import android.view.inputmethod.EditorInfo
|
||||||
import android.widget.*
|
import android.widget.*
|
||||||
|
import apps.amine.bou.readerforselfoss.api.selfoss.SelfossApi
|
||||||
|
import apps.amine.bou.readerforselfoss.api.selfoss.SuccessResponse
|
||||||
|
import apps.amine.bou.readerforselfoss.utils.Config
|
||||||
|
import apps.amine.bou.readerforselfoss.utils.isBaseUrlValid
|
||||||
|
import com.crashlytics.android.Crashlytics
|
||||||
|
import com.ftinc.scoop.Scoop
|
||||||
import com.google.firebase.analytics.FirebaseAnalytics
|
import com.google.firebase.analytics.FirebaseAnalytics
|
||||||
import com.mikepenz.aboutlibraries.Libs
|
import com.mikepenz.aboutlibraries.Libs
|
||||||
import com.mikepenz.aboutlibraries.LibsBuilder
|
import com.mikepenz.aboutlibraries.LibsBuilder
|
||||||
@ -24,15 +29,6 @@ import retrofit2.Call
|
|||||||
import retrofit2.Callback
|
import retrofit2.Callback
|
||||||
import retrofit2.Response
|
import retrofit2.Response
|
||||||
|
|
||||||
import apps.amine.bou.readerforselfoss.api.selfoss.SelfossApi
|
|
||||||
import apps.amine.bou.readerforselfoss.api.selfoss.SuccessResponse
|
|
||||||
import apps.amine.bou.readerforselfoss.utils.Config
|
|
||||||
import apps.amine.bou.readerforselfoss.utils.checkAndDisplayStoreApk
|
|
||||||
import apps.amine.bou.readerforselfoss.utils.isBaseUrlValid
|
|
||||||
import com.crashlytics.android.Crashlytics
|
|
||||||
import com.ftinc.scoop.Scoop
|
|
||||||
import io.fabric.sdk.android.Fabric
|
|
||||||
|
|
||||||
|
|
||||||
class LoginActivity : AppCompatActivity() {
|
class LoginActivity : AppCompatActivity() {
|
||||||
|
|
||||||
@ -84,8 +80,6 @@ class LoginActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
if (settings.getString("url", "").isNotEmpty()) {
|
if (settings.getString("url", "").isNotEmpty()) {
|
||||||
goToMain()
|
goToMain()
|
||||||
} else {
|
|
||||||
this@LoginActivity.checkAndDisplayStoreApk()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
mFirebaseAnalytics = FirebaseAnalytics.getInstance(this)
|
mFirebaseAnalytics = FirebaseAnalytics.getInstance(this)
|
||||||
@ -211,7 +205,7 @@ class LoginActivity : AppCompatActivity() {
|
|||||||
editor.putBoolean("isSelfSignedCert", isWithSelfSignedCert)
|
editor.putBoolean("isSelfSignedCert", isWithSelfSignedCert)
|
||||||
editor.apply()
|
editor.apply()
|
||||||
|
|
||||||
val api = SelfossApi(this, this@LoginActivity, isWithSelfSignedCert)
|
val api = SelfossApi(this, this@LoginActivity, isWithSelfSignedCert, isWithSelfSignedCert)
|
||||||
api.login().enqueue(object : Callback<SuccessResponse> {
|
api.login().enqueue(object : Callback<SuccessResponse> {
|
||||||
private fun preferenceError(t: Throwable) {
|
private fun preferenceError(t: Throwable) {
|
||||||
editor.remove("url")
|
editor.remove("url")
|
||||||
|
@ -9,8 +9,11 @@ import android.widget.ImageView
|
|||||||
import apps.amine.bou.readerforselfoss.utils.Config
|
import apps.amine.bou.readerforselfoss.utils.Config
|
||||||
import com.anupcowkur.reservoir.Reservoir
|
import com.anupcowkur.reservoir.Reservoir
|
||||||
import com.bumptech.glide.Glide
|
import com.bumptech.glide.Glide
|
||||||
|
import com.bumptech.glide.request.RequestOptions
|
||||||
import com.crashlytics.android.Crashlytics
|
import com.crashlytics.android.Crashlytics
|
||||||
import com.ftinc.scoop.Scoop
|
import com.ftinc.scoop.Scoop
|
||||||
|
import com.github.stkent.amplify.feedback.DefaultEmailFeedbackCollector
|
||||||
|
import com.github.stkent.amplify.feedback.GooglePlayStoreFeedbackCollector
|
||||||
import com.github.stkent.amplify.tracking.Amplify
|
import com.github.stkent.amplify.tracking.Amplify
|
||||||
import com.mikepenz.materialdrawer.util.AbstractDrawerImageLoader
|
import com.mikepenz.materialdrawer.util.AbstractDrawerImageLoader
|
||||||
import com.mikepenz.materialdrawer.util.DrawerImageLoader
|
import com.mikepenz.materialdrawer.util.DrawerImageLoader
|
||||||
@ -48,7 +51,8 @@ class MyApp : MultiDexApplication() {
|
|||||||
|
|
||||||
private fun initAmplify() {
|
private fun initAmplify() {
|
||||||
Amplify.initSharedInstance(this)
|
Amplify.initSharedInstance(this)
|
||||||
.setFeedbackEmailAddress(getString(R.string.feedback_email))
|
.setPositiveFeedbackCollectors(GooglePlayStoreFeedbackCollector())
|
||||||
|
.setCriticalFeedbackCollectors(DefaultEmailFeedbackCollector(BuildConfig.FEEDBACK_EMAIL))
|
||||||
.applyAllDefaultRules()
|
.applyAllDefaultRules()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -63,11 +67,15 @@ class MyApp : MultiDexApplication() {
|
|||||||
private fun initDrawerImageLoader() {
|
private fun initDrawerImageLoader() {
|
||||||
DrawerImageLoader.init(object : AbstractDrawerImageLoader() {
|
DrawerImageLoader.init(object : AbstractDrawerImageLoader() {
|
||||||
override fun set(imageView: ImageView?, uri: Uri?, placeholder: Drawable?, tag: String?) {
|
override fun set(imageView: ImageView?, uri: Uri?, placeholder: Drawable?, tag: String?) {
|
||||||
Glide.with(imageView?.context).load(uri).placeholder(placeholder).into(imageView)
|
Glide.with(imageView?.context)
|
||||||
|
.load(uri)
|
||||||
|
.apply(RequestOptions.fitCenterTransform()
|
||||||
|
.placeholder(placeholder))
|
||||||
|
.into(imageView)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun cancel(imageView: ImageView?) {
|
override fun cancel(imageView: ImageView?) {
|
||||||
Glide.clear(imageView)
|
Glide.with(imageView?.context).clear(imageView)
|
||||||
}
|
}
|
||||||
|
|
||||||
override fun placeholder(ctx: Context?, tag: String?): Drawable {
|
override fun placeholder(ctx: Context?, tag: String?): Drawable {
|
||||||
|
@ -1,30 +1,28 @@
|
|||||||
package apps.amine.bou.readerforselfoss
|
package apps.amine.bou.readerforselfoss
|
||||||
|
|
||||||
import android.content.Intent
|
|
||||||
import android.net.Uri
|
|
||||||
import android.os.Bundle
|
import android.os.Bundle
|
||||||
|
import android.preference.PreferenceManager
|
||||||
import android.view.LayoutInflater
|
import android.view.LayoutInflater
|
||||||
import android.view.View
|
import android.view.View
|
||||||
import android.view.ViewGroup
|
import android.view.ViewGroup
|
||||||
import android.widget.ImageButton
|
import android.widget.ImageButton
|
||||||
import android.widget.ImageView
|
import android.widget.ImageView
|
||||||
import android.widget.TextView
|
import android.widget.TextView
|
||||||
|
|
||||||
import com.bumptech.glide.Glide
|
|
||||||
import org.sufficientlysecure.htmltextview.HtmlHttpImageGetter
|
|
||||||
import org.sufficientlysecure.htmltextview.HtmlTextView
|
|
||||||
import retrofit2.Call
|
|
||||||
import retrofit2.Callback
|
|
||||||
import retrofit2.Response
|
|
||||||
import xyz.klinker.android.drag_dismiss.activity.DragDismissActivity
|
|
||||||
|
|
||||||
import apps.amine.bou.readerforselfoss.api.mercury.MercuryApi
|
import apps.amine.bou.readerforselfoss.api.mercury.MercuryApi
|
||||||
import apps.amine.bou.readerforselfoss.api.mercury.ParsedContent
|
import apps.amine.bou.readerforselfoss.api.mercury.ParsedContent
|
||||||
import apps.amine.bou.readerforselfoss.utils.buildCustomTabsIntent
|
import apps.amine.bou.readerforselfoss.utils.buildCustomTabsIntent
|
||||||
import apps.amine.bou.readerforselfoss.utils.customtabs.CustomTabActivityHelper
|
import apps.amine.bou.readerforselfoss.utils.customtabs.CustomTabActivityHelper
|
||||||
import apps.amine.bou.readerforselfoss.utils.openItemUrl
|
import apps.amine.bou.readerforselfoss.utils.openItemUrl
|
||||||
import apps.amine.bou.readerforselfoss.utils.shareLink
|
import apps.amine.bou.readerforselfoss.utils.shareLink
|
||||||
|
import com.bumptech.glide.Glide
|
||||||
|
import com.bumptech.glide.request.RequestOptions
|
||||||
import com.ftinc.scoop.Scoop
|
import com.ftinc.scoop.Scoop
|
||||||
|
import org.sufficientlysecure.htmltextview.HtmlHttpImageGetter
|
||||||
|
import org.sufficientlysecure.htmltextview.HtmlTextView
|
||||||
|
import retrofit2.Call
|
||||||
|
import retrofit2.Callback
|
||||||
|
import retrofit2.Response
|
||||||
|
import xyz.klinker.android.drag_dismiss.activity.DragDismissActivity
|
||||||
|
|
||||||
|
|
||||||
class ReaderActivity : DragDismissActivity() {
|
class ReaderActivity : DragDismissActivity() {
|
||||||
@ -44,13 +42,14 @@ class ReaderActivity : DragDismissActivity() {
|
|||||||
Scoop.getInstance().apply(this)
|
Scoop.getInstance().apply(this)
|
||||||
val v = inflater.inflate(R.layout.activity_reader, parent, false)
|
val v = inflater.inflate(R.layout.activity_reader, parent, false)
|
||||||
showProgressBar()
|
showProgressBar()
|
||||||
|
val prefs = PreferenceManager.getDefaultSharedPreferences(this)
|
||||||
|
|
||||||
val image: ImageView = v.findViewById(R.id.imageView)
|
val image: ImageView = v.findViewById(R.id.imageView)
|
||||||
val source: TextView = v.findViewById(R.id.source)
|
val source: TextView = v.findViewById(R.id.source)
|
||||||
val title: TextView = v.findViewById(R.id.title)
|
val title: TextView = v.findViewById(R.id.title)
|
||||||
val content: HtmlTextView = v.findViewById(R.id.content)
|
val content: HtmlTextView = v.findViewById(R.id.content)
|
||||||
val url = intent.getStringExtra("url")
|
val url = intent.getStringExtra("url")
|
||||||
val parser = MercuryApi(getString(R.string.mercury))
|
val parser = MercuryApi(BuildConfig.MERCURY_KEY, prefs.getBoolean("should_log_everything", false))
|
||||||
val browserBtn: ImageButton = v.findViewById(R.id.browserBtn)
|
val browserBtn: ImageButton = v.findViewById(R.id.browserBtn)
|
||||||
val shareBtn: ImageButton = v.findViewById(R.id.shareBtn)
|
val shareBtn: ImageButton = v.findViewById(R.id.shareBtn)
|
||||||
|
|
||||||
@ -75,9 +74,9 @@ class ReaderActivity : DragDismissActivity() {
|
|||||||
if (response.body()!!.lead_image_url != null && !response.body()!!.lead_image_url.isEmpty())
|
if (response.body()!!.lead_image_url != null && !response.body()!!.lead_image_url.isEmpty())
|
||||||
Glide
|
Glide
|
||||||
.with(baseContext)
|
.with(baseContext)
|
||||||
.load(response.body()!!.lead_image_url)
|
|
||||||
.asBitmap()
|
.asBitmap()
|
||||||
.fitCenter()
|
.load(response.body()!!.lead_image_url)
|
||||||
|
.apply(RequestOptions.fitCenterTransform())
|
||||||
.into(image)
|
.into(image)
|
||||||
|
|
||||||
shareBtn.setOnClickListener {
|
shareBtn.setOnClickListener {
|
||||||
|
@ -40,7 +40,7 @@ class SourcesActivity : AppCompatActivity() {
|
|||||||
|
|
||||||
val prefs = PreferenceManager.getDefaultSharedPreferences(this)
|
val prefs = PreferenceManager.getDefaultSharedPreferences(this)
|
||||||
|
|
||||||
val api = SelfossApi(this, this@SourcesActivity, prefs.getBoolean("isSelfSignedCert", false))
|
val api = SelfossApi(this, this@SourcesActivity, prefs.getBoolean("isSelfSignedCert", false), prefs.getBoolean("should_log_everything", false))
|
||||||
var items: ArrayList<Sources> = ArrayList()
|
var items: ArrayList<Sources> = ArrayList()
|
||||||
|
|
||||||
mFab.attachToRecyclerView(mRecyclerView)
|
mFab.attachToRecyclerView(mRecyclerView)
|
||||||
|
@ -32,6 +32,9 @@ import apps.amine.bou.readerforselfoss.api.selfoss.SuccessResponse
|
|||||||
import apps.amine.bou.readerforselfoss.themes.AppColors
|
import apps.amine.bou.readerforselfoss.themes.AppColors
|
||||||
import apps.amine.bou.readerforselfoss.utils.*
|
import apps.amine.bou.readerforselfoss.utils.*
|
||||||
import apps.amine.bou.readerforselfoss.utils.customtabs.CustomTabActivityHelper
|
import apps.amine.bou.readerforselfoss.utils.customtabs.CustomTabActivityHelper
|
||||||
|
import apps.amine.bou.readerforselfoss.utils.glide.bitmapCenterCrop
|
||||||
|
import apps.amine.bou.readerforselfoss.utils.glide.bitmapFitCenter
|
||||||
|
import apps.amine.bou.readerforselfoss.utils.glide.circularBitmapDrawable
|
||||||
import com.crashlytics.android.Crashlytics
|
import com.crashlytics.android.Crashlytics
|
||||||
import kotlin.collections.ArrayList
|
import kotlin.collections.ArrayList
|
||||||
|
|
||||||
@ -49,7 +52,7 @@ class ItemCardAdapter(private val app: Activity,
|
|||||||
private val generator: ColorGenerator = ColorGenerator.MATERIAL
|
private val generator: ColorGenerator = ColorGenerator.MATERIAL
|
||||||
|
|
||||||
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
|
override fun onCreateViewHolder(parent: ViewGroup, viewType: Int): ViewHolder {
|
||||||
val v = LayoutInflater.from(c).inflate(R.layout.card_item, parent, false) as ConstraintLayout
|
val v = LayoutInflater.from(c).inflate(R.layout.card_item, parent, false) as CardView
|
||||||
return ViewHolder(v)
|
return ViewHolder(v)
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -63,17 +66,12 @@ class ItemCardAdapter(private val app: Activity,
|
|||||||
holder.sourceTitleAndDate.text = itm.sourceAndDateText()
|
holder.sourceTitleAndDate.text = itm.sourceAndDateText()
|
||||||
|
|
||||||
if (itm.getThumbnail(c).isEmpty()) {
|
if (itm.getThumbnail(c).isEmpty()) {
|
||||||
Glide.clear(holder.itemImage)
|
Glide.with(c).clear(holder.itemImage)
|
||||||
holder.itemImage.setImageDrawable(null)
|
holder.itemImage.setImageDrawable(null)
|
||||||
} else {
|
|
||||||
if (fullHeightCards) {
|
|
||||||
c.bitmapFitCenter(itm.getThumbnail(c), holder.itemImage)
|
|
||||||
} else {
|
} else {
|
||||||
c.bitmapCenterCrop(itm.getThumbnail(c), holder.itemImage)
|
c.bitmapCenterCrop(itm.getThumbnail(c), holder.itemImage)
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
val fHolder = holder
|
|
||||||
if (itm.getIcon(c).isEmpty()) {
|
if (itm.getIcon(c).isEmpty()) {
|
||||||
val color = generator.getColor(itm.sourcetitle)
|
val color = generator.getColor(itm.sourcetitle)
|
||||||
|
|
||||||
@ -160,7 +158,7 @@ class ItemCardAdapter(private val app: Activity,
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
inner class ViewHolder(val mView: ConstraintLayout) : RecyclerView.ViewHolder(mView) {
|
inner class ViewHolder(val mView: CardView) : RecyclerView.ViewHolder(mView) {
|
||||||
lateinit var saveBtn: LikeButton
|
lateinit var saveBtn: LikeButton
|
||||||
lateinit var browserBtn: ImageButton
|
lateinit var browserBtn: ImageButton
|
||||||
lateinit var shareBtn: ImageButton
|
lateinit var shareBtn: ImageButton
|
||||||
@ -170,7 +168,7 @@ class ItemCardAdapter(private val app: Activity,
|
|||||||
lateinit var sourceTitleAndDate: TextView
|
lateinit var sourceTitleAndDate: TextView
|
||||||
|
|
||||||
init {
|
init {
|
||||||
(mView.findViewById<CardView>(R.id.card)).setCardBackgroundColor(appColors.cardBackground)
|
mView.setCardBackgroundColor(appColors.cardBackground)
|
||||||
handleClickListeners()
|
handleClickListeners()
|
||||||
handleCustomTabActions()
|
handleCustomTabActions()
|
||||||
}
|
}
|
||||||
@ -220,7 +218,7 @@ class ItemCardAdapter(private val app: Activity,
|
|||||||
}
|
}
|
||||||
|
|
||||||
browserBtn.setOnClickListener {
|
browserBtn.setOnClickListener {
|
||||||
c.openInBrowser(items[adapterPosition])
|
c.openInBrowserAsNewTask(items[adapterPosition])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -29,6 +29,8 @@ import apps.amine.bou.readerforselfoss.api.selfoss.SelfossApi
|
|||||||
import apps.amine.bou.readerforselfoss.api.selfoss.SuccessResponse
|
import apps.amine.bou.readerforselfoss.api.selfoss.SuccessResponse
|
||||||
import apps.amine.bou.readerforselfoss.utils.*
|
import apps.amine.bou.readerforselfoss.utils.*
|
||||||
import apps.amine.bou.readerforselfoss.utils.customtabs.CustomTabActivityHelper
|
import apps.amine.bou.readerforselfoss.utils.customtabs.CustomTabActivityHelper
|
||||||
|
import apps.amine.bou.readerforselfoss.utils.glide.bitmapCenterCrop
|
||||||
|
import apps.amine.bou.readerforselfoss.utils.glide.circularBitmapDrawable
|
||||||
import com.crashlytics.android.Crashlytics
|
import com.crashlytics.android.Crashlytics
|
||||||
import kotlin.collections.ArrayList
|
import kotlin.collections.ArrayList
|
||||||
|
|
||||||
@ -224,7 +226,7 @@ class ItemListAdapter(private val app: Activity,
|
|||||||
}
|
}
|
||||||
|
|
||||||
browserBtn.setOnClickListener {
|
browserBtn.setOnClickListener {
|
||||||
c.openInBrowser(items[adapterPosition])
|
c.openInBrowserAsNewTask(items[adapterPosition])
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -21,7 +21,7 @@ import apps.amine.bou.readerforselfoss.R
|
|||||||
import apps.amine.bou.readerforselfoss.api.selfoss.SelfossApi
|
import apps.amine.bou.readerforselfoss.api.selfoss.SelfossApi
|
||||||
import apps.amine.bou.readerforselfoss.api.selfoss.Sources
|
import apps.amine.bou.readerforselfoss.api.selfoss.Sources
|
||||||
import apps.amine.bou.readerforselfoss.api.selfoss.SuccessResponse
|
import apps.amine.bou.readerforselfoss.api.selfoss.SuccessResponse
|
||||||
import apps.amine.bou.readerforselfoss.utils.circularBitmapDrawable
|
import apps.amine.bou.readerforselfoss.utils.glide.circularBitmapDrawable
|
||||||
import apps.amine.bou.readerforselfoss.utils.toTextDrawableString
|
import apps.amine.bou.readerforselfoss.utils.toTextDrawableString
|
||||||
|
|
||||||
|
|
||||||
|
@ -9,13 +9,16 @@ import retrofit2.converter.gson.GsonConverterFactory
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
class MercuryApi(private val key: String) {
|
class MercuryApi(private val key: String, shouldLog: Boolean) {
|
||||||
private val service: MercuryService
|
private val service: MercuryService
|
||||||
|
|
||||||
init {
|
init {
|
||||||
|
|
||||||
val interceptor = HttpLoggingInterceptor()
|
val interceptor = HttpLoggingInterceptor()
|
||||||
interceptor.level = HttpLoggingInterceptor.Level.BODY
|
interceptor.level = if (shouldLog)
|
||||||
|
HttpLoggingInterceptor.Level.BODY
|
||||||
|
else
|
||||||
|
HttpLoggingInterceptor.Level.NONE
|
||||||
val client = OkHttpClient.Builder().addInterceptor(interceptor).build()
|
val client = OkHttpClient.Builder().addInterceptor(interceptor).build()
|
||||||
|
|
||||||
val gson = GsonBuilder()
|
val gson = GsonBuilder()
|
||||||
|
@ -2,20 +2,20 @@ package apps.amine.bou.readerforselfoss.api.mercury
|
|||||||
|
|
||||||
import android.os.Parcel
|
import android.os.Parcel
|
||||||
import android.os.Parcelable
|
import android.os.Parcelable
|
||||||
|
import com.google.gson.annotations.SerializedName
|
||||||
|
|
||||||
|
|
||||||
|
class ParsedContent(@SerializedName("title") val title: String,
|
||||||
class ParsedContent(val title: String,
|
@SerializedName("content") val content: String,
|
||||||
val content: String,
|
@SerializedName("date_published") val date_published: String,
|
||||||
val date_published: String,
|
@SerializedName("lead_image_url") val lead_image_url: String,
|
||||||
val lead_image_url: String,
|
@SerializedName("dek") val dek: String,
|
||||||
val dek: String,
|
@SerializedName("url") val url: String,
|
||||||
val url: String,
|
@SerializedName("domain") val domain: String,
|
||||||
val domain: String,
|
@SerializedName("excerpt") val excerpt: String,
|
||||||
val excerpt: String,
|
@SerializedName("total_pages") val total_pages: Int,
|
||||||
val total_pages: Int,
|
@SerializedName("rendered_pages") val rendered_pages: Int,
|
||||||
val rendered_pages: Int,
|
@SerializedName("next_page_url") val next_page_url: String) : Parcelable {
|
||||||
val next_page_url: String) : Parcelable {
|
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
@JvmField val CREATOR: Parcelable.Creator<ParsedContent> = object : Parcelable.Creator<ParsedContent> {
|
@JvmField val CREATOR: Parcelable.Creator<ParsedContent> = object : Parcelable.Creator<ParsedContent> {
|
||||||
|
@ -2,11 +2,6 @@ package apps.amine.bou.readerforselfoss.api.selfoss
|
|||||||
|
|
||||||
import android.app.Activity
|
import android.app.Activity
|
||||||
import android.content.Context
|
import android.content.Context
|
||||||
import android.content.Intent
|
|
||||||
import android.support.v7.app.AlertDialog
|
|
||||||
import android.widget.Toast
|
|
||||||
import apps.amine.bou.readerforselfoss.LoginActivity
|
|
||||||
import apps.amine.bou.readerforselfoss.R
|
|
||||||
import java.util.concurrent.ConcurrentHashMap
|
import java.util.concurrent.ConcurrentHashMap
|
||||||
|
|
||||||
import com.burgstaller.okhttp.AuthenticationCacheInterceptor
|
import com.burgstaller.okhttp.AuthenticationCacheInterceptor
|
||||||
@ -23,13 +18,14 @@ import retrofit2.Retrofit
|
|||||||
import retrofit2.converter.gson.GsonConverterFactory
|
import retrofit2.converter.gson.GsonConverterFactory
|
||||||
|
|
||||||
import apps.amine.bou.readerforselfoss.utils.Config
|
import apps.amine.bou.readerforselfoss.utils.Config
|
||||||
import java.security.cert.CertificateException
|
import apps.amine.bou.readerforselfoss.utils.getUnsafeHttpClient
|
||||||
import java.security.cert.X509Certificate
|
import okhttp3.logging.HttpLoggingInterceptor
|
||||||
import javax.net.ssl.*
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// codebeat:disable[ARITY,TOO_MANY_FUNCTIONS]
|
// codebeat:disable[ARITY,TOO_MANY_FUNCTIONS]
|
||||||
class SelfossApi(c: Context, callingActivity: Activity, isWithSelfSignedCert: Boolean) {
|
class SelfossApi(c: Context, callingActivity: Activity, isWithSelfSignedCert: Boolean, shouldLog: Boolean) {
|
||||||
|
|
||||||
private lateinit var service: SelfossService
|
private lateinit var service: SelfossService
|
||||||
private val config: Config = Config(c)
|
private val config: Config = Config(c)
|
||||||
@ -38,36 +34,7 @@ class SelfossApi(c: Context, callingActivity: Activity, isWithSelfSignedCert: Bo
|
|||||||
|
|
||||||
fun OkHttpClient.Builder.maybeWithSelfSigned(isWithSelfSignedCert: Boolean): OkHttpClient.Builder =
|
fun OkHttpClient.Builder.maybeWithSelfSigned(isWithSelfSignedCert: Boolean): OkHttpClient.Builder =
|
||||||
if (isWithSelfSignedCert) {
|
if (isWithSelfSignedCert) {
|
||||||
try {
|
getUnsafeHttpClient()
|
||||||
// Create a trust manager that does not validate certificate chains
|
|
||||||
val trustAllCerts = arrayOf<TrustManager>(object : X509TrustManager {
|
|
||||||
override fun getAcceptedIssuers(): Array<X509Certificate> =
|
|
||||||
arrayOf()
|
|
||||||
|
|
||||||
@Throws(CertificateException::class)
|
|
||||||
override fun checkClientTrusted(chain: Array<java.security.cert.X509Certificate>, authType: String) {
|
|
||||||
}
|
|
||||||
|
|
||||||
@Throws(CertificateException::class)
|
|
||||||
override fun checkServerTrusted(chain: Array<java.security.cert.X509Certificate>, authType: String) {
|
|
||||||
}
|
|
||||||
|
|
||||||
})
|
|
||||||
|
|
||||||
// Install the all-trusting trust manager
|
|
||||||
val sslContext = SSLContext.getInstance("SSL")
|
|
||||||
sslContext.init(null, trustAllCerts, java.security.SecureRandom())
|
|
||||||
|
|
||||||
val sslSocketFactory = sslContext.socketFactory
|
|
||||||
|
|
||||||
OkHttpClient.Builder()
|
|
||||||
.sslSocketFactory(sslSocketFactory, trustAllCerts[0] as X509TrustManager)
|
|
||||||
.hostnameVerifier { _, _ -> true }
|
|
||||||
|
|
||||||
} catch (e: Exception) {
|
|
||||||
throw RuntimeException(e)
|
|
||||||
}
|
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
this
|
this
|
||||||
}
|
}
|
||||||
@ -78,14 +45,13 @@ class SelfossApi(c: Context, callingActivity: Activity, isWithSelfSignedCert: Bo
|
|||||||
.with("basic", BasicAuthenticator(this))
|
.with("basic", BasicAuthenticator(this))
|
||||||
.build()
|
.build()
|
||||||
|
|
||||||
fun DispatchingAuthenticator.getHttpClien(isWithSelfSignedCert: Boolean): OkHttpClient {
|
fun DispatchingAuthenticator.getHttpClien(isWithSelfSignedCert: Boolean): OkHttpClient.Builder {
|
||||||
val authCache = ConcurrentHashMap<String, CachingAuthenticator>()
|
val authCache = ConcurrentHashMap<String, CachingAuthenticator>()
|
||||||
return OkHttpClient
|
return OkHttpClient
|
||||||
.Builder()
|
.Builder()
|
||||||
.maybeWithSelfSigned(isWithSelfSignedCert)
|
.maybeWithSelfSigned(isWithSelfSignedCert)
|
||||||
.authenticator(CachingAuthenticatorDecorator(this, authCache))
|
.authenticator(CachingAuthenticatorDecorator(this, authCache))
|
||||||
.addInterceptor(AuthenticationCacheInterceptor(authCache))
|
.addInterceptor(AuthenticationCacheInterceptor(authCache))
|
||||||
.build()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
@ -105,13 +71,23 @@ class SelfossApi(c: Context, callingActivity: Activity, isWithSelfSignedCert: Bo
|
|||||||
.setLenient()
|
.setLenient()
|
||||||
.create()
|
.create()
|
||||||
|
|
||||||
|
val logging = HttpLoggingInterceptor()
|
||||||
|
|
||||||
|
logging.level = if (shouldLog)
|
||||||
|
HttpLoggingInterceptor.Level.BODY
|
||||||
|
else
|
||||||
|
HttpLoggingInterceptor.Level.NONE
|
||||||
|
|
||||||
|
val httpClient = authenticator.getHttpClien(isWithSelfSignedCert)
|
||||||
|
|
||||||
|
httpClient.addInterceptor(logging)
|
||||||
|
|
||||||
try {
|
try {
|
||||||
val retrofit =
|
val retrofit =
|
||||||
Retrofit
|
Retrofit
|
||||||
.Builder()
|
.Builder()
|
||||||
.baseUrl(config.baseUrl)
|
.baseUrl(config.baseUrl)
|
||||||
.client(authenticator.getHttpClien(isWithSelfSignedCert))
|
.client(httpClient.build())
|
||||||
.addConverterFactory(GsonConverterFactory.create(gson))
|
.addConverterFactory(GsonConverterFactory.create(gson))
|
||||||
.build()
|
.build()
|
||||||
service = retrofit.create(SelfossService::class.java)
|
service = retrofit.create(SelfossService::class.java)
|
||||||
@ -123,17 +99,17 @@ class SelfossApi(c: Context, callingActivity: Activity, isWithSelfSignedCert: Bo
|
|||||||
fun login(): Call<SuccessResponse> =
|
fun login(): Call<SuccessResponse> =
|
||||||
service.loginToSelfoss(config.userLogin, config.userPassword)
|
service.loginToSelfoss(config.userLogin, config.userPassword)
|
||||||
|
|
||||||
fun readItems(tag: String?, sourceId: Long?, search: String?): Call<List<Item>> =
|
fun readItems(tag: String?, sourceId: Long?, search: String?, itemsNumber: Int, offset: Int): Call<List<Item>> =
|
||||||
getItems("read", tag, sourceId, search, 200)
|
getItems("read", tag, sourceId, search, itemsNumber, offset)
|
||||||
|
|
||||||
fun newItems(tag: String?, sourceId: Long?, search: String?, itemsNumber: Int): Call<List<Item>> =
|
fun newItems(tag: String?, sourceId: Long?, search: String?, itemsNumber: Int, offset: Int): Call<List<Item>> =
|
||||||
getItems("unread", tag, sourceId, search, itemsNumber)
|
getItems("unread", tag, sourceId, search, itemsNumber, offset)
|
||||||
|
|
||||||
fun starredItems(tag: String?, sourceId: Long?, search: String?): Call<List<Item>> =
|
fun starredItems(tag: String?, sourceId: Long?, search: String?, itemsNumber: Int, offset: Int): Call<List<Item>> =
|
||||||
getItems("starred", tag, sourceId, search, 200)
|
getItems("starred", tag, sourceId, search, itemsNumber, offset)
|
||||||
|
|
||||||
private fun getItems(type: String, tag: String?, sourceId: Long?, search: String?, items: Int): Call<List<Item>> =
|
private fun getItems(type: String, tag: String?, sourceId: Long?, search: String?, items: Int, offset: Int): Call<List<Item>> =
|
||||||
service.getItems(type, tag, sourceId, search, userName, password, items)
|
service.getItems(type, tag, sourceId, search, userName, password, items, offset)
|
||||||
|
|
||||||
fun markItem(itemId: String): Call<SuccessResponse> =
|
fun markItem(itemId: String): Call<SuccessResponse> =
|
||||||
service.markAsRead(itemId, userName, password)
|
service.markAsRead(itemId, userName, password)
|
||||||
|
@ -7,7 +7,7 @@ import android.os.Parcelable
|
|||||||
|
|
||||||
import apps.amine.bou.readerforselfoss.utils.Config
|
import apps.amine.bou.readerforselfoss.utils.Config
|
||||||
import apps.amine.bou.readerforselfoss.utils.isEmptyOrNullOrNullString
|
import apps.amine.bou.readerforselfoss.utils.isEmptyOrNullOrNullString
|
||||||
|
import com.google.gson.annotations.SerializedName
|
||||||
|
|
||||||
|
|
||||||
private fun constructUrl(config: Config?, path: String, file: String): String {
|
private fun constructUrl(config: Config?, path: String, file: String): String {
|
||||||
@ -19,23 +19,28 @@ private fun constructUrl(config: Config?, path: String, file: String): String {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
data class Tag(val tag: String, val color: String, val unread: Int)
|
data class Tag(@SerializedName("tag") val tag: String,
|
||||||
|
@SerializedName("color") val color: String,
|
||||||
|
@SerializedName("unread") val unread: Int)
|
||||||
|
|
||||||
class SuccessResponse(val success: Boolean) {
|
class SuccessResponse(@SerializedName("success") val success: Boolean) {
|
||||||
val isSuccess: Boolean
|
val isSuccess: Boolean
|
||||||
get() = success
|
get() = success
|
||||||
}
|
}
|
||||||
|
|
||||||
class Stats(val total: Int, val unread: Int, val starred: Int)
|
class Stats(@SerializedName("total") val total: Int,
|
||||||
|
@SerializedName("unread") val unread: Int,
|
||||||
|
@SerializedName("starred") val starred: Int)
|
||||||
|
|
||||||
data class Spout(val name: String, val description: String)
|
data class Spout(@SerializedName("name") val name: String,
|
||||||
|
@SerializedName("description") val description: String)
|
||||||
|
|
||||||
data class Sources(val id: String,
|
data class Sources(@SerializedName("id") val id: String,
|
||||||
val title: String,
|
@SerializedName("title") val title: String,
|
||||||
val tags: String,
|
@SerializedName("tags") val tags: String,
|
||||||
val spout: String,
|
@SerializedName("spout") val spout: String,
|
||||||
val error: String,
|
@SerializedName("error") val error: String,
|
||||||
val icon: String) {
|
@SerializedName("icon") val icon: String) {
|
||||||
var config: Config? = null
|
var config: Config? = null
|
||||||
|
|
||||||
fun getIcon(app: Context): String {
|
fun getIcon(app: Context): String {
|
||||||
@ -47,15 +52,15 @@ data class Sources(val id: String,
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
data class Item(val id: String,
|
data class Item(@SerializedName("id") val id: String,
|
||||||
val datetime: String,
|
@SerializedName("datetime") val datetime: String,
|
||||||
val title: String,
|
@SerializedName("title") val title: String,
|
||||||
val unread: Boolean,
|
@SerializedName("unread") val unread: Boolean,
|
||||||
val starred: Boolean,
|
@SerializedName("starred") val starred: Boolean,
|
||||||
val thumbnail: String,
|
@SerializedName("thumbnail") val thumbnail: String,
|
||||||
val icon: String,
|
@SerializedName("icon") val icon: String,
|
||||||
val link: String,
|
@SerializedName("link") val link: String,
|
||||||
val sourcetitle: String) : Parcelable {
|
@SerializedName("sourcetitle") val sourcetitle: String) : Parcelable {
|
||||||
|
|
||||||
var config: Config? = null
|
var config: Config? = null
|
||||||
|
|
||||||
@ -109,20 +114,26 @@ data class Item(val id: String,
|
|||||||
// TODO: maybe find a better way to handle these kind of urls
|
// TODO: maybe find a better way to handle these kind of urls
|
||||||
fun getLinkDecoded(): String {
|
fun getLinkDecoded(): String {
|
||||||
var stringUrl: String
|
var stringUrl: String
|
||||||
if (link.startsWith("http://news.google.com/news/") || link.startsWith("https://news.google.com/news/")) {
|
stringUrl = if (link.startsWith("http://news.google.com/news/") || link.startsWith("https://news.google.com/news/")) {
|
||||||
if (link.contains("&url=")) {
|
if (link.contains("&url=")) {
|
||||||
stringUrl = link.substringAfter("&url=")
|
link.substringAfter("&url=")
|
||||||
} else {
|
} else {
|
||||||
stringUrl = this.link.replace("&", "&")
|
this.link.replace("&", "&")
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
stringUrl = this.link.replace("&", "&")
|
this.link.replace("&", "&")
|
||||||
}
|
}
|
||||||
|
|
||||||
// handle :443 => https
|
// handle :443 => https
|
||||||
if (stringUrl.contains(":443")) {
|
if (stringUrl.contains(":443")) {
|
||||||
stringUrl = stringUrl.replace(":443", "").replace("http://", "https://")
|
stringUrl = stringUrl.replace(":443", "").replace("http://", "https://")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// handle url not starting with http
|
||||||
|
if (stringUrl.startsWith("//")) {
|
||||||
|
stringUrl = "http:" + stringUrl
|
||||||
|
}
|
||||||
|
|
||||||
return stringUrl
|
return stringUrl
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -23,7 +23,8 @@ internal interface SelfossService {
|
|||||||
@Query("search") search: String?,
|
@Query("search") search: String?,
|
||||||
@Query("username") username: String,
|
@Query("username") username: String,
|
||||||
@Query("password") password: String,
|
@Query("password") password: String,
|
||||||
@Query("items") items: Int): Call<List<Item>>
|
@Query("items") items: Int,
|
||||||
|
@Query("offset") offset: Int): Call<List<Item>>
|
||||||
|
|
||||||
@POST("mark/{id}")
|
@POST("mark/{id}")
|
||||||
fun markAsRead(@Path("id") id: String,
|
fun markAsRead(@Path("id") id: String,
|
||||||
|
@ -27,6 +27,7 @@ import android.widget.Toast;
|
|||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
|
import apps.amine.bou.readerforselfoss.BuildConfig;
|
||||||
import apps.amine.bou.readerforselfoss.R;
|
import apps.amine.bou.readerforselfoss.R;
|
||||||
import apps.amine.bou.readerforselfoss.utils.Config;
|
import apps.amine.bou.readerforselfoss.utils.Config;
|
||||||
import com.ftinc.scoop.ui.ScoopSettingsActivity;
|
import com.ftinc.scoop.ui.ScoopSettingsActivity;
|
||||||
@ -242,7 +243,7 @@ public class SettingsActivity extends AppCompatPreferenceActivity {
|
|||||||
findPreference( "trackerLink" ).setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() {
|
findPreference( "trackerLink" ).setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() {
|
||||||
@Override
|
@Override
|
||||||
public boolean onPreferenceClick(Preference preference) {
|
public boolean onPreferenceClick(Preference preference) {
|
||||||
openUrl(Uri.parse(getString(R.string.tracker_url)));
|
openUrl(Uri.parse(BuildConfig.TRACKER_URL));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
@ -250,7 +251,15 @@ public class SettingsActivity extends AppCompatPreferenceActivity {
|
|||||||
findPreference("sourceLink").setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() {
|
findPreference("sourceLink").setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() {
|
||||||
@Override
|
@Override
|
||||||
public boolean onPreferenceClick(Preference preference) {
|
public boolean onPreferenceClick(Preference preference) {
|
||||||
openUrl(Uri.parse(getString(R.string.source_url)));
|
openUrl(Uri.parse(BuildConfig.SOURCE_URL));
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
findPreference("translation").setOnPreferenceClickListener(new Preference.OnPreferenceClickListener() {
|
||||||
|
@Override
|
||||||
|
public boolean onPreferenceClick(Preference preference) {
|
||||||
|
openUrl(Uri.parse(BuildConfig.TRANSLATION_URL));
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
@ -5,8 +5,6 @@ import android.content.Context
|
|||||||
import android.support.annotation.ColorInt
|
import android.support.annotation.ColorInt
|
||||||
import android.util.TypedValue
|
import android.util.TypedValue
|
||||||
import apps.amine.bou.readerforselfoss.R
|
import apps.amine.bou.readerforselfoss.R
|
||||||
import java.lang.reflect.AccessibleObject.setAccessible
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class AppColors(a: Activity) {
|
class AppColors(a: Activity) {
|
||||||
|
@ -5,51 +5,13 @@ import android.content.Intent
|
|||||||
import android.content.SharedPreferences
|
import android.content.SharedPreferences
|
||||||
import android.net.Uri
|
import android.net.Uri
|
||||||
import android.support.v7.app.AlertDialog
|
import android.support.v7.app.AlertDialog
|
||||||
import android.text.TextUtils
|
|
||||||
import android.util.Patterns
|
|
||||||
|
|
||||||
import com.google.firebase.remoteconfig.FirebaseRemoteConfig
|
import com.google.firebase.remoteconfig.FirebaseRemoteConfig
|
||||||
import okhttp3.HttpUrl
|
|
||||||
|
|
||||||
import apps.amine.bou.readerforselfoss.BuildConfig
|
|
||||||
import apps.amine.bou.readerforselfoss.R
|
import apps.amine.bou.readerforselfoss.R
|
||||||
import apps.amine.bou.readerforselfoss.api.selfoss.Item
|
import apps.amine.bou.readerforselfoss.api.selfoss.Item
|
||||||
|
|
||||||
|
|
||||||
fun Context.checkAndDisplayStoreApk() = {
|
|
||||||
fun isStoreVersion(): Boolean =
|
|
||||||
try {
|
|
||||||
val installer = this.packageManager
|
|
||||||
.getInstallerPackageName(this.packageName)
|
|
||||||
!TextUtils.isEmpty(installer)
|
|
||||||
} catch (e: Throwable) {
|
|
||||||
false
|
|
||||||
}
|
|
||||||
|
|
||||||
if (!isStoreVersion() && !BuildConfig.GITHUB_VERSION) {
|
|
||||||
val alertDialog = AlertDialog.Builder(this).create()
|
|
||||||
alertDialog.setTitle(getString(R.string.warning_version))
|
|
||||||
alertDialog.setMessage(getString(R.string.text_version))
|
|
||||||
alertDialog.setButton(AlertDialog.BUTTON_NEUTRAL, "OK",
|
|
||||||
{ dialog, _ -> dialog.dismiss() })
|
|
||||||
alertDialog.show()
|
|
||||||
} else Unit
|
|
||||||
}
|
|
||||||
|
|
||||||
fun String.isUrlValid(): Boolean =
|
|
||||||
HttpUrl.parse(this) != null && Patterns.WEB_URL.matcher(this).matches()
|
|
||||||
|
|
||||||
fun String.isBaseUrlValid(): Boolean {
|
|
||||||
val baseUrl = HttpUrl.parse(this)
|
|
||||||
var existsAndEndsWithSlash = false
|
|
||||||
if (baseUrl != null) {
|
|
||||||
val pathSegments = baseUrl.pathSegments()
|
|
||||||
existsAndEndsWithSlash = "" == pathSegments[pathSegments.size - 1]
|
|
||||||
}
|
|
||||||
|
|
||||||
return Patterns.WEB_URL.matcher(this).matches() && existsAndEndsWithSlash
|
|
||||||
}
|
|
||||||
|
|
||||||
fun String?.isEmptyOrNullOrNullString(): Boolean =
|
fun String?.isEmptyOrNullOrNullString(): Boolean =
|
||||||
this == null || this == "null" || this.isEmpty()
|
this == null || this == "null" || this.isEmpty()
|
||||||
|
|
||||||
@ -97,7 +59,7 @@ fun String.longHash(): Long {
|
|||||||
val l = this.length
|
val l = this.length
|
||||||
val chars = this.toCharArray()
|
val chars = this.toCharArray()
|
||||||
|
|
||||||
for (i in 0..l - 1) {
|
for (i in 0 until l) {
|
||||||
h = 31 * h + chars[i].toLong()
|
h = 31 * h + chars[i].toLong()
|
||||||
}
|
}
|
||||||
return h
|
return h
|
||||||
@ -117,10 +79,3 @@ fun Context.shareLink(itemUrl: String) {
|
|||||||
sendIntent.type = "text/plain"
|
sendIntent.type = "text/plain"
|
||||||
startActivity(Intent.createChooser(sendIntent, getString(R.string.share)).setFlags(Intent.FLAG_ACTIVITY_NEW_TASK))
|
startActivity(Intent.createChooser(sendIntent, getString(R.string.share)).setFlags(Intent.FLAG_ACTIVITY_NEW_TASK))
|
||||||
}
|
}
|
||||||
|
|
||||||
fun Context.openInBrowser(i: Item) {
|
|
||||||
val intent = Intent(Intent.ACTION_VIEW)
|
|
||||||
intent.flags = Intent.FLAG_ACTIVITY_NEW_TASK
|
|
||||||
intent.data = Uri.parse(i.getLinkDecoded().toStringUriWithHttp())
|
|
||||||
startActivity(intent)
|
|
||||||
}
|
|
@ -1,24 +0,0 @@
|
|||||||
package apps.amine.bou.readerforselfoss.utils
|
|
||||||
|
|
||||||
import android.content.Context
|
|
||||||
import android.graphics.Bitmap
|
|
||||||
import android.support.v4.graphics.drawable.RoundedBitmapDrawableFactory
|
|
||||||
import android.widget.ImageView
|
|
||||||
import com.bumptech.glide.Glide
|
|
||||||
import com.bumptech.glide.request.target.BitmapImageViewTarget
|
|
||||||
|
|
||||||
|
|
||||||
fun Context.bitmapCenterCrop(url: String, iv: ImageView) =
|
|
||||||
Glide.with(this).load(url).asBitmap().centerCrop().into(iv)
|
|
||||||
|
|
||||||
fun Context.bitmapFitCenter(url: String, iv: ImageView) =
|
|
||||||
Glide.with(this).load(url).asBitmap().fitCenter().into(iv)
|
|
||||||
|
|
||||||
fun Context.circularBitmapDrawable(url: String, iv: ImageView) =
|
|
||||||
Glide.with(this).load(url).asBitmap().centerCrop().into(object : BitmapImageViewTarget(iv) {
|
|
||||||
override fun setResource(resource: Bitmap) {
|
|
||||||
val circularBitmapDrawable = RoundedBitmapDrawableFactory.create(resources, resource)
|
|
||||||
circularBitmapDrawable.isCircular = true
|
|
||||||
iv.setImageDrawable(circularBitmapDrawable)
|
|
||||||
}
|
|
||||||
})
|
|
@ -0,0 +1,39 @@
|
|||||||
|
package apps.amine.bou.readerforselfoss.utils
|
||||||
|
|
||||||
|
import okhttp3.OkHttpClient
|
||||||
|
import java.security.cert.CertificateException
|
||||||
|
import java.security.cert.X509Certificate
|
||||||
|
import javax.net.ssl.SSLContext
|
||||||
|
import javax.net.ssl.TrustManager
|
||||||
|
import javax.net.ssl.X509TrustManager
|
||||||
|
|
||||||
|
fun getUnsafeHttpClient() =
|
||||||
|
try {
|
||||||
|
// Create a trust manager that does not validate certificate chains
|
||||||
|
val trustAllCerts = arrayOf<TrustManager>(object : X509TrustManager {
|
||||||
|
override fun getAcceptedIssuers(): Array<X509Certificate> =
|
||||||
|
arrayOf()
|
||||||
|
|
||||||
|
@Throws(CertificateException::class)
|
||||||
|
override fun checkClientTrusted(chain: Array<java.security.cert.X509Certificate>, authType: String) {
|
||||||
|
}
|
||||||
|
|
||||||
|
@Throws(CertificateException::class)
|
||||||
|
override fun checkServerTrusted(chain: Array<java.security.cert.X509Certificate>, authType: String) {
|
||||||
|
}
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
// Install the all-trusting trust manager
|
||||||
|
val sslContext = SSLContext.getInstance("SSL")
|
||||||
|
sslContext.init(null, trustAllCerts, java.security.SecureRandom())
|
||||||
|
|
||||||
|
val sslSocketFactory = sslContext.socketFactory
|
||||||
|
|
||||||
|
OkHttpClient.Builder()
|
||||||
|
.sslSocketFactory(sslSocketFactory, trustAllCerts[0] as X509TrustManager)
|
||||||
|
.hostnameVerifier { _, _ -> true }
|
||||||
|
|
||||||
|
} catch (e: Exception) {
|
||||||
|
throw RuntimeException(e)
|
||||||
|
}
|
@ -16,7 +16,7 @@ fun String.toTextDrawableString(): String {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fun Item.sourceAndDateText(): String {
|
fun Item.sourceAndDateText(): String {
|
||||||
var formattedDate: String = try {
|
val formattedDate: String = try {
|
||||||
" " + DateUtils.getRelativeTimeSpanString(
|
" " + DateUtils.getRelativeTimeSpanString(
|
||||||
SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse(this.datetime).time,
|
SimpleDateFormat("yyyy-MM-dd HH:mm:ss").parse(this.datetime).time,
|
||||||
Date().time,
|
Date().time,
|
||||||
|
@ -7,14 +7,14 @@ import android.content.Intent
|
|||||||
import android.graphics.BitmapFactory
|
import android.graphics.BitmapFactory
|
||||||
import android.net.Uri
|
import android.net.Uri
|
||||||
import android.support.customtabs.CustomTabsIntent
|
import android.support.customtabs.CustomTabsIntent
|
||||||
|
import android.util.Patterns
|
||||||
import xyz.klinker.android.drag_dismiss.DragDismissIntentBuilder
|
import android.widget.Toast
|
||||||
|
|
||||||
import apps.amine.bou.readerforselfoss.R
|
import apps.amine.bou.readerforselfoss.R
|
||||||
import apps.amine.bou.readerforselfoss.ReaderActivity
|
import apps.amine.bou.readerforselfoss.ReaderActivity
|
||||||
import apps.amine.bou.readerforselfoss.api.selfoss.Item
|
import apps.amine.bou.readerforselfoss.api.selfoss.Item
|
||||||
import apps.amine.bou.readerforselfoss.utils.customtabs.CustomTabActivityHelper
|
import apps.amine.bou.readerforselfoss.utils.customtabs.CustomTabActivityHelper
|
||||||
|
import okhttp3.HttpUrl
|
||||||
|
import xyz.klinker.android.drag_dismiss.DragDismissIntentBuilder
|
||||||
|
|
||||||
|
|
||||||
fun Context.buildCustomTabsIntent(): CustomTabsIntent {
|
fun Context.buildCustomTabsIntent(): CustomTabsIntent {
|
||||||
@ -55,7 +55,11 @@ fun Context.openItemUrl(linkDecoded: String,
|
|||||||
internalBrowser: Boolean,
|
internalBrowser: Boolean,
|
||||||
articleViewer: Boolean,
|
articleViewer: Boolean,
|
||||||
app: Activity) {
|
app: Activity) {
|
||||||
if (!internalBrowser || !linkDecoded.isUrlValid()) {
|
|
||||||
|
if (!linkDecoded.isUrlValid()) {
|
||||||
|
Toast.makeText(this, this.getString(R.string.cant_open_invalid_url), Toast.LENGTH_LONG).show()
|
||||||
|
} else {
|
||||||
|
if (!internalBrowser) {
|
||||||
openInBrowser(linkDecoded, app)
|
openInBrowser(linkDecoded, app)
|
||||||
} else {
|
} else {
|
||||||
if (articleViewer) {
|
if (articleViewer) {
|
||||||
@ -64,6 +68,7 @@ fun Context.openItemUrl(linkDecoded: String,
|
|||||||
DragDismissIntentBuilder(this)
|
DragDismissIntentBuilder(this)
|
||||||
.setFullscreenOnTablets(true) // defaults to false, tablets will have padding on each side
|
.setFullscreenOnTablets(true) // defaults to false, tablets will have padding on each side
|
||||||
.setDragElasticity(DragDismissIntentBuilder.DragElasticity.NORMAL) // Larger elasticities will make it easier to dismiss.
|
.setDragElasticity(DragDismissIntentBuilder.DragElasticity.NORMAL) // Larger elasticities will make it easier to dismiss.
|
||||||
|
.setDrawUnderStatusBar(true)
|
||||||
.build(intent)
|
.build(intent)
|
||||||
|
|
||||||
intent.putExtra("url", linkDecoded)
|
intent.putExtra("url", linkDecoded)
|
||||||
@ -82,9 +87,31 @@ fun Context.openItemUrl(linkDecoded: String,
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private fun openInBrowser(linkDecoded: String, app: Activity) {
|
private fun openInBrowser(linkDecoded: String, app: Activity) {
|
||||||
val intent = Intent(Intent.ACTION_VIEW)
|
val intent = Intent(Intent.ACTION_VIEW)
|
||||||
intent.data = Uri.parse(linkDecoded)
|
intent.data = Uri.parse(linkDecoded)
|
||||||
app.startActivity(intent)
|
app.startActivity(intent)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fun String.isUrlValid(): Boolean =
|
||||||
|
HttpUrl.parse(this) != null && Patterns.WEB_URL.matcher(this).matches()
|
||||||
|
|
||||||
|
fun String.isBaseUrlValid(): Boolean {
|
||||||
|
val baseUrl = HttpUrl.parse(this)
|
||||||
|
var existsAndEndsWithSlash = false
|
||||||
|
if (baseUrl != null) {
|
||||||
|
val pathSegments = baseUrl.pathSegments()
|
||||||
|
existsAndEndsWithSlash = "" == pathSegments[pathSegments.size - 1]
|
||||||
|
}
|
||||||
|
|
||||||
|
return Patterns.WEB_URL.matcher(this).matches() && existsAndEndsWithSlash
|
||||||
|
}
|
||||||
|
|
||||||
|
fun Context.openInBrowserAsNewTask(i: Item) {
|
||||||
|
val intent = Intent(Intent.ACTION_VIEW)
|
||||||
|
intent.flags = Intent.FLAG_ACTIVITY_NEW_TASK
|
||||||
|
intent.data = Uri.parse(i.getLinkDecoded().toStringUriWithHttp())
|
||||||
|
startActivity(intent)
|
||||||
|
}
|
||||||
|
@ -0,0 +1,29 @@
|
|||||||
|
package apps.amine.bou.readerforselfoss.utils.glide
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import android.graphics.Bitmap
|
||||||
|
import android.support.v4.graphics.drawable.RoundedBitmapDrawableFactory
|
||||||
|
import android.widget.ImageView
|
||||||
|
import com.bumptech.glide.Glide
|
||||||
|
import com.bumptech.glide.request.RequestOptions
|
||||||
|
import com.bumptech.glide.request.target.BitmapImageViewTarget
|
||||||
|
|
||||||
|
|
||||||
|
fun Context.bitmapCenterCrop(url: String, iv: ImageView) =
|
||||||
|
Glide.with(this).asBitmap().load(url).apply(RequestOptions.centerCropTransform()).into(iv)
|
||||||
|
|
||||||
|
fun Context.bitmapFitCenter(url: String, iv: ImageView) =
|
||||||
|
Glide.with(this).asBitmap().load(url).apply(RequestOptions.fitCenterTransform()).into(iv)
|
||||||
|
|
||||||
|
fun Context.circularBitmapDrawable(url: String, iv: ImageView) =
|
||||||
|
Glide.with(this)
|
||||||
|
.asBitmap()
|
||||||
|
.load(url)
|
||||||
|
.apply(RequestOptions.centerCropTransform()).
|
||||||
|
into(object : BitmapImageViewTarget(iv) {
|
||||||
|
override fun setResource(resource: Bitmap?) {
|
||||||
|
val circularBitmapDrawable = RoundedBitmapDrawableFactory.create(resources, resource)
|
||||||
|
circularBitmapDrawable.isCircular = true
|
||||||
|
iv.setImageDrawable(circularBitmapDrawable)
|
||||||
|
}
|
||||||
|
})
|
@ -0,0 +1,32 @@
|
|||||||
|
package apps.amine.bou.readerforselfoss.utils.glide
|
||||||
|
|
||||||
|
import android.content.Context
|
||||||
|
import apps.amine.bou.readerforselfoss.utils.Config
|
||||||
|
import apps.amine.bou.readerforselfoss.utils.getUnsafeHttpClient
|
||||||
|
import com.bumptech.glide.Glide
|
||||||
|
import com.bumptech.glide.GlideBuilder
|
||||||
|
import com.bumptech.glide.Registry
|
||||||
|
import com.bumptech.glide.module.GlideModule
|
||||||
|
import com.bumptech.glide.load.model.GlideUrl
|
||||||
|
import java.io.InputStream
|
||||||
|
|
||||||
|
|
||||||
|
class SelfSignedGlideModule : GlideModule {
|
||||||
|
|
||||||
|
override fun applyOptions(context: Context?, builder: GlideBuilder?) {}
|
||||||
|
|
||||||
|
override fun registerComponents(context: Context?, glide: Glide?, registry: Registry?) {
|
||||||
|
|
||||||
|
if (context != null) {
|
||||||
|
val pref = context?.getSharedPreferences(Config.settingsName, Context.MODE_PRIVATE)
|
||||||
|
if (pref.getBoolean("isSelfSignedCert", false)) {
|
||||||
|
val client = getUnsafeHttpClient().build()
|
||||||
|
|
||||||
|
registry?.append(GlideUrl::class.java, InputStream::class.java,
|
||||||
|
com.bumptech.glide.integration.okhttp3.OkHttpUrlLoader.Factory(client))
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Binary file not shown.
Before Width: | Height: | Size: 434 B |
Binary file not shown.
Before Width: | Height: | Size: 307 B |
Binary file not shown.
Before Width: | Height: | Size: 542 B |
Binary file not shown.
Before Width: | Height: | Size: 768 B |
Binary file not shown.
Before Width: | Height: | Size: 1.1 KiB |
BIN
app/src/main/res/drawable/bg.png
Normal file
BIN
app/src/main/res/drawable/bg.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 406 B |
@ -55,9 +55,8 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:hint="@string/prompt_url"
|
android:hint="@string/prompt_url"
|
||||||
android:imeActionId="@+id/login"
|
|
||||||
android:inputType="textUri"
|
|
||||||
android:imeOptions="actionUnspecified"
|
android:imeOptions="actionUnspecified"
|
||||||
|
android:inputType="textUri"
|
||||||
android:maxLines="1"
|
android:maxLines="1"
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
@ -97,7 +97,7 @@
|
|||||||
android:padding="4dp"
|
android:padding="4dp"
|
||||||
android:scaleType="centerCrop"
|
android:scaleType="centerCrop"
|
||||||
android:src="@drawable/ic_open_in_browser_black_24dp"
|
android:src="@drawable/ic_open_in_browser_black_24dp"
|
||||||
android:tint="?android:attr/textColorPrimary"
|
android:tint="@android:color/black"
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
app:layout_constraintEnd_toStartOf="@+id/shareBtn"
|
app:layout_constraintEnd_toStartOf="@+id/shareBtn"
|
||||||
app:layout_constraintHorizontal_bias="0.5"
|
app:layout_constraintHorizontal_bias="0.5"
|
||||||
@ -114,7 +114,7 @@
|
|||||||
android:padding="4dp"
|
android:padding="4dp"
|
||||||
android:scaleType="centerCrop"
|
android:scaleType="centerCrop"
|
||||||
android:src="@drawable/ic_share_black_24dp"
|
android:src="@drawable/ic_share_black_24dp"
|
||||||
android:tint="?android:attr/textColorPrimary"
|
android:tint="@android:color/black"
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
app:layout_constraintEnd_toEndOf="parent"
|
app:layout_constraintEnd_toEndOf="parent"
|
||||||
app:layout_constraintHorizontal_bias="0.5"
|
app:layout_constraintHorizontal_bias="0.5"
|
||||||
|
@ -1,65 +1,58 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
||||||
xmlns:tools="http://schemas.android.com/tools"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content">
|
|
||||||
|
|
||||||
<android.support.v7.widget.CardView
|
<android.support.v7.widget.CardView
|
||||||
android:id="@+id/card"
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
xmlns:card_view="http://schemas.android.com/apk/res-auto"
|
||||||
android:layout_width="0dp"
|
xmlns:tools="http://schemas.android.com/tools"
|
||||||
app:layout_constraintRight_toRightOf="parent"
|
android:id="@+id/card"
|
||||||
app:layout_constraintLeft_toLeftOf="parent"
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginLeft="8dp"
|
||||||
|
android:layout_marginRight="8dp"
|
||||||
|
android:layout_marginTop="8dp"
|
||||||
app:layout_constraintHorizontal_bias="0.62"
|
app:layout_constraintHorizontal_bias="0.62"
|
||||||
|
app:layout_constraintLeft_toLeftOf="parent"
|
||||||
|
app:layout_constraintRight_toRightOf="parent"
|
||||||
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
card_view:cardElevation="2dp"
|
card_view:cardElevation="2dp"
|
||||||
card_view:cardUseCompatPadding="true"
|
card_view:cardUseCompatPadding="true"
|
||||||
android:layout_height="wrap_content"
|
card_view:layout_constraintBottom_toBottomOf="parent">
|
||||||
android:layout_marginStart="8dp"
|
|
||||||
android:layout_marginLeft="8dp"
|
|
||||||
android:layout_marginTop="8dp"
|
|
||||||
android:layout_marginEnd="8dp"
|
|
||||||
android:layout_marginRight="8dp">
|
|
||||||
|
|
||||||
<android.support.constraint.ConstraintLayout
|
<android.support.constraint.ConstraintLayout
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content">
|
android:layout_height="wrap_content">
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
|
android:id="@+id/itemImage"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
app:srcCompat="@drawable/background_splash"
|
|
||||||
android:id="@+id/itemImage"
|
|
||||||
android:scaleType="fitCenter"
|
|
||||||
android:adjustViewBounds="true"
|
android:adjustViewBounds="true"
|
||||||
android:cropToPadding="true"
|
android:cropToPadding="true"
|
||||||
app:layout_constraintTop_toTopOf="parent"
|
app:layout_constraintLeft_toLeftOf="parent"
|
||||||
android:layout_marginTop="0dp"
|
|
||||||
android:layout_marginRight="0dp"
|
|
||||||
app:layout_constraintRight_toRightOf="parent"
|
app:layout_constraintRight_toRightOf="parent"
|
||||||
android:layout_marginLeft="0dp"
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
app:layout_constraintLeft_toLeftOf="parent" />
|
app:srcCompat="@drawable/background_splash"
|
||||||
|
card_view:layout_constraintBottom_toTopOf="@+id/constraintLayout" />
|
||||||
|
|
||||||
<android.support.constraint.ConstraintLayout
|
<android.support.constraint.ConstraintLayout
|
||||||
|
android:id="@+id/constraintLayout"
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
app:layout_constraintTop_toBottomOf="@+id/itemImage"
|
|
||||||
app:layout_constraintRight_toRightOf="parent"
|
|
||||||
app:layout_constraintLeft_toLeftOf="parent"
|
|
||||||
app:layout_constraintBottom_toBottomOf="parent"
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
>
|
app:layout_constraintLeft_toLeftOf="parent"
|
||||||
|
app:layout_constraintRight_toRightOf="parent"
|
||||||
|
app:layout_constraintTop_toBottomOf="@+id/itemImage">
|
||||||
|
|
||||||
<ImageView
|
<ImageView
|
||||||
android:layout_height="40dp"
|
|
||||||
app:srcCompat="@drawable/background_splash"
|
|
||||||
android:id="@+id/sourceImage"
|
android:id="@+id/sourceImage"
|
||||||
app:layout_constraintLeft_toLeftOf="parent"
|
android:layout_width="40dp"
|
||||||
android:layout_marginStart="8dp"
|
android:layout_height="40dp"
|
||||||
android:layout_marginLeft="8dp"
|
android:layout_marginLeft="8dp"
|
||||||
app:layout_constraintTop_toTopOf="parent"
|
android:layout_marginStart="8dp"
|
||||||
android:layout_marginTop="8dp"
|
android:layout_marginTop="8dp"
|
||||||
android:layout_width="40dp" />
|
app:layout_constraintLeft_toLeftOf="parent"
|
||||||
|
app:layout_constraintTop_toTopOf="parent"
|
||||||
|
app:srcCompat="@drawable/background_splash" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
android:id="@+id/title"
|
android:id="@+id/title"
|
||||||
@ -79,40 +72,40 @@
|
|||||||
tools:text="Titre" />
|
tools:text="Titre" />
|
||||||
|
|
||||||
<TextView
|
<TextView
|
||||||
|
android:id="@+id/sourceTitleAndDate"
|
||||||
android:layout_width="wrap_content"
|
android:layout_width="wrap_content"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:id="@+id/sourceTitleAndDate"
|
|
||||||
android:textSize="14sp"
|
|
||||||
tools:text="Google Actualité Il y a 5h"
|
|
||||||
android:textAlignment="viewStart"
|
|
||||||
app:layout_constraintTop_toBottomOf="@+id/title"
|
|
||||||
android:layout_marginTop="8dp"
|
android:layout_marginTop="8dp"
|
||||||
|
android:gravity="start"
|
||||||
|
android:textAlignment="viewStart"
|
||||||
|
android:textSize="14sp"
|
||||||
app:layout_constraintLeft_toLeftOf="@+id/title"
|
app:layout_constraintLeft_toLeftOf="@+id/title"
|
||||||
android:gravity="start" />
|
app:layout_constraintTop_toBottomOf="@+id/title"
|
||||||
|
tools:text="Google Actualité Il y a 5h" />
|
||||||
|
|
||||||
<RelativeLayout
|
<RelativeLayout
|
||||||
android:layout_width="0dp"
|
android:layout_width="0dp"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
app:layout_constraintTop_toBottomOf="@+id/sourceTitleAndDate"
|
|
||||||
android:layout_marginTop="16dp"
|
android:layout_marginTop="16dp"
|
||||||
|
app:layout_constraintBottom_toBottomOf="parent"
|
||||||
app:layout_constraintLeft_toLeftOf="parent"
|
app:layout_constraintLeft_toLeftOf="parent"
|
||||||
app:layout_constraintRight_toRightOf="parent"
|
app:layout_constraintRight_toRightOf="parent"
|
||||||
app:layout_constraintBottom_toBottomOf="parent">
|
app:layout_constraintTop_toBottomOf="@+id/sourceTitleAndDate">
|
||||||
|
|
||||||
<com.like.LikeButton
|
<com.like.LikeButton
|
||||||
app:icon_type="heart"
|
|
||||||
app:icon_size="22dp"
|
|
||||||
android:id="@+id/favButton"
|
android:id="@+id/favButton"
|
||||||
android:layout_width="35dp"
|
android:layout_width="35dp"
|
||||||
android:layout_height="35dp"
|
android:layout_height="35dp"
|
||||||
|
android:layout_alignParentEnd="true"
|
||||||
|
android:layout_alignParentRight="true"
|
||||||
|
|
||||||
android:layout_centerVertical="true"
|
android:layout_centerVertical="true"
|
||||||
android:layout_alignParentRight="true"
|
android:layout_marginEnd="8dp"
|
||||||
android:layout_alignParentEnd="true"
|
android:layout_marginRight="8dp"
|
||||||
android:elevation="5dp"
|
android:elevation="5dp"
|
||||||
android:padding="4dp"
|
android:padding="4dp"
|
||||||
android:layout_marginRight="8dp"
|
app:icon_size="22dp"
|
||||||
android:layout_marginEnd="8dp"/>
|
app:icon_type="heart" />
|
||||||
|
|
||||||
<ImageButton
|
<ImageButton
|
||||||
android:id="@+id/shareBtn"
|
android:id="@+id/shareBtn"
|
||||||
@ -154,4 +147,3 @@
|
|||||||
</android.support.constraint.ConstraintLayout>
|
</android.support.constraint.ConstraintLayout>
|
||||||
|
|
||||||
</android.support.v7.widget.CardView>
|
</android.support.v7.widget.CardView>
|
||||||
</android.support.constraint.ConstraintLayout>
|
|
@ -1,11 +0,0 @@
|
|||||||
<RelativeLayout
|
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="match_parent">
|
|
||||||
|
|
||||||
<Switch
|
|
||||||
android:layout_width="wrap_content"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:layout_centerHorizontal="true"
|
|
||||||
android:layout_centerVertical="true" />
|
|
||||||
</RelativeLayout>
|
|
@ -5,14 +5,14 @@
|
|||||||
<item android:id="@+id/action_search"
|
<item android:id="@+id/action_search"
|
||||||
android:title="@string/menu_home_search"
|
android:title="@string/menu_home_search"
|
||||||
android:icon="@drawable/ic_action_search"
|
android:icon="@drawable/ic_action_search"
|
||||||
app:showAsAction="always|collapseActionView"
|
app:showAsAction="ifRoom|collapseActionView"
|
||||||
app:actionViewClass="android.support.v7.widget.SearchView" />
|
app:actionViewClass="android.support.v7.widget.SearchView" />
|
||||||
|
|
||||||
<item android:id="@+id/readAll"
|
<item android:id="@+id/readAll"
|
||||||
android:icon="@drawable/ic_done_all_white_24dp"
|
android:icon="@drawable/ic_done_all_white_24dp"
|
||||||
android:title="@string/readAll"
|
android:title="@string/readAll"
|
||||||
android:orderInCategory="1"
|
android:orderInCategory="1"
|
||||||
app:showAsAction="always"/>
|
app:showAsAction="ifRoom"/>
|
||||||
|
|
||||||
<item
|
<item
|
||||||
android:id="@+id/refresh"
|
android:id="@+id/refresh"
|
||||||
|
157
app/src/main/res/values-af/strings.xml
Normal file
157
app/src/main/res/values-af/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-ar/strings.xml
Normal file
157
app/src/main/res/values-ar/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-ca/strings.xml
Normal file
157
app/src/main/res/values-ca/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-cs/strings.xml
Normal file
157
app/src/main/res/values-cs/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-da/strings.xml
Normal file
157
app/src/main/res/values-da/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-de/strings.xml
Normal file
157
app/src/main/res/values-de/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader für Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Anmelden"</string>
|
||||||
|
<string name="prompt_password">"Passwort"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Passwort"</string>
|
||||||
|
<string name="action_sign_in">"Fortfahren"</string>
|
||||||
|
<string name="error_invalid_password">"Passwort ist nicht lang genug"</string>
|
||||||
|
<string name="error_field_required">"Pflichtfeld"</string>
|
||||||
|
<string name="prompt_url">"URL"</string>
|
||||||
|
<string name="withLoginSwitch">"Anmeldung erforderlich?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Anmeldung erforderlich?"</string>
|
||||||
|
<string name="login_url_problem">"Ups. Du musst eventuell ein \"/\" am Ende der URL anhängen."</string>
|
||||||
|
<string name="prompt_login">"Benutzername"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Benutzername"</string>
|
||||||
|
<string name="label_share">"Teilen"</string>
|
||||||
|
<string name="readAll">"Alle gelesen"</string>
|
||||||
|
<string name="action_disconnect">"Verbindung trennen"</string>
|
||||||
|
<string name="title_activity_settings">"Einstellungen"</string>
|
||||||
|
<string name="pref_header_general">"Allgemein"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Neue Quelle hinzufügen"</string>
|
||||||
|
<string name="add_source_save">"Speichern"</string>
|
||||||
|
<string name="wrong_infos">"Überprüfe deine Angaben noch einmal."</string>
|
||||||
|
<string name="all_posts_not_read">"Nicht alle Beiträge wurden gelesen"</string>
|
||||||
|
<string name="all_posts_read">"Alle Beiträge wurden gelesen"</string>
|
||||||
|
<string name="cant_get_favs">"Favoriten können nicht abgerufen werden"</string>
|
||||||
|
<string name="cant_get_new_elements">"Neue Artikel können nicht abgerufen werden"</string>
|
||||||
|
<string name="cant_get_read">"Gelese Artikel können nicht abgerufen werden"</string>
|
||||||
|
<string name="nothing_here">"Keine Einträge vorhanden"</string>
|
||||||
|
<string name="tab_new">"Neu"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favoriten"</string>
|
||||||
|
<string name="action_about">"Über"</string>
|
||||||
|
<string name="marked_as_read">"Artikel gelesen"</string>
|
||||||
|
<string name="undo_string">"Rückgängig"</string>
|
||||||
|
<string name="addStringNoUrl">"Melde dich an um Quellen hinzuzufügen."</string>
|
||||||
|
<string name="cant_get_sources">"Quellen können nicht abgerufen werden."</string>
|
||||||
|
<string name="cant_create_source">"Quelle kann nicht gespeichert werden."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"Das Formular ist nicht vollständig"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Melde einen Bug oder rege ein neues Feature an"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNUNG"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Kachelansicht"</string>
|
||||||
|
<string name="cant_mark_favortie">"Artikel kann nicht als Favorit markiert werden"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Eintrag kann nicht aus Favoriten entfernt werden"</string>
|
||||||
|
<string name="share">"Teilen"</string>
|
||||||
|
<string name="rating_prompt_title">"Gefällt Dir die App?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Ja!"</string>
|
||||||
|
<string name="rating_prompt_no">"Nicht wirklich…"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Magst du uns sagen warum?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK!"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Nicht jetzt."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Wunderbar! Magst du uns im Play Store bewerten?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sicher!"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Nicht jetzt."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Vielen Dank, dein Feedback hilft die App zu verbessern!"</string>
|
||||||
|
<string name="switch_unread_count">"Zeige die Zahl ungelesener Artikel in der unteren Leiste."</string>
|
||||||
|
<string name="switch_unread_count_title">"Zeige Anzahl ungelesener Artikel"</string>
|
||||||
|
<string name="display_all_counts_title">"Zeige Anzahl der Favoriten und gelesenen Artikel"</string>
|
||||||
|
<string name="menu_share_the_app">"Freunde einladen"</string>
|
||||||
|
<string name="invitation_title">"Probiere diese App für deine Selfoss RSS-Feeds!"</string>
|
||||||
|
<string name="invitation_message">"Ich benutze diese App für meine Selfoss RSS-Feeds. Vielleicht magst du sie auch!"</string>
|
||||||
|
<string name="invitation_cta">"Probier die App"</string>
|
||||||
|
<string name="text_wrong_url">"Sie scheinen eine ungültige URL verwenden. Stellen Sie sicher, dass die URL richtig ist. Sollte das Problem weiterhin bestehen kontaktieren Sie mich (über den Playstore-Kontakt-Link). Bitte beachten Sie, dass Sie Selfoss benötigen um RSS-Feeds zu lesen."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Öffne Links innerhalb der App"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Artikel werden innerhalb der App geöffnet"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Artikel werden mit deinem Standard-Browser geöffnet"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Verwenden Sie den Artikel-viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Artikel-Viewer wird anstelle des internen Browser verwendet"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Der internen Browser wird anstelle des Artikel-Viewer verwendet"</string>
|
||||||
|
<string name="pref_general_category_links">"Umgang mit Links"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Ansicht"</string>
|
||||||
|
<string name="pref_general_category_actions">"Aktionen"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"Artikel werden als Kacheln angezeigt"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"Artikel werden als Liste angezeigt"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Zeigt die Aktionsleiste unter dem Artikel"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"Bei der Auswahl eines Artikels wird dieser im ausgewählten Browser geöffnet"</string>
|
||||||
|
<string name="menu_home_refresh">"Remote-Aktualisierung"</string>
|
||||||
|
<string name="refresh_success_response">"Selfoss wird aktualisiert, du kannst jetzt die Artikel laden"</string>
|
||||||
|
<string name="refresh_failer_message">"Das Update hat nicht funktioniert, versuche es erneut oder überprüfe die Protokolle von Selfoss."</string>
|
||||||
|
<string name="refresh_in_progress">"Aktualisierung läuft"</string>
|
||||||
|
<string name="new_apk_available_title">"Eine neue Version ist verfügbar."</string>
|
||||||
|
<string name="new_apk_available_message">"Eine neue APK steht im offiziellen Repository zur Verfügung."</string>
|
||||||
|
<string name="new_apk_available_get">"Jetzt herunterladen"</string>
|
||||||
|
<string name="new_apk_available_no">"Version ignorieren"</string>
|
||||||
|
<string name="intro_hello_title">"Hallo!"</string>
|
||||||
|
<string name="intro_hello_message">"Danke fürs Herunterladen der App!"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Bevor du beginnst…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"Die App kann nicht ohne Selfoss-Instanz benutzt werden."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"Was ist Selfoss?"</string>
|
||||||
|
<string name="intro_all_set_title">"Fertig!"</string>
|
||||||
|
<string name="intro_all_set_message">"Sie können die App jetzt verwenden. Vergiss nicht deine App unter \"Einstellungen\" zu konfigurieren. Dort findest du auch einige nützliche Links."</string>
|
||||||
|
<string name="card_height_title">Maximale Kartenhöhe</string>
|
||||||
|
<string name="card_height_on">Kartenhöhe passt sich Inhalt an</string>
|
||||||
|
<string name="card_height_off">Kartenhöhe ist fix</string>
|
||||||
|
<string name="source_code">Quellcode</string>
|
||||||
|
<string name="cant_mark_read">Artikel kann nicht als gelesen markiert werden</string>
|
||||||
|
<string name="drawer_error_loading_tags">Fehler beim Laden der Tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Fehler beim Laden der Quellen…</string>
|
||||||
|
<string name="drawer_item_filters">Filter</string>
|
||||||
|
<string name="drawer_action_clear">leeren</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Quellen</string>
|
||||||
|
<string name="drawer_action_edit">bearbeiten</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">Keine Quellen geladen</string>
|
||||||
|
<string name="drawer_loading">Lade…</string>
|
||||||
|
<string name="menu_home_search">Suche</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">Beim Versuch deine Selfoss-Instanz zu erreichen ist ein Fehler aufgetreten. Solltet dieser Fehler bestehen bleiben, trete bitte mit mir in Kontakt.</string>
|
||||||
|
<string name="pref_header_theme">Designs</string>
|
||||||
|
<string name="default_theme">Standard</string>
|
||||||
|
<string name="teal_orange_theme">Türkis/Orange/Hell</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Hell</string>
|
||||||
|
<string name="grey_orange_theme">Türkis/Orange/Hell</string>
|
||||||
|
<string name="blue_amber_theme">Blau/Amber/Hell</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Hell</string>
|
||||||
|
<string name="red_teal_theme">Rot/Türkis/Hell</string>
|
||||||
|
<string name="teal_orange_dark_theme">Türkis/Orange/Dunkel</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dunkel</string>
|
||||||
|
<string name="default_dark_theme">Standard (Dunkel)</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grau/Orange/Dunkel</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blau/Gelb/Dunkel</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dunkel</string>
|
||||||
|
<string name="red_teal_dark_theme">Rot/Türkis/Dunkel</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Aktivieren, um Login-Fehler zu protokollieren</string>
|
||||||
|
<string name="login_debug_on">Fehler auf der Login-Seite werden protokolliert</string>
|
||||||
|
<string name="login_debug_off">Fehler auf der Login-Seite werden nicht protokolliert</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Verwenden Sie einen selbst gehostetes Zertifikat?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Übersetzung</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-el/strings.xml
Normal file
157
app/src/main/res/values-el/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-es/strings.xml
Normal file
157
app/src/main/res/values-es/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-fi/strings.xml
Normal file
157
app/src/main/res/values-fi/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
@ -1,4 +1,6 @@
|
|||||||
<resources>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
<string name="app_name">"Reader for Selfoss"</string>
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
<string name="title_activity_login">"Login"</string>
|
<string name="title_activity_login">"Login"</string>
|
||||||
<string name="prompt_password">"Mot de passe"</string>
|
<string name="prompt_password">"Mot de passe"</string>
|
||||||
@ -31,7 +33,7 @@
|
|||||||
<string name="cant_get_read">"Impossible de récupérer les éléments lus."</string>
|
<string name="cant_get_read">"Impossible de récupérer les éléments lus."</string>
|
||||||
<string name="nothing_here">"Il n'y a rien ici !"</string>
|
<string name="nothing_here">"Il n'y a rien ici !"</string>
|
||||||
<string name="tab_new">"Non lus"</string>
|
<string name="tab_new">"Non lus"</string>
|
||||||
<string name="tab_read">"Lus"</string>
|
<string name="tab_read">"Tous"</string>
|
||||||
<string name="tab_favs">"Favoris"</string>
|
<string name="tab_favs">"Favoris"</string>
|
||||||
<string name="action_about">"À propos"</string>
|
<string name="action_about">"À propos"</string>
|
||||||
<string name="marked_as_read">"Marqué comme lu"</string>
|
<string name="marked_as_read">"Marqué comme lu"</string>
|
||||||
@ -44,9 +46,7 @@
|
|||||||
<string name="pref_header_links">"Liens utils"</string>
|
<string name="pref_header_links">"Liens utils"</string>
|
||||||
<string name="issue_tracker_link">"Suivie des problèmes"</string>
|
<string name="issue_tracker_link">"Suivie des problèmes"</string>
|
||||||
<string name="issue_tracker_summary">"Pour signaler un bug ou demander une nouvelle fonctionnalité"</string>
|
<string name="issue_tracker_summary">"Pour signaler un bug ou demander une nouvelle fonctionnalité"</string>
|
||||||
<string name="warning_version">"ATTENTION"</string>
|
|
||||||
<string name="warning_wrong_url">"ATTENTION"</string>
|
<string name="warning_wrong_url">"ATTENTION"</string>
|
||||||
<string name="text_version">"Il semblerait que vous utilisiez une version de l'application ne provenant pas du Play Store. L'application peut avoir été modifié et son utilisation peut être dangereuse. Je ne serai en aucun cas tenu responsable en cas de dommage causé sur votre appareil. Pour éviter tout problème, je vous conseille de télécharger ReaderForSelfoss directement depuis le Play Store."</string>
|
|
||||||
<string name="pref_switch_card_view_title">"Card View"</string>
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
<string name="cant_mark_favortie">"Impossible de marquer l'élément comme favoris"</string>
|
<string name="cant_mark_favortie">"Impossible de marquer l'élément comme favoris"</string>
|
||||||
<string name="cant_unmark_favortie">"Impossible de retirer l'élément des favoris"</string>
|
<string name="cant_unmark_favortie">"Impossible de retirer l'élément des favoris"</string>
|
||||||
@ -109,12 +109,12 @@
|
|||||||
<string name="drawer_item_tags">Tags</string>
|
<string name="drawer_item_tags">Tags</string>
|
||||||
<string name="drawer_item_sources">Sources</string>
|
<string name="drawer_item_sources">Sources</string>
|
||||||
<string name="drawer_action_edit">editer</string>
|
<string name="drawer_action_edit">editer</string>
|
||||||
<string name="cache_drawer_error">Impossible de mettre en cache les filtres pour le drawer</string>
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Impossible de mettre en cache les filtres pour le drawer</string>
|
||||||
<string name="no_tags_loaded">Pas de tags chargés</string>
|
<string name="no_tags_loaded">Pas de tags chargés</string>
|
||||||
<string name="no_sources_loaded">Pas de sources chargés</string>
|
<string name="no_sources_loaded">Pas de sources chargés</string>
|
||||||
<string name="drawer_loading">Chargement …</string>
|
<string name="drawer_loading">Chargement …</string>
|
||||||
<string name="menu_home_search">Rechercher</string>
|
<string name="menu_home_search">Rechercher</string>
|
||||||
<string name="can_delete_source">Petit soucis lors de la suppression de la source.</string>
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
<string name="base_url_error">Il y a eu un souci lors de la communication avec votre instance Selfoss. Si le problèmes persiste, contactez-moi pour trouver une solution.</string>
|
<string name="base_url_error">Il y a eu un souci lors de la communication avec votre instance Selfoss. Si le problèmes persiste, contactez-moi pour trouver une solution.</string>
|
||||||
<string name="pref_header_theme">Thèmes</string>
|
<string name="pref_header_theme">Thèmes</string>
|
||||||
<string name="default_theme">Par défaut</string>
|
<string name="default_theme">Par défaut</string>
|
||||||
@ -141,8 +141,17 @@
|
|||||||
<string name="pref_selfoss_category">Api Selfoss</string>
|
<string name="pref_selfoss_category">Api Selfoss</string>
|
||||||
<string name="pref_api_items_number_title">Nombre d\'articles chargés</string>
|
<string name="pref_api_items_number_title">Nombre d\'articles chargés</string>
|
||||||
<string name="read_debug_title">Des articles lus marqués comme non lus ?</string>
|
<string name="read_debug_title">Des articles lus marqués comme non lus ?</string>
|
||||||
<string name="read_debug_on">Les appels API vont être logués lorsequ\'un article est marqué comme lu</string>
|
|
||||||
<string name="read_debug_off">Aucun log quand un article est marqué comme lu</string>
|
<string name="read_debug_off">Aucun log quand un article est marqué comme lu</string>
|
||||||
|
<string name="read_debug_on">Les appels API vont être logués lorsequ\'un article est marqué comme lu</string>
|
||||||
<string name="summary_debug_identifier">Identifiant de debug</string>
|
<string name="summary_debug_identifier">Identifiant de debug</string>
|
||||||
<string name="unique_id_to_clipboard">Texte copié</string>
|
<string name="unique_id_to_clipboard">Texte copié</string>
|
||||||
|
<string name="display_header_drawer_summary">Afficher une entête avec l\'url de votre instance de Selfoss en haut du drawer lateral.</string>
|
||||||
|
<string name="display_header_drawer_title">Entête de compte</string>
|
||||||
|
<string name="login_everything_title">Log de tous les appels à l\'API</string>
|
||||||
|
<string name="login_everything_on">Tous les appels à l\'API vont êtres logués</string>
|
||||||
|
<string name="login_everything_off">Aucun appel à l\'API ne sera logué</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Charger plus d\'articles au scroll</string>
|
||||||
|
<string name="translation">Traduction</string>
|
||||||
|
<string name="cant_open_invalid_url">L’url de l’élément n’est pas valide. En attendant la résolution du problème, le lien ne s\'ouvrira pas.</string>
|
||||||
|
<string name="drawer_report_bug">Signaler un bug</string>
|
||||||
</resources>
|
</resources>
|
157
app/src/main/res/values-he/strings.xml
Normal file
157
app/src/main/res/values-he/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-hu/strings.xml
Normal file
157
app/src/main/res/values-hu/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-it/strings.xml
Normal file
157
app/src/main/res/values-it/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-ja/strings.xml
Normal file
157
app/src/main/res/values-ja/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-ko/strings.xml
Normal file
157
app/src/main/res/values-ko/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
@ -1,4 +1,6 @@
|
|||||||
<resources>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
<string name="app_name">"Selfoss Reader"</string>
|
<string name="app_name">"Selfoss Reader"</string>
|
||||||
<string name="title_activity_login">"Inloggen"</string>
|
<string name="title_activity_login">"Inloggen"</string>
|
||||||
<string name="prompt_password">"Wachtwoord"</string>
|
<string name="prompt_password">"Wachtwoord"</string>
|
||||||
@ -23,7 +25,7 @@
|
|||||||
<string name="add_source_hint_name">"Naam"</string>
|
<string name="add_source_hint_name">"Naam"</string>
|
||||||
<string name="add_source">"Bron toevoegen"</string>
|
<string name="add_source">"Bron toevoegen"</string>
|
||||||
<string name="add_source_save">"Opslaan"</string>
|
<string name="add_source_save">"Opslaan"</string>
|
||||||
<string name="wrong_infos">"Controleer de gegevens nogmaals"</string>
|
<string name="wrong_infos">"Controleer de gegevens nogmaals."</string>
|
||||||
<string name="all_posts_not_read">"Fout bij markeren als gelezen"</string>
|
<string name="all_posts_not_read">"Fout bij markeren als gelezen"</string>
|
||||||
<string name="all_posts_read">"Alle artikelen gemarkeerd als gelezen"</string>
|
<string name="all_posts_read">"Alle artikelen gemarkeerd als gelezen"</string>
|
||||||
<string name="cant_get_favs">"Ophalen favorieten mislukt"</string>
|
<string name="cant_get_favs">"Ophalen favorieten mislukt"</string>
|
||||||
@ -31,7 +33,7 @@
|
|||||||
<string name="cant_get_read">"Ophalen reeds gelezen artikelen mislukt"</string>
|
<string name="cant_get_read">"Ophalen reeds gelezen artikelen mislukt"</string>
|
||||||
<string name="nothing_here">"Niets gevonden"</string>
|
<string name="nothing_here">"Niets gevonden"</string>
|
||||||
<string name="tab_new">"Nieuw"</string>
|
<string name="tab_new">"Nieuw"</string>
|
||||||
<string name="tab_read">"Gelezen"</string>
|
<string name="tab_read">"All"</string>
|
||||||
<string name="tab_favs">"Favorieten"</string>
|
<string name="tab_favs">"Favorieten"</string>
|
||||||
<string name="action_about">"Over"</string>
|
<string name="action_about">"Over"</string>
|
||||||
<string name="marked_as_read">"Artikel gelezen"</string>
|
<string name="marked_as_read">"Artikel gelezen"</string>
|
||||||
@ -44,9 +46,7 @@
|
|||||||
<string name="pref_header_links">"Links"</string>
|
<string name="pref_header_links">"Links"</string>
|
||||||
<string name="issue_tracker_link">"Bug tracker"</string>
|
<string name="issue_tracker_link">"Bug tracker"</string>
|
||||||
<string name="issue_tracker_summary">"Rapporteer een probleem of dien een verzoek in"</string>
|
<string name="issue_tracker_summary">"Rapporteer een probleem of dien een verzoek in"</string>
|
||||||
<string name="warning_version">"WAARSCHUWING"</string>
|
|
||||||
<string name="warning_wrong_url">"WAARSCHUWING"</string>
|
<string name="warning_wrong_url">"WAARSCHUWING"</string>
|
||||||
<string name="text_version">"Deze versie van de applicatie lijkt niet afkomstig van de Play Store en kan mogelijk virussen bevatten. De ontwikkelaar is niet verantwoordelijk voor mogelijke schade aan uw apparaat. Overweeg om de ReaderForSelfoss app uit de Play Store te gebruiken."</string>
|
|
||||||
<string name="pref_switch_card_view_title">"Kaart weergave"</string>
|
<string name="pref_switch_card_view_title">"Kaart weergave"</string>
|
||||||
<string name="cant_mark_favortie">"Kan het artikel niet markeren als favoriet"</string>
|
<string name="cant_mark_favortie">"Kan het artikel niet markeren als favoriet"</string>
|
||||||
<string name="cant_unmark_favortie">"Kan het item niet verwijderen uit favorieten"</string>
|
<string name="cant_unmark_favortie">"Kan het item niet verwijderen uit favorieten"</string>
|
||||||
@ -109,12 +109,12 @@
|
|||||||
<string name="drawer_item_tags">Tags</string>
|
<string name="drawer_item_tags">Tags</string>
|
||||||
<string name="drawer_item_sources">Sources</string>
|
<string name="drawer_item_sources">Sources</string>
|
||||||
<string name="drawer_action_edit">edit</string>
|
<string name="drawer_action_edit">edit</string>
|
||||||
<string name="cache_drawer_error">Couldn\'t cache your drawer data</string>
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
<string name="no_tags_loaded">No tags loaded</string>
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
<string name="no_sources_loaded">No sources loaded</string>
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
<string name="drawer_loading">Loading …</string>
|
<string name="drawer_loading">Loading …</string>
|
||||||
<string name="menu_home_search">Zoeken</string>
|
<string name="menu_home_search">Zoeken</string>
|
||||||
<string name="can_delete_source">Can\'t delete the source...</string>
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
<string name="pref_header_theme">Themes</string>
|
<string name="pref_header_theme">Themes</string>
|
||||||
<string name="default_theme">Default</string>
|
<string name="default_theme">Default</string>
|
||||||
@ -141,8 +141,17 @@
|
|||||||
<string name="pref_selfoss_category">Selfoss Api</string>
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
<string name="pref_api_items_number_title">Loaded items number</string>
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
|
||||||
<string name="read_debug_off">No log when marking an item as read</string>
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
<string name="summary_debug_identifier">Debug identifier</string>
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Vertaling</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
</resources>
|
</resources>
|
157
app/src/main/res/values-no/strings.xml
Normal file
157
app/src/main/res/values-no/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-pl/strings.xml
Normal file
157
app/src/main/res/values-pl/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-pt/strings.xml
Normal file
157
app/src/main/res/values-pt/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-ro/strings.xml
Normal file
157
app/src/main/res/values-ro/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-ru/strings.xml
Normal file
157
app/src/main/res/values-ru/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-sr/strings.xml
Normal file
157
app/src/main/res/values-sr/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-sv/strings.xml
Normal file
157
app/src/main/res/values-sv/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-tr/strings.xml
Normal file
157
app/src/main/res/values-tr/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-uk/strings.xml
Normal file
157
app/src/main/res/values-uk/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-vi/strings.xml
Normal file
157
app/src/main/res/values-vi/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
157
app/src/main/res/values-zh/strings.xml
Normal file
157
app/src/main/res/values-zh/strings.xml
Normal file
@ -0,0 +1,157 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<!--Generated by crowdin.com-->
|
||||||
|
<resources xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
<string name="app_name">"Reader for Selfoss"</string>
|
||||||
|
<string name="title_activity_login">"Log in"</string>
|
||||||
|
<string name="prompt_password">"Password"</string>
|
||||||
|
<string name="prompt_http_password">"HTTP Password"</string>
|
||||||
|
<string name="action_sign_in">"Go"</string>
|
||||||
|
<string name="error_invalid_password">"Password not long enough"</string>
|
||||||
|
<string name="error_field_required">"Field required"</string>
|
||||||
|
<string name="prompt_url">"Url"</string>
|
||||||
|
<string name="withLoginSwitch">"Login required ?"</string>
|
||||||
|
<string name="withHttpLoginSwitch">"HTTP Login required ?"</string>
|
||||||
|
<string name="login_url_problem">"Oops. You may need to add a \"/\" at the end of the url."</string>
|
||||||
|
<string name="prompt_login">"Username"</string>
|
||||||
|
<string name="prompt_http_login">"HTTP Username"</string>
|
||||||
|
<string name="label_share">"Share"</string>
|
||||||
|
<string name="readAll">"Read all"</string>
|
||||||
|
<string name="action_disconnect">"Disconnect"</string>
|
||||||
|
<string name="title_activity_settings">"Settings"</string>
|
||||||
|
<string name="pref_header_general">"General"</string>
|
||||||
|
<string name="pref_switch_actions_tap_title">"Tap action on the articles"</string>
|
||||||
|
<string name="add_source_hint_tags">"Tag1, Tag2, Tag3"</string>
|
||||||
|
<string name="add_source_hint_url">"Link"</string>
|
||||||
|
<string name="add_source_hint_name">"Name"</string>
|
||||||
|
<string name="add_source">"Add a source"</string>
|
||||||
|
<string name="add_source_save">"Save"</string>
|
||||||
|
<string name="wrong_infos">"Check your details again."</string>
|
||||||
|
<string name="all_posts_not_read">"All posts weren't read"</string>
|
||||||
|
<string name="all_posts_read">"All posts were read"</string>
|
||||||
|
<string name="cant_get_favs">"Can't get favorites"</string>
|
||||||
|
<string name="cant_get_new_elements">"Can't get new articles"</string>
|
||||||
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
|
<string name="tab_new">"New"</string>
|
||||||
|
<string name="tab_read">"All"</string>
|
||||||
|
<string name="tab_favs">"Favorites"</string>
|
||||||
|
<string name="action_about">"About"</string>
|
||||||
|
<string name="marked_as_read">"Item read"</string>
|
||||||
|
<string name="undo_string">"Undo"</string>
|
||||||
|
<string name="addStringNoUrl">"Log in to add sources."</string>
|
||||||
|
<string name="cant_get_sources">"Can't get sources list."</string>
|
||||||
|
<string name="cant_create_source">"Can't create source."</string>
|
||||||
|
<string name="cant_get_spouts">"Can't get spouts list."</string>
|
||||||
|
<string name="form_not_complete">"The form is not complete"</string>
|
||||||
|
<string name="pref_header_links">"Links"</string>
|
||||||
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
|
<string name="share">"Share"</string>
|
||||||
|
<string name="rating_prompt_title">"Enjoying the app ?"</string>
|
||||||
|
<string name="rating_prompt_yes">"Yes !"</string>
|
||||||
|
<string name="rating_prompt_no">"Not really …"</string>
|
||||||
|
<string name="rating_prompt_feedback_title">"Can you tell us why ?"</string>
|
||||||
|
<string name="rating_prompt_feedback_yes">"OK !"</string>
|
||||||
|
<string name="rating_prompt_feedback_no">"Not now."</string>
|
||||||
|
<string name="rating_prompt_rating_title">"Great ! Can you rate us on the Store ?"</string>
|
||||||
|
<string name="rating_prompt_rating_yes">"Sure !"</string>
|
||||||
|
<string name="rating_prompt_rating_no">"Not right now."</string>
|
||||||
|
<string name="rating_prompt_thanks">"Thanks, your feedback help enhance the app !"</string>
|
||||||
|
<string name="switch_unread_count">"Display the unread count as a badge for the bottom bar."</string>
|
||||||
|
<string name="switch_unread_count_title">"Display unread count"</string>
|
||||||
|
<string name="display_all_counts_title">"Display count for favorite and read"</string>
|
||||||
|
<string name="menu_share_the_app">"Invite friends"</string>
|
||||||
|
<string name="invitation_title">"Try this app for your Selfoss RSS feeds !"</string>
|
||||||
|
<string name="invitation_message">"I use this app for my Selfoss RSS feeds. You may like it too !"</string>
|
||||||
|
<string name="invitation_cta">"Try the app"</string>
|
||||||
|
<string name="text_wrong_url">"You seem to be trying to use an invalid URL. Make sure it is correct, and if the problem persists, contact me (via the store contact link). Please note that the app needs you to be using Selfoss. You can't access RSS feeds without it."</string>
|
||||||
|
<string name="pref_general_internal_browser_title">"Open links inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_on">"Articles will open inside the app"</string>
|
||||||
|
<string name="pref_general_internal_browser_off">"Articles will open with your default browser"</string>
|
||||||
|
<string name="prefer_article_viewer_title">"Use the article viewer"</string>
|
||||||
|
<string name="prefer_article_viewer_on">"Will use the article viewer instead of the internal browser"</string>
|
||||||
|
<string name="prefer_article_viewer_off">"Will use the internal browser instead of the article viewer"</string>
|
||||||
|
<string name="pref_general_category_links">"Link handeling"</string>
|
||||||
|
<string name="pref_general_category_displaying">"Displaying"</string>
|
||||||
|
<string name="pref_general_category_actions">"Actions"</string>
|
||||||
|
<string name="pref_switch_card_view_on">"The articles will be displayed as cards"</string>
|
||||||
|
<string name="pref_switch_card_view_off">"The articles will be displayed as a list"</string>
|
||||||
|
<string name="pref_switch_actions_tap_on">"Displays the action bar under the article"</string>
|
||||||
|
<string name="pref_switch_actions_tap_off">"When selecting an article it will open in your selected browser"</string>
|
||||||
|
<string name="menu_home_refresh">"Update remote"</string>
|
||||||
|
<string name="refresh_success_response">"The remote is updated, you can now reload the articles list"</string>
|
||||||
|
<string name="refresh_failer_message">"The update didn't work, try again later, or check your selfoss logs."</string>
|
||||||
|
<string name="refresh_in_progress">"Refresh in progress"</string>
|
||||||
|
<string name="new_apk_available_title">"A new APK is available."</string>
|
||||||
|
<string name="new_apk_available_message">"A new APK is available to download on the official repository."</string>
|
||||||
|
<string name="new_apk_available_get">"Download now"</string>
|
||||||
|
<string name="new_apk_available_no">"Ignore version"</string>
|
||||||
|
<string name="intro_hello_title">"Hi there !"</string>
|
||||||
|
<string name="intro_hello_message">"Thanks for downloading the app !"</string>
|
||||||
|
<string name="intro_needs_selfoss_title">"Before you start…"</string>
|
||||||
|
<string name="intro_needs_selfoss_message">"You can't use the app without a Selfoss instance."</string>
|
||||||
|
<string name="intro_needs_selfoss_link">"What is Selfoss ?"</string>
|
||||||
|
<string name="intro_all_set_title">"All set !"</string>
|
||||||
|
<string name="intro_all_set_message">"You are ready to use the app. Don't forget to go to the settings page to configure your app, and where you'll find some useful links."</string>
|
||||||
|
<string name="card_height_title">Full height cards</string>
|
||||||
|
<string name="card_height_on">Cards height will adjust to its content</string>
|
||||||
|
<string name="card_height_off">Card height will be fixed</string>
|
||||||
|
<string name="source_code">Source code</string>
|
||||||
|
<string name="cant_mark_read">Can\'t mark article as read</string>
|
||||||
|
<string name="drawer_error_loading_tags">Error loading tags…</string>
|
||||||
|
<string name="drawer_error_loading_sources">Error loading sources…</string>
|
||||||
|
<string name="drawer_item_filters">Filters</string>
|
||||||
|
<string name="drawer_action_clear">clear</string>
|
||||||
|
<string name="drawer_item_tags">Tags</string>
|
||||||
|
<string name="drawer_item_sources">Sources</string>
|
||||||
|
<string name="drawer_action_edit">edit</string>
|
||||||
|
<string name="cache_drawer_error" tools:keep="@string/cache_drawer_error">Couldn\'t cache your drawer data</string>
|
||||||
|
<string name="no_tags_loaded">No tags loaded</string>
|
||||||
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
|
<string name="drawer_loading">Loading …</string>
|
||||||
|
<string name="menu_home_search">Search</string>
|
||||||
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
|
<string name="pref_header_theme">Themes</string>
|
||||||
|
<string name="default_theme">Default</string>
|
||||||
|
<string name="teal_orange_theme">Teal/Orange/Light</string>
|
||||||
|
<string name="cyan_pink_theme">Cyan/Pink/Light</string>
|
||||||
|
<string name="grey_orange_theme">Grey/Orange/Light</string>
|
||||||
|
<string name="blue_amber_theme">Blue/Amber/Light</string>
|
||||||
|
<string name="indigo_pink_theme">Indigo/Pink/Light</string>
|
||||||
|
<string name="red_teal_theme">Red/Teal/Light</string>
|
||||||
|
<string name="teal_orange_dark_theme">Teal/Orange/Dark</string>
|
||||||
|
<string name="cyan_pink_dark_theme">Cyan/Pink/Dark</string>
|
||||||
|
<string name="default_dark_theme">Default/Dark</string>
|
||||||
|
<string name="grey_orange_dark_theme">Grey/Orange/Dark</string>
|
||||||
|
<string name="blue_amber_dark_theme">Blue/Amber/Dark</string>
|
||||||
|
<string name="indigo_pink_dark_theme">Indigo/Pink/Dark</string>
|
||||||
|
<string name="red_teal_dark_theme">Red/Teal/Dark</string>
|
||||||
|
<string name="pref_header_debug">Debug</string>
|
||||||
|
<string name="login_debug_title">Activate to log login errors</string>
|
||||||
|
<string name="login_debug_on">Any error on the login page will be logged</string>
|
||||||
|
<string name="login_debug_off">No log on the login page</string>
|
||||||
|
<string name="login_menu_debug">Debug</string>
|
||||||
|
<string name="self_hosted_cert_switch">Using a self hosted certificate ?</string>
|
||||||
|
<string name="self_signed_cert_warning">Due to security reasons, self signed certificates are not supported by default. By activating this, I\'ll not be responsible of any security problem you encounter.</string>
|
||||||
|
<string name="pref_selfoss_category">Selfoss Api</string>
|
||||||
|
<string name="pref_api_items_number_title">Loaded items number</string>
|
||||||
|
<string name="read_debug_title">Read articles appearing as unread ?</string>
|
||||||
|
<string name="read_debug_off">No log when marking an item as read</string>
|
||||||
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
|
</resources>
|
@ -31,7 +31,7 @@
|
|||||||
<string name="cant_get_read">"Can't get read articles"</string>
|
<string name="cant_get_read">"Can't get read articles"</string>
|
||||||
<string name="nothing_here">"Nothing here"</string>
|
<string name="nothing_here">"Nothing here"</string>
|
||||||
<string name="tab_new">"New"</string>
|
<string name="tab_new">"New"</string>
|
||||||
<string name="tab_read">"Read"</string>
|
<string name="tab_read">"All"</string>
|
||||||
<string name="tab_favs">"Favorites"</string>
|
<string name="tab_favs">"Favorites"</string>
|
||||||
<string name="action_about">"About"</string>
|
<string name="action_about">"About"</string>
|
||||||
<string name="marked_as_read">"Item read"</string>
|
<string name="marked_as_read">"Item read"</string>
|
||||||
@ -44,9 +44,7 @@
|
|||||||
<string name="pref_header_links">"Links"</string>
|
<string name="pref_header_links">"Links"</string>
|
||||||
<string name="issue_tracker_link">"Issue Tracker"</string>
|
<string name="issue_tracker_link">"Issue Tracker"</string>
|
||||||
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
<string name="issue_tracker_summary">"Report a bug or ask for a new feature"</string>
|
||||||
<string name="warning_version">"WARNING"</string>
|
|
||||||
<string name="warning_wrong_url">"WARNING"</string>
|
<string name="warning_wrong_url">"WARNING"</string>
|
||||||
<string name="text_version">"You seem to be using a version of the app that doesn't come from the store. The app could have been tampered with. I will not be responsible if it causes any damage to your device. Consider using the ReaderForSelfoss app from the Play Store."</string>
|
|
||||||
<string name="pref_switch_card_view_title">"Card View"</string>
|
<string name="pref_switch_card_view_title">"Card View"</string>
|
||||||
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
<string name="cant_mark_favortie">"Can't mark article as favorite"</string>
|
||||||
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
<string name="cant_unmark_favortie">"Can't remove item from favorite"</string>
|
||||||
@ -116,7 +114,7 @@
|
|||||||
<string name="no_sources_loaded">No sources loaded</string>
|
<string name="no_sources_loaded">No sources loaded</string>
|
||||||
<string name="drawer_loading">Loading …</string>
|
<string name="drawer_loading">Loading …</string>
|
||||||
<string name="menu_home_search">Search</string>
|
<string name="menu_home_search">Search</string>
|
||||||
<string name="can_delete_source">Can\'t delete the source...</string>
|
<string name="can_delete_source">Can\'t delete the source…</string>
|
||||||
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
<string name="base_url_error">There was an issue when trying to communicate with your Selfoss Instance. If the issue persists, please get in touch with me.</string>
|
||||||
<string name="pref_header_theme">Themes</string>
|
<string name="pref_header_theme">Themes</string>
|
||||||
<string name="default_theme">Default</string>
|
<string name="default_theme">Default</string>
|
||||||
@ -147,4 +145,16 @@
|
|||||||
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
<string name="read_debug_on">Api calls will be logged when marking an article as read</string>
|
||||||
<string name="summary_debug_identifier">Debug identifier</string>
|
<string name="summary_debug_identifier">Debug identifier</string>
|
||||||
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
<string name="unique_id_to_clipboard">Identifier copied to your clipboard</string>
|
||||||
|
<string
|
||||||
|
name="display_header_drawer_summary">Display a header with the selfoss instance url on the lateral drawer.</string>
|
||||||
|
<string name="display_header_drawer_title">Account header</string>
|
||||||
|
<string name="login_everything_title">Logging every api calls</string>
|
||||||
|
<string name="login_everything_on">This will log every api call for debug purpose.</string>
|
||||||
|
<string name="login_everything_off">No api call will be logged</string>
|
||||||
|
<string name="pref_general_infinite_loading_title">(BETA) Load more articles on scroll</string>
|
||||||
|
<string name="translation">Translation</string>
|
||||||
|
<string name="cant_open_invalid_url">The item url is invalid. I\'m looking into solving this issue so the app won\'t crash.</string>
|
||||||
|
<string name="report_github_user" translatable="false">aminecmi</string>
|
||||||
|
<string name="report_github_repo" translatable="false">ReaderforSelfoss</string>
|
||||||
|
<string name="drawer_report_bug">Report a bug</string>
|
||||||
</resources>
|
</resources>
|
@ -13,6 +13,7 @@
|
|||||||
<item name="android:colorBackground">@color/md_grey_50</item>
|
<item name="android:colorBackground">@color/md_grey_50</item>
|
||||||
<item name="android:textColorPrimary">@color/md_grey_900</item>
|
<item name="android:textColorPrimary">@color/md_grey_900</item>
|
||||||
<item name="android:textColorSecondary">@color/md_grey_400</item>
|
<item name="android:textColorSecondary">@color/md_grey_400</item>
|
||||||
|
<item name="material_drawer_header_selection_text">@color/md_grey_900</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="NoBarDark" parent="MaterialDrawerTheme">
|
<style name="NoBarDark" parent="MaterialDrawerTheme">
|
||||||
@ -25,12 +26,14 @@
|
|||||||
<item name="bnbBackgroundColor">@color/md_grey_900</item>
|
<item name="bnbBackgroundColor">@color/md_grey_900</item>
|
||||||
<item name="android:textColorPrimary">@color/md_white_1000</item>
|
<item name="android:textColorPrimary">@color/md_white_1000</item>
|
||||||
<item name="android:textColorSecondary">@color/md_grey_600</item>
|
<item name="android:textColorSecondary">@color/md_grey_600</item>
|
||||||
|
<item name="material_drawer_header_selection_text">@color/md_grey_900</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<!-- ToolBar -->
|
<!-- ToolBar -->
|
||||||
<style name="ToolBarStyle" parent="Theme.AppCompat">
|
<style name="ToolBarStyle" parent="Theme.AppCompat">
|
||||||
<item name="android:textColorPrimary">@color/white</item>
|
<item name="android:textColorPrimary">@color/white</item>
|
||||||
<item name="android:textColorSecondary">@color/white</item>
|
<item name="android:textColorSecondary">@color/white</item>
|
||||||
|
<item name="material_drawer_header_selection_text">@color/md_grey_900</item>
|
||||||
<item name="actionMenuTextColor">@color/white</item>
|
<item name="actionMenuTextColor">@color/white</item>
|
||||||
<!--<item name="actionOverflowButtonStyle">@style/ActionButtonOverflowStyle</item>
|
<!--<item name="actionOverflowButtonStyle">@style/ActionButtonOverflowStyle</item>
|
||||||
<item name="drawerArrowStyle">@style/DrawerArrowStyle</item>-->
|
<item name="drawerArrowStyle">@style/DrawerArrowStyle</item>-->
|
||||||
@ -46,6 +49,7 @@
|
|||||||
<item name="android:colorBackground">@color/md_grey_50</item>
|
<item name="android:colorBackground">@color/md_grey_50</item>
|
||||||
<item name="android:textColorPrimary">@color/md_grey_900</item>
|
<item name="android:textColorPrimary">@color/md_grey_900</item>
|
||||||
<item name="android:textColorSecondary">@color/md_grey_400</item>
|
<item name="android:textColorSecondary">@color/md_grey_400</item>
|
||||||
|
<item name="material_drawer_header_selection_text">@color/md_grey_900</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="NoBarBlueAmberDark" parent="MaterialDrawerTheme">
|
<style name="NoBarBlueAmberDark" parent="MaterialDrawerTheme">
|
||||||
@ -58,6 +62,7 @@
|
|||||||
<item name="bnbBackgroundColor">@color/md_grey_900</item>
|
<item name="bnbBackgroundColor">@color/md_grey_900</item>
|
||||||
<item name="android:textColorPrimary">@color/md_white_1000</item>
|
<item name="android:textColorPrimary">@color/md_white_1000</item>
|
||||||
<item name="android:textColorSecondary">@color/md_grey_600</item>
|
<item name="android:textColorSecondary">@color/md_grey_600</item>
|
||||||
|
<item name="material_drawer_header_selection_text">@color/md_grey_900</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="NoBarGreyOrange" parent="MaterialDrawerTheme.Light">
|
<style name="NoBarGreyOrange" parent="MaterialDrawerTheme.Light">
|
||||||
@ -69,6 +74,7 @@
|
|||||||
<item name="android:colorBackground">@color/md_grey_50</item>
|
<item name="android:colorBackground">@color/md_grey_50</item>
|
||||||
<item name="android:textColorPrimary">@color/md_grey_900</item>
|
<item name="android:textColorPrimary">@color/md_grey_900</item>
|
||||||
<item name="android:textColorSecondary">@color/md_grey_400</item>
|
<item name="android:textColorSecondary">@color/md_grey_400</item>
|
||||||
|
<item name="material_drawer_header_selection_text">@color/md_grey_900</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="NoBarGreyOrangeDark" parent="MaterialDrawerTheme">
|
<style name="NoBarGreyOrangeDark" parent="MaterialDrawerTheme">
|
||||||
@ -81,6 +87,7 @@
|
|||||||
<item name="bnbBackgroundColor">@color/md_grey_900</item>
|
<item name="bnbBackgroundColor">@color/md_grey_900</item>
|
||||||
<item name="android:textColorPrimary">@color/md_white_1000</item>
|
<item name="android:textColorPrimary">@color/md_white_1000</item>
|
||||||
<item name="android:textColorSecondary">@color/md_grey_600</item>
|
<item name="android:textColorSecondary">@color/md_grey_600</item>
|
||||||
|
<item name="material_drawer_header_selection_text">@color/md_grey_900</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="NoBarIndigoPink" parent="MaterialDrawerTheme.Light">
|
<style name="NoBarIndigoPink" parent="MaterialDrawerTheme.Light">
|
||||||
@ -92,6 +99,7 @@
|
|||||||
<item name="android:colorBackground">@color/md_grey_50</item>
|
<item name="android:colorBackground">@color/md_grey_50</item>
|
||||||
<item name="android:textColorPrimary">@color/md_grey_900</item>
|
<item name="android:textColorPrimary">@color/md_grey_900</item>
|
||||||
<item name="android:textColorSecondary">@color/md_grey_400</item>
|
<item name="android:textColorSecondary">@color/md_grey_400</item>
|
||||||
|
<item name="material_drawer_header_selection_text">@color/md_grey_900</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="NoBarIndigoPinkDark" parent="MaterialDrawerTheme">
|
<style name="NoBarIndigoPinkDark" parent="MaterialDrawerTheme">
|
||||||
@ -104,6 +112,7 @@
|
|||||||
<item name="bnbBackgroundColor">@color/md_grey_900</item>
|
<item name="bnbBackgroundColor">@color/md_grey_900</item>
|
||||||
<item name="android:textColorPrimary">@color/md_white_1000</item>
|
<item name="android:textColorPrimary">@color/md_white_1000</item>
|
||||||
<item name="android:textColorSecondary">@color/md_grey_600</item>
|
<item name="android:textColorSecondary">@color/md_grey_600</item>
|
||||||
|
<item name="material_drawer_header_selection_text">@color/md_grey_900</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="NoBarRedTeal" parent="MaterialDrawerTheme.Light">
|
<style name="NoBarRedTeal" parent="MaterialDrawerTheme.Light">
|
||||||
@ -115,6 +124,7 @@
|
|||||||
<item name="android:colorBackground">@color/md_grey_50</item>
|
<item name="android:colorBackground">@color/md_grey_50</item>
|
||||||
<item name="android:textColorPrimary">@color/md_grey_900</item>
|
<item name="android:textColorPrimary">@color/md_grey_900</item>
|
||||||
<item name="android:textColorSecondary">@color/md_grey_400</item>
|
<item name="android:textColorSecondary">@color/md_grey_400</item>
|
||||||
|
<item name="material_drawer_header_selection_text">@color/md_grey_900</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="NoBarRedTealDark" parent="MaterialDrawerTheme">
|
<style name="NoBarRedTealDark" parent="MaterialDrawerTheme">
|
||||||
@ -127,6 +137,7 @@
|
|||||||
<item name="bnbBackgroundColor">@color/md_grey_900</item>
|
<item name="bnbBackgroundColor">@color/md_grey_900</item>
|
||||||
<item name="android:textColorPrimary">@color/md_white_1000</item>
|
<item name="android:textColorPrimary">@color/md_white_1000</item>
|
||||||
<item name="android:textColorSecondary">@color/md_grey_600</item>
|
<item name="android:textColorSecondary">@color/md_grey_600</item>
|
||||||
|
<item name="material_drawer_header_selection_text">@color/md_grey_900</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="NoBarCyanPink" parent="MaterialDrawerTheme.Light">
|
<style name="NoBarCyanPink" parent="MaterialDrawerTheme.Light">
|
||||||
@ -138,6 +149,7 @@
|
|||||||
<item name="android:colorBackground">@color/md_grey_50</item>
|
<item name="android:colorBackground">@color/md_grey_50</item>
|
||||||
<item name="android:textColorPrimary">@color/md_grey_900</item>
|
<item name="android:textColorPrimary">@color/md_grey_900</item>
|
||||||
<item name="android:textColorSecondary">@color/md_grey_400</item>
|
<item name="android:textColorSecondary">@color/md_grey_400</item>
|
||||||
|
<item name="material_drawer_header_selection_text">@color/md_grey_900</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="NoBarCyanPinkDark" parent="MaterialDrawerTheme">
|
<style name="NoBarCyanPinkDark" parent="MaterialDrawerTheme">
|
||||||
@ -150,6 +162,7 @@
|
|||||||
<item name="bnbBackgroundColor">@color/md_grey_900</item>
|
<item name="bnbBackgroundColor">@color/md_grey_900</item>
|
||||||
<item name="android:textColorPrimary">@color/md_white_1000</item>
|
<item name="android:textColorPrimary">@color/md_white_1000</item>
|
||||||
<item name="android:textColorSecondary">@color/md_grey_600</item>
|
<item name="android:textColorSecondary">@color/md_grey_600</item>
|
||||||
|
<item name="material_drawer_header_selection_text">@color/md_grey_900</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
|
|
||||||
@ -162,6 +175,7 @@
|
|||||||
<item name="android:colorBackground">@color/md_grey_50</item>
|
<item name="android:colorBackground">@color/md_grey_50</item>
|
||||||
<item name="android:textColorPrimary">@color/md_grey_900</item>
|
<item name="android:textColorPrimary">@color/md_grey_900</item>
|
||||||
<item name="android:textColorSecondary">@color/md_grey_400</item>
|
<item name="android:textColorSecondary">@color/md_grey_400</item>
|
||||||
|
<item name="material_drawer_header_selection_text">@color/md_grey_900</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="NoBarTealOrangeDark" parent="MaterialDrawerTheme">
|
<style name="NoBarTealOrangeDark" parent="MaterialDrawerTheme">
|
||||||
@ -174,6 +188,14 @@
|
|||||||
<item name="bnbBackgroundColor">@color/md_grey_900</item>
|
<item name="bnbBackgroundColor">@color/md_grey_900</item>
|
||||||
<item name="android:textColorPrimary">@color/md_white_1000</item>
|
<item name="android:textColorPrimary">@color/md_white_1000</item>
|
||||||
<item name="android:textColorSecondary">@color/md_grey_600</item>
|
<item name="android:textColorSecondary">@color/md_grey_600</item>
|
||||||
|
<item name="material_drawer_header_selection_text">@color/md_grey_900</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
|
<style name="Theme.App.Light" parent="Theme.IssueReporter.Light.DarkActionBar">
|
||||||
|
<item name="colorPrimary">@color/colorPrimary</item>
|
||||||
|
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
||||||
|
<item name="colorAccent">@color/colorAccent</item>
|
||||||
|
<item name="android:textColorPrimary">@color/md_grey_900</item>
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
</resources>
|
</resources>
|
||||||
|
@ -1,20 +0,0 @@
|
|||||||
<tabs>
|
|
||||||
<tab
|
|
||||||
id="@+id/tab_new"
|
|
||||||
icon="@drawable/ic_fiber_new_black_24dp"
|
|
||||||
title="@string/tab_new"
|
|
||||||
barColorWhenSelected="@color/colorAccent" />
|
|
||||||
|
|
||||||
<tab
|
|
||||||
id="@+id/tab_archive"
|
|
||||||
icon="@drawable/ic_archive_black_24dp"
|
|
||||||
title="@string/tab_read"
|
|
||||||
barColorWhenSelected="@color/colorAccentDark"/>
|
|
||||||
|
|
||||||
<tab
|
|
||||||
id="@+id/tab_fav"
|
|
||||||
icon="@drawable/ic_favorite_black_24dp"
|
|
||||||
title="@string/tab_favs"
|
|
||||||
barColorWhenSelected="@color/pink"/>
|
|
||||||
|
|
||||||
</tabs>
|
|
@ -1,6 +1,13 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
|
||||||
|
<SwitchPreference
|
||||||
|
android:defaultValue="false"
|
||||||
|
android:key="should_log_everything"
|
||||||
|
android:summaryOff="@string/login_everything_off"
|
||||||
|
android:summaryOn="@string/login_everything_on"
|
||||||
|
android:title="@string/login_everything_title" />
|
||||||
|
|
||||||
<SwitchPreference
|
<SwitchPreference
|
||||||
android:defaultValue="false"
|
android:defaultValue="false"
|
||||||
android:key="loging_debug"
|
android:key="loging_debug"
|
||||||
|
@ -1,5 +1,4 @@
|
|||||||
<PreferenceScreen xmlns:tools="http://schemas.android.com/tools"
|
<PreferenceScreen xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
|
||||||
|
|
||||||
<!--<SwitchPreference
|
<!--<SwitchPreference
|
||||||
android:defaultValue="false"
|
android:defaultValue="false"
|
||||||
@ -18,6 +17,11 @@
|
|||||||
android:selectAllOnFocus="true"
|
android:selectAllOnFocus="true"
|
||||||
android:singleLine="true"
|
android:singleLine="true"
|
||||||
android:title="@string/pref_api_items_number_title" />
|
android:title="@string/pref_api_items_number_title" />
|
||||||
|
|
||||||
|
<SwitchPreference
|
||||||
|
android:defaultValue="false"
|
||||||
|
android:key="infinite_loading"
|
||||||
|
android:title="@string/pref_general_infinite_loading_title" />
|
||||||
<PreferenceCategory
|
<PreferenceCategory
|
||||||
android:title="@string/pref_general_category_links">
|
android:title="@string/pref_general_category_links">
|
||||||
|
|
||||||
@ -39,6 +43,11 @@
|
|||||||
android:title="@string/pref_general_category_displaying">
|
android:title="@string/pref_general_category_displaying">
|
||||||
|
|
||||||
</PreferenceCategory>
|
</PreferenceCategory>
|
||||||
|
<SwitchPreference
|
||||||
|
android:defaultValue="false"
|
||||||
|
android:key="account_header_displaying"
|
||||||
|
android:summary="@string/display_header_drawer_summary"
|
||||||
|
android:title="@string/display_header_drawer_title" />
|
||||||
<SwitchPreference
|
<SwitchPreference
|
||||||
android:defaultValue="false"
|
android:defaultValue="false"
|
||||||
android:key="card_view_active"
|
android:key="card_view_active"
|
||||||
|
@ -7,4 +7,7 @@
|
|||||||
|
|
||||||
<Preference android:title="@string/source_code"
|
<Preference android:title="@string/source_code"
|
||||||
android:key="sourceLink" />
|
android:key="sourceLink" />
|
||||||
|
|
||||||
|
<Preference android:title="@string/translation"
|
||||||
|
android:key="translation" />
|
||||||
</PreferenceScreen>
|
</PreferenceScreen>
|
12
build.gradle
12
build.gradle
@ -1,18 +1,24 @@
|
|||||||
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
||||||
|
|
||||||
buildscript {
|
buildscript {
|
||||||
ext.kotlin_version = '1.1.3-2'
|
ext.kotlin_version = '1.1.51'
|
||||||
repositories {
|
repositories {
|
||||||
maven { url 'https://maven.google.com' }
|
|
||||||
jcenter()
|
jcenter()
|
||||||
|
google()
|
||||||
|
maven {
|
||||||
|
url "https://jitpack.io"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:3.0.0-beta2'
|
classpath 'com.android.tools.build:gradle:3.0.0'
|
||||||
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
||||||
|
|
||||||
// NOTE: Do not place your application dependencies here; they belong
|
// NOTE: Do not place your application dependencies here; they belong
|
||||||
// in the individual module build.gradle files
|
// in the individual module build.gradle files
|
||||||
classpath 'com.google.gms:google-services:3.1.0'
|
classpath 'com.google.gms:google-services:3.1.0'
|
||||||
|
|
||||||
|
// Not the official version https://stackoverflow.com/questions/46525040/sonarqube-android-not-working-for-gradle-3-0-0/46813528#46813528
|
||||||
|
classpath "com.github.Shusshu:sonar-scanner-gradle:feature~support-android-gradle-3-SNAPSHOT"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
5
crowdin.yml
Normal file
5
crowdin.yml
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
files:
|
||||||
|
- source: /app/src/main/res/values/strings.xml
|
||||||
|
translation: /app/src/main/res/values-%two_letters_code%/%original_file_name%
|
||||||
|
translate_attributes: '0'
|
||||||
|
content_segmentation: '0'
|
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,6 +1,6 @@
|
|||||||
#Wed Aug 16 19:45:22 CEST 2017
|
#Sat Sep 02 11:43:17 CEST 2017
|
||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
zipStorePath=wrapper/dists
|
zipStorePath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-rc-1-all.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip
|
||||||
|
BIN
secrets.tar.enc
BIN
secrets.tar.enc
Binary file not shown.
Reference in New Issue
Block a user