Merge pull request #22 from SimpleMobileTools/master

upd
This commit is contained in:
solokot 2019-03-23 19:23:21 +03:00 committed by GitHub
commit 14b931357e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
34 changed files with 201 additions and 195 deletions

View File

@ -1,6 +1,12 @@
Changelog Changelog
========== ==========
Version 6.4.1 *(2019-03-23)*
----------------------------
* Fixed a CalDAV sync related glitch with missing events
* Fixed adding reminders to birthdays and anniversaries
Version 6.4.0 *(2019-03-20)* Version 6.4.0 *(2019-03-20)*
---------------------------- ----------------------------

View File

@ -16,8 +16,8 @@ android {
applicationId "com.simplemobiletools.calendar.pro" applicationId "com.simplemobiletools.calendar.pro"
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 28 targetSdkVersion 28
versionCode 146 versionCode 147
versionName "6.4.0" versionName "6.4.1"
multiDexEnabled true multiDexEnabled true
setProperty("archivesBaseName", "calendar") setProperty("archivesBaseName", "calendar")
} }
@ -57,7 +57,7 @@ android {
} }
dependencies { dependencies {
implementation 'com.simplemobiletools:commons:5.10.13' implementation 'com.simplemobiletools:commons:5.10.15'
implementation 'joda-time:joda-time:2.10.1' implementation 'joda-time:joda-time:2.10.1'
implementation 'androidx.multidex:multidex:2.0.1' implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha3' implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha3'

View File

@ -513,8 +513,8 @@ class CalDAVHelper(val context: Context) {
cursor = context.contentResolver.query(uri, projection, selection, null, null) cursor = context.contentResolver.query(uri, projection, selection, null, null)
if (cursor?.moveToFirst() == true) { if (cursor?.moveToFirst() == true) {
do { do {
val name = cursor.getStringValue(CalendarContract.Attendees.ATTENDEE_NAME) val name = cursor.getStringValue(CalendarContract.Attendees.ATTENDEE_NAME) ?: ""
val email = cursor.getStringValue(CalendarContract.Attendees.ATTENDEE_EMAIL) val email = cursor.getStringValue(CalendarContract.Attendees.ATTENDEE_EMAIL) ?: ""
val status = cursor.getIntValue(CalendarContract.Attendees.ATTENDEE_STATUS) val status = cursor.getIntValue(CalendarContract.Attendees.ATTENDEE_STATUS)
val relationship = cursor.getIntValue(CalendarContract.Attendees.ATTENDEE_RELATIONSHIP) val relationship = cursor.getIntValue(CalendarContract.Attendees.ATTENDEE_RELATIONSHIP)
val attendee = Attendee(0, name, email, status, "", false, relationship) val attendee = Attendee(0, name, email, status, "", false, relationship)

View File

@ -266,13 +266,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -266,13 +266,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -266,13 +266,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -266,13 +266,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -264,13 +264,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -267,13 +267,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -233,46 +233,46 @@
<!-- Strings displayed only on Google Playstore. Optional, but good to have --> <!-- Strings displayed only on Google Playstore. Optional, but good to have -->
<!-- Short description has to have less than 80 chars --> <!-- Short description has to have less than 80 chars -->
<string name="app_short_description">Offline calendar with no ads. Organizer &amp; reminders for appointments, events etc</string> <string name="app_short_description">Ένα Ημερολόγιο offline χωρίς διαφημίσεις. Οργανώστε ραντεβού, εκδηλώσεις κ.λ.π.</string>
<string name="app_long_description"> <string name="app_long_description">
Simple Calendar Pro is a fully customizable, offline calendar designed to do exactly what a calendar should do. <b>No complicated features, unnecessary permissions and no ads!</b> Simple Calendar Pro είναι ένα πλήρως προσαρμόσιμο ημερολόγιο εκτός σύνδεσης που έχει σχεδιαστεί για να κάνει ακριβώς αυτό που υπόσχεται. <b>Δεν υπάρχουν περίπλοκες λειτουργίες, περιττά δικαιώματα και διαφημίσεις!</b>
Whether youre organizing single or recurring events, birthdays, anniversaries, business meetings, appointments or anything else, Simple Calendar Pro makes it <b>easy to stay organized</b>. With an incredible variety of <b>customization options</b> you can customize event reminders, notification sounds, calendar widgets and how the app looks. Είτε οργανώνετε ένα ή επαναλαμβανόμενα γεγονότα, γενέθλια, επετείους, επαγγελματικές συναντήσεις, ραντεβού ή οτιδήποτε άλλο, το Simple Calendar Pro καθιστάται <b>να παραμένει εύκολα οργανωμένο</b>. Με μια απίστευτη ποικιλία <b>επιλογών προσαρμογής</b> μπορείτε να προσαρμόσετε τις υπενθυμίσεις συμβάντων, τους ήχους ειδοποιήσεων, τα γραφικά στοιχεία ημερολογίου και τον τρόπο εμφάνισης της εφαρμογής.
Daily, weekly and monthly views make checking your upcoming events &amp; appointments a breeze. You can even view everything as a simple list of events rather than in calendar view, so you <b>know exactly whats coming up in your life and when. </b> Καθημερινές, εβδομαδιαίες και μηνιαίες προβολές κάνουν τον έλεγχο των επερχόμενων εκδηλώσεων &amp; ραντεβού παιχνιδάκι. Μπορείτε ακόμη και να δείτε τα πάντα ως μια απλή λίστα γεγονότων και όχι σε προβολή ημερολογίου, ώστε να <b>γνωρίζετε ακριβώς τι έρχεται στη ζωή σας και πότε.</b>
---------------------------------------------------------- ----------------------------------------------------------
<b>Simple Calendar Pro Features &amp; Benefits</b> <b>Simple Calendar Pro Χαρακτηριστικά &amp; Οφέλη</b>
---------------------------------------------------------- ----------------------------------------------------------
✔️ No ads or annoying popups ✔️ Δεν υπάρχουν διαφημίσεις ή ενοχλητικά αναδυόμενα παράθυρα
✔️ No internet access needed, giving you more privacy &amp; security ✔️ Δεν απαιτείται πρόσβαση στο διαδίκτυο, προστατεύοντας την ιδιωτική σας ζωής &amp; ασφάλεια
✔️ Only the bare minimum permissions required ✔️ Μόνο τα ελάχιστα δικαιώματα απαιτούνται
✔️ Emphasis on simplicity does what a calendar needs to do! ✔️ Έμφαση στην απλότητα - κάνει αυτό που χρειάζεται ένα ημερολόγιο!
✔️ Open source ✔️ Ανοιχτού κώδικα
✔️ Fully customizable themes &amp; calendar / event widgets ✔️ Πλήρως προσαρμόσιμα θέματα &amp; widget ημερολογίου/συμβάντος
✔️ Translated into 29 languages ✔️ Μεταφρασμένο σε 29 γλώσσες
✔️ Export settings to .txt files to import to another device ✔️ Εξαγωγή ρυθμίσεων σε αρχεία .txt για εισαγωγή σε άλλη συσκευή
✔️ CalDAV calendar sync supported to sync events across devices ✔️ CalDAV συγχρονισμός υποστηρίζεται για συγχρονισμό συμβάντων σε όλες τις συσκευές
✔️ Daily, weekly, monthly, yearly &amp; event views on the calendar ✔️ Καθημερινά, εβδομαδιαία, μηνιαία, ετήσια συμβάντα προβάλονται στο ημερολόγιο
✔️ Supports exporting &amp; importing events via .ics files ✔️ Υποστηρίζει εξαγωγή &amp; εισαγωγή γεγονότων μέσω αρχείων .ics
✔️ Set multiple event reminders, customize event reminder sound and vibration ✔️ Ορίστε υπενθυμίσεις πολλαπλές συμβάντων, προσαρμόστε τον ήχο υπενθύμισης και την δόνηση
✔️ Snooze option for reminders ✔️ Επιλογές αναβολής των υπενθυμίσεις
✔️ Easily add holidays, birthdays, anniversaries &amp; appointments ✔️ Προσθέστε εύκολα διακοπές, γενέθλια, επετείους &amp; ραντεβού
✔️ Customize events start time, duration, reminders etc ✔️ Προσαρμογή συμβάντων - χρόνο έναρξης, διάρκεια, υπενθυμίσεις κλπ
✔️ Add event attendees to each event ✔️ Προσθέστε συμμετέχοντες σε κάθε εκδήλωση
✔️ Use as a personal calendar or a business calendar ✔️ Χρησιμοποιήστε το ως προσωπικό ή επιχειρηματικό ημερολόγιο
✔️ Choose between reminders &amp; email notifications to alert you about an event ✔️ Επιλέξτε μεταξύ υπενθυμίσεων &amp; email για να σας ειδοποιήσει για ένα συμβάν
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! ΛΗΨΗ SIMPLE CALENDAR PRO ΕΚΤΟΣ ΣΥΝΔΕΣΗΣ ΚΑΙ ΧΩΡΊΣ ΔΙΑΦΗΜΗΣΕΙΣ!
Check out the full suite of Simple Tools here: <b>Δείτε την πλήρη σειρά των Simple Tools εδώ:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -266,13 +266,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -266,13 +266,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -266,13 +266,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -267,13 +267,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -266,13 +266,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -266,13 +266,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -233,46 +233,46 @@
<!-- Strings displayed only on Google Playstore. Optional, but good to have --> <!-- Strings displayed only on Google Playstore. Optional, but good to have -->
<!-- Short description has to have less than 80 chars --> <!-- Short description has to have less than 80 chars -->
<string name="app_short_description">Offline calendar with no ads. Organizer &amp; reminders for appointments, events etc</string> <string name="app_short_description">Calendario offline senza pubblicità. Organizza e ricorda appuntamenti ed eventi</string>
<string name="app_long_description"> <string name="app_long_description">
Simple Calendar Pro is a fully customizable, offline calendar designed to do exactly what a calendar should do. <b>No complicated features, unnecessary permissions and no ads!</b> Semplice Calendario Pro è un calendario offline completamente personalizzabile progettato per fare esattamente quello che un calendario dovrebbe fare. <b>Non ci sono funzionalità complicate, permessi non necessari e senza pubblicità!</b>
Whether youre organizing single or recurring events, birthdays, anniversaries, business meetings, appointments or anything else, Simple Calendar Pro makes it <b>easy to stay organized</b>. With an incredible variety of <b>customization options</b> you can customize event reminders, notification sounds, calendar widgets and how the app looks. Se stai organizzando eventi singoli o ricorrenti, compleanni, anniversari, riunioni di lavoro, appuntamento o qualsiasi altra cosa, Semplice Calendario Pro ti permette di <b>rimanere organizzato</b>. Con un\'incredbile varietà di <b>opzioni di personalizzazione</b>, puoi personalizzare i promemoria degli eventi, i suoni delle notifiche, il widget del calendario e lo stile dell\'app.
Daily, weekly and monthly views make checking your upcoming events &amp; appointments a breeze. You can even view everything as a simple list of events rather than in calendar view, so you <b>know exactly whats coming up in your life and when. </b> Le vista giornaliera, settimanale o mensile permette di controllare gli eventi e appuntamenti imminenti. Puoi visualizzare tutto come una semplice lista di eventi invece che in una vista a calendario, così puoi <b>sapere esattamente cosa sta per succedere nella tua vita e quando.</b>
---------------------------------------------------------- ----------------------------------------------------------
<b>Simple Calendar Pro Features &amp; Benefits</b> <b>Semplice Calendario Pro - Funzionalità e benefici</b>
---------------------------------------------------------- ----------------------------------------------------------
✔️ No ads or annoying popups ✔️ Nessuna pubblicità o popup fastidiosi
✔️ No internet access needed, giving you more privacy &amp; security ✔️ Nessun accesso internet richiesto, così da darti più privacy e sicurezza
✔️ Only the bare minimum permissions required ✔️ Sono richieste solamente i permessi minimi indispensabili
✔️ Emphasis on simplicity does what a calendar needs to do! ✔️ Enfatizza la semplicità - quello che un calendario deve fare!
✔️ Open source ✔️ Open source
✔️ Fully customizable themes &amp; calendar / event widgets ✔️ Temi, calendario e widget degli eventi completamente personalizzable
✔️ Translated into 29 languages ✔️ Localizzato in più di 29 lingue
✔️ Export settings to .txt files to import to another device ✔️ Esporta le impostazioni in un file .txt da importare in un altro disposibito
✔️ CalDAV calendar sync supported to sync events across devices ✔️ Sincronizzazione CalDav supportata per sincronizzare gli eventi su più dispositivi
✔️ Daily, weekly, monthly, yearly &amp; event views on the calendar ✔️ Con viste giornaliere, settimanali, mensili, annuali e lista di eventi
✔️ Supports exporting &amp; importing events via .ics files ✔️ Supporta l\'importazione e l\'esportazione di eventi tramite file .ics
✔️ Set multiple event reminders, customize event reminder sound and vibration ✔️ Imposta più promemoria per gli eventi, personalizzali con la vibrazione e la suoneria
✔️ Snooze option for reminders ✔️ Opzione per posporre i promemoria
✔️ Easily add holidays, birthdays, anniversaries &amp; appointments ✔️ Aggiungi facilmente festività, compleanni, anniversari e appuntamenti
✔️ Customize events start time, duration, reminders etc ✔️ Personalizza gli eventi - inizio, durata, promemoria e molto altro
✔️ Add event attendees to each event ✔️ Aggiunti i partecipanti per ogni evento
✔️ Use as a personal calendar or a business calendar ✔️ Usalo come calendario personale o per lavoro
✔️ Choose between reminders &amp; email notifications to alert you about an event ✔️ Scegli fra promemoria e email di notifica per avvisarti riguardo un evento
SCARICA SEMPLICE CALENDARIO PRO IL CALENDARIO SEMPLICE, OFFLINE E SENZA PUBBLICITÀ!
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! <b>Dai uno sguardo alla suite completa di Simple Tools:</b>
Check out the full suite of Simple Tools here:
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -267,13 +267,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -266,13 +266,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -266,13 +266,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -266,13 +266,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -266,13 +266,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -266,13 +266,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -266,13 +266,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -264,13 +264,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -266,13 +266,13 @@ selecionando a opção \"Fonte de áudio usada pelos lembretes\" e modificando o
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -266,13 +266,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -266,13 +266,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -233,46 +233,46 @@
<!-- Strings displayed only on Google Playstore. Optional, but good to have --> <!-- Strings displayed only on Google Playstore. Optional, but good to have -->
<!-- Short description has to have less than 80 chars --> <!-- Short description has to have less than 80 chars -->
<string name="app_short_description">Offline calendar with no ads. Organizer &amp; reminders for appointments, events etc</string> <string name="app_short_description">Offline kalendár bez reklám. Spravujte pripomienky pre stretnutia a iné udalosti</string>
<string name="app_long_description"> <string name="app_long_description">
Simple Calendar Pro is a fully customizable, offline calendar designed to do exactly what a calendar should do. <b>No complicated features, unnecessary permissions and no ads!</b> Jednoduchý kalendár Pro je prispôsobiteľný offline kalendár vytvorený presne na to, čo by kalendáre mali zvládať.<b>Nenachádzajú sa tu žiadne nepotrebné funkcie, nepotrebné oprávnenia, ani reklamy!</b>
Whether youre organizing single or recurring events, birthdays, anniversaries, business meetings, appointments or anything else, Simple Calendar Pro makes it <b>easy to stay organized</b>. With an incredible variety of <b>customization options</b> you can customize event reminders, notification sounds, calendar widgets and how the app looks. Či organizujete jednoduchú, alebo opakujúcu sa udalosť, narodeniny, výročia, pracovné stretnutia, alebo hocičo iné, Jednoduchý kalendár Pro vám <b>uľahčí prácu</b>. S veľkou mierou <b>prispôsobiteľnosti</b> viete meniť pripomienky udalostí, zvuky pripomienok, widgety kalendára a celkový vzhľad apky.
Daily, weekly and monthly views make checking your upcoming events &amp; appointments a breeze. You can even view everything as a simple list of events rather than in calendar view, so you <b>know exactly whats coming up in your life and when. </b> Vďaka dennému, týždennému a mesačnému pohľadu si viete veľmi jednoducho prezrieť nasledujúce udalosti a stretnutia. Všetky udalosti si viete pozrieť aj v jednoduchom chronologickom zozname udalostí. Vďaka tomu viete <b>presne čo a kedy sa blíži.</b>
---------------------------------------------------------- ----------------------------------------------------------
<b>Simple Calendar Pro Features &amp; Benefits</b> <b>Jednoduchý kalendár Pro - funkcie a benefity</b>
---------------------------------------------------------- ----------------------------------------------------------
✔️ No ads or annoying popups ✔️ Žiadne reklamy a otravné vyskakovacie okná
✔️ No internet access needed, giving you more privacy &amp; security ✔️ Nie je potrebný prístup na internet, vďaka čomu budete mať maximálne súkromie a bezpečie
✔️ Only the bare minimum permissions required ✔️ Obsahuje iba nevyhnutne potrebné oprávnenia
✔️ Emphasis on simplicity does what a calendar needs to do! ✔️ Prízvuk na jednoduchosť - robí presne to, čo sa od kalendára očakáva!
✔️ Open source ✔️ Otvorený zdrojový kód
✔️ Fully customizable themes &amp; calendar / event widgets ✔️ Plne prispôsobiteľné témy, pohľady a widgety
✔️ Translated into 29 languages ✔️ Preložený do 29 jazykov
✔️ Export settings to .txt files to import to another device ✔️ Jednoducho exportujte nastavenia do .txt súboru a importujte ich do iného zariadenia
✔️ CalDAV calendar sync supported to sync events across devices ✔️ Obsahuje CalDAV sychronizáciu na zdieľanie kalendárov medzi zariadeniami
✔️ Daily, weekly, monthly, yearly &amp; event views on the calendar ✔️ Obsahuje denný, týždenný, mesačný, ročný pohľad na kalendár, ako aj jednoduchý zoznam udalostí
✔️ Supports exporting &amp; importing events via .ics files ✔️ Podporuje exportovanie a importovanie udalostí pomocou .ics súborov
✔️ Set multiple event reminders, customize event reminder sound and vibration ✔️ Možnosť nastaviť viacero pripomienok na udalosti, alebo zmeniť ich zvučku a vibrovanie
✔️ Snooze option for reminders ✔️ Možnosť odloženia pripomienok na neskôr
✔️ Easily add holidays, birthdays, anniversaries &amp; appointments ✔️ Jednoduché pridávanie prázdnin, narodenín, výročí a stretnutí
✔️ Customize events start time, duration, reminders etc ✔️ Nastaviteľné udalosti - začiatok, trvanie, pripomienky atď
✔️ Add event attendees to each event ✔️ Možnosť pridávania zúčastnených na udalosti
✔️ Use as a personal calendar or a business calendar ✔️ Možné použitie ako súkromný, aj business kalendár
✔️ Choose between reminders &amp; email notifications to alert you about an event ✔️ Zvoľte si buď pripomienku, alebo email na synchronizované udalosti
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! STIAHNITE SI JEDNODUCHÝ KALENDÁR PRO - JEDNODUCHÝ OFFLINE KALENDÁR BEZ REKLÁM!
Check out the full suite of Simple Tools here: <b>Pozrite si celú sadu aplikácií na:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -266,13 +266,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -265,13 +265,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -99,7 +99,7 @@
<string name="event_reminders">活動提醒</string> <string name="event_reminders">活動提醒</string>
<!-- Event attendees --> <!-- Event attendees -->
<string name="add_another_attendee">新增另一場出席</string> <string name="add_another_attendee">新增另一位出席者</string>
<string name="my_status">我的狀態:</string> <string name="my_status">我的狀態:</string>
<string name="going">前去</string> <string name="going">前去</string>
<string name="not_going">不前去</string> <string name="not_going">不前去</string>
@ -233,46 +233,46 @@
<!-- Strings displayed only on Google Playstore. Optional, but good to have --> <!-- Strings displayed only on Google Playstore. Optional, but good to have -->
<!-- Short description has to have less than 80 chars --> <!-- Short description has to have less than 80 chars -->
<string name="app_short_description">Offline calendar with no ads. Organizer &amp; reminders for appointments, events etc</string> <string name="app_short_description">沒有廣告的離線行事曆。對約會和活動之類的進行安排&amp;提醒</string>
<string name="app_long_description"> <string name="app_long_description">
Simple Calendar Pro is a fully customizable, offline calendar designed to do exactly what a calendar should do. <b>No complicated features, unnecessary permissions and no ads!</b> 簡易行事曆Pro是一個高度自訂化完全旨在於行事曆應該做什麼的離線行事曆。 <b>沒有複雜的功能、非必要的權限和廣告!</b>
Whether youre organizing single or recurring events, birthdays, anniversaries, business meetings, appointments or anything else, Simple Calendar Pro makes it <b>easy to stay organized</b>. With an incredible variety of <b>customization options</b> you can customize event reminders, notification sounds, calendar widgets and how the app looks. 無論您是要安排單一還是反復的活動、生日、紀念日、業務會議、約會或任何其他活動簡易行事曆Pro都能讓您<b>輕鬆維持安排</b>。透過多樣化的<b>自訂選項</b>,您可以自訂活動提醒、通知音效、行事曆小工具和應用程式外觀。
Daily, weekly and monthly views make checking your upcoming events &amp; appointments a breeze. You can even view everything as a simple list of events rather than in calendar view, so you <b>know exactly whats coming up in your life and when. </b> 每日、每週、每月的檢視模式使您輕易就確認即將到來的活動&amp;約會。您甚至能夠以簡單的活動列表來瀏覽全部,而不是行事曆畫面,所以您<b>完全知道生活中何時會發生什麼事。</b>
---------------------------------------------------------- ----------------------------------------------------------
<b>Simple Calendar Pro Features &amp; Benefits</b> <b>簡易行事曆Pro 特色 &amp; 優點</b>
---------------------------------------------------------- ----------------------------------------------------------
✔️ No ads or annoying popups ✔️ 沒有廣告和討厭的彈出畫面
✔️ No internet access needed, giving you more privacy &amp; security ✔️ 不需要網路連線,給您更多隱私及安全
✔️ Only the bare minimum permissions required ✔️ 只需要最低限度的權限
✔️ Emphasis on simplicity does what a calendar needs to do! ✔️ 著重於簡單 做行事曆該做的!
✔️ Open source ✔️ 開放原始碼
✔️ Fully customizable themes &amp; calendar / event widgets ✔️ 完整自訂化主題&amp;行事曆/活動小工具
✔️ Translated into 29 languages ✔️ 翻譯成29種語言
✔️ Export settings to .txt files to import to another device ✔️ 將設定匯出成.txt檔案以匯入到別的裝置
✔️ CalDAV calendar sync supported to sync events across devices ✔️ 支援CalDAV行事曆同步來跨裝置同步活動
✔️ Daily, weekly, monthly, yearly &amp; event views on the calendar ✔️ 在行事曆上有每日、每週、每月、每年及活動瀏覽的檢視方式
✔️ Supports exporting &amp; importing events via .ics files ✔️ 支援透過.ics檔案來匯出&amp;匯入活動
✔️ Set multiple event reminders, customize event reminder sound and vibration ✔️ 設置多個活動提醒,自訂活動提醒音效和震動
✔️ Snooze option for reminders ✔️ 提醒有延遲選項
✔️ Easily add holidays, birthdays, anniversaries &amp; appointments ✔️ 輕鬆添加假日、生日、紀念日和約會
✔️ Customize events start time, duration, reminders etc ✔️ 自訂活動 開始時間、持續時間、提醒…之類的
✔️ Add event attendees to each event ✔️ 為每個活動添加活動出席者
✔️ Use as a personal calendar or a business calendar ✔️ 用做於個人行事曆或業務行事曆
✔️ Choose between reminders &amp; email notifications to alert you about an event ✔️ 在提醒和電子信箱通知之間選擇,以提醒您關於活動的訊息
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! <u>下載簡易行事曆PRO 沒有廣告的簡易離線行事曆!</u>
Check out the full suite of Simple Tools here: <b>於此查看簡易工具系列全套:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -266,13 +266,13 @@
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools
</string> </string>

View File

@ -29,11 +29,11 @@ Daily, weekly and monthly views make checking your upcoming events & appointment
DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS! DOWNLOAD SIMPLE CALENDAR PRO THE SIMPLE OFFLINE CALENDAR WITH NO ADS!
Check out the full suite of Simple Tools here: <b>Check out the full suite of Simple Tools here:</b>
https://www.simplemobiletools.com https://www.simplemobiletools.com
Facebook: <b>Facebook:</b>
https://www.facebook.com/simplemobiletools https://www.facebook.com/simplemobiletools
Reddit: <b>Reddit:</b>
https://www.reddit.com/r/SimpleMobileTools https://www.reddit.com/r/SimpleMobileTools