Added limiting events on the list widget

This commit is contained in:
Agnieszka C 2021-12-24 11:57:36 +01:00
parent dd9ffa6f94
commit 81528f2438
53 changed files with 1045 additions and 51 deletions

View File

@ -4,22 +4,27 @@ import android.app.Activity
import android.appwidget.AppWidgetManager
import android.content.Intent
import android.graphics.Color
import android.graphics.drawable.ColorDrawable
import android.os.Bundle
import android.widget.SeekBar
import com.simplemobiletools.calendar.pro.R
import com.simplemobiletools.calendar.pro.adapters.EventListAdapter
import com.simplemobiletools.calendar.pro.dialogs.CustomPeriodPickerDialog
import com.simplemobiletools.calendar.pro.extensions.config
import com.simplemobiletools.calendar.pro.extensions.seconds
import com.simplemobiletools.calendar.pro.extensions.widgetsDB
import com.simplemobiletools.calendar.pro.helpers.*
import com.simplemobiletools.calendar.pro.helpers.Formatter
import com.simplemobiletools.calendar.pro.helpers.MyWidgetListProvider
import com.simplemobiletools.calendar.pro.models.ListEvent
import com.simplemobiletools.calendar.pro.models.ListItem
import com.simplemobiletools.calendar.pro.models.ListSectionDay
import com.simplemobiletools.calendar.pro.models.Widget
import com.simplemobiletools.commons.dialogs.ColorPickerDialog
import com.simplemobiletools.commons.extensions.adjustAlpha
import com.simplemobiletools.commons.extensions.applyColorFilter
import com.simplemobiletools.commons.extensions.setFillWithStroke
import com.simplemobiletools.commons.dialogs.RadioGroupDialog
import com.simplemobiletools.commons.extensions.*
import com.simplemobiletools.commons.helpers.IS_CUSTOMIZING_COLORS
import com.simplemobiletools.commons.helpers.ensureBackgroundThread
import com.simplemobiletools.commons.models.RadioItem
import kotlinx.android.synthetic.main.widget_config_list.*
import org.joda.time.DateTime
import java.util.*
@ -31,6 +36,9 @@ class WidgetListConfigureActivity : SimpleActivity() {
private var mBgColor = 0
private var mTextColorWithoutTransparency = 0
private var mTextColor = 0
private var selectedPeriodOption = 0
private var selectedPeriodValue: Int? = null
private var selectedPeriodValueType: Int? = null
public override fun onCreate(savedInstanceState: Bundle?) {
useDynamicTheme = false
@ -51,6 +59,9 @@ class WidgetListConfigureActivity : SimpleActivity() {
config_events_list.adapter = this
}
period_picker_holder.background = ColorDrawable(config.backgroundColor)
period_picker_value.setOnClickListener { showPeriodSelector() }
config_save.setOnClickListener { saveConfig() }
config_bg_color.setOnClickListener { pickBackgroundColor() }
config_text_color.setOnClickListener { pickTextColor() }
@ -78,6 +89,11 @@ class WidgetListConfigureActivity : SimpleActivity() {
}
private fun saveConfig() {
val widget = Widget(null, mWidgetId, calculatePeriod())
ensureBackgroundThread {
widgetsDB.insertOrUpdate(widget)
}
storeWidgetColors()
requestWidgetUpdate()
@ -88,6 +104,60 @@ class WidgetListConfigureActivity : SimpleActivity() {
finish()
}
private fun calculatePeriod(): Int {
return if (selectedPeriodOption == EVENT_PERIOD_CUSTOM && selectedPeriodValue != null) {
when (selectedPeriodValueType) {
R.id.dialog_radio_days -> selectedPeriodValue!! * DAY
R.id.dialog_radio_weeks -> selectedPeriodValue!! * WEEK
else -> selectedPeriodValue!! * MONTH
}
} else {
selectedPeriodOption
}
}
private fun showPeriodSelector() {
hideKeyboard()
val items = ArrayList<RadioItem>()
items.add(RadioItem(EVENT_PERIOD_ONE_YEAR, getString(R.string.within_the_next_one_year)))
items.add(RadioItem(EVENT_PERIOD_TODAY, getString(R.string.today_only)))
items.add(RadioItem(EVENT_PERIOD_CUSTOM, getString(R.string.within_the_next)))
RadioGroupDialog(this, items, selectedPeriodOption, showOKButton = true, cancelCallback = null) {
val option = it as Int
if (option == EVENT_PERIOD_CUSTOM) {
CustomPeriodPickerDialog(this, selectedPeriodValue, selectedPeriodValueType) { value: Int, type: Int ->
updateSelectedPeriod(option, value, type)
}
} else {
updateSelectedPeriod(option)
}
}
}
private fun updateSelectedPeriod(selectedPeriod: Int, periodValue: Int? = null, periodType: Int? = null) {
selectedPeriodOption = selectedPeriod
when (selectedPeriodOption) {
EVENT_PERIOD_ONE_YEAR -> period_picker_value.setText(R.string.within_the_next_one_year)
EVENT_PERIOD_TODAY -> period_picker_value.setText(R.string.today_only)
else -> {
if (periodValue != null && periodValue != 0 && periodType != null) {
selectedPeriodValue = periodValue
selectedPeriodValueType = periodType
when (periodType) {
R.id.dialog_radio_days -> period_picker_value.setText(resources.getQuantityString(R.plurals.within_the_next_days, periodValue, periodValue))
R.id.dialog_radio_weeks -> period_picker_value.setText(resources.getQuantityString(R.plurals.within_the_next_weeks, periodValue, periodValue))
R.id.dialog_radio_months -> period_picker_value.setText(resources.getQuantityString(R.plurals.within_the_next_months, periodValue, periodValue))
}
} else {
selectedPeriodOption = EVENT_PERIOD_ONE_YEAR
period_picker_value.setText(R.string.within_the_next_one_year)
}
}
}
}
private fun storeWidgetColors() {
config.apply {
widgetBgColor = mBgColor

View File

@ -16,7 +16,7 @@ import com.simplemobiletools.commons.helpers.MEDIUM_ALPHA
import org.joda.time.DateTime
import java.util.*
class EventListWidgetAdapter(val context: Context) : RemoteViewsService.RemoteViewsFactory {
class EventListWidgetAdapter(val context: Context, val intent: Intent) : RemoteViewsService.RemoteViewsFactory {
private val ITEM_EVENT = 0
private val ITEM_SECTION_DAY = 1
private val ITEM_SECTION_MONTH = 2
@ -159,8 +159,14 @@ class EventListWidgetAdapter(val context: Context) : RemoteViewsService.RemoteVi
override fun onDataSetChanged() {
initConfigValues()
val fromTS = DateTime().seconds() - context.config.displayPastEvents * 60
val toTS = DateTime().plusYears(1).seconds()
val period = intent.getIntExtra(EVENT_LIST_PERIOD, EVENT_PERIOD_ONE_YEAR)
val currentDate = DateTime()
val fromTS = currentDate.seconds() - context.config.displayPastEvents * 60
val toTS = when (period) {
EVENT_PERIOD_ONE_YEAR -> currentDate.plusYears(1).seconds()
EVENT_PERIOD_TODAY -> currentDate.withTime(23, 59, 59, 999).seconds()
else -> currentDate.plusSeconds(period).seconds()
}
context.eventsHelper.getEventsSync(fromTS, toTS, applyTypeFilter = true) {
val listItems = ArrayList<ListItem>(it.size)
val replaceDescription = context.config.replaceDescription

View File

@ -13,11 +13,13 @@ import com.simplemobiletools.calendar.pro.helpers.Converters
import com.simplemobiletools.calendar.pro.helpers.REGULAR_EVENT_TYPE_ID
import com.simplemobiletools.calendar.pro.interfaces.EventTypesDao
import com.simplemobiletools.calendar.pro.interfaces.EventsDao
import com.simplemobiletools.calendar.pro.interfaces.WidgetsDao
import com.simplemobiletools.calendar.pro.models.Event
import com.simplemobiletools.calendar.pro.models.EventType
import com.simplemobiletools.calendar.pro.models.Widget
import java.util.concurrent.Executors
@Database(entities = [Event::class, EventType::class], version = 4)
@Database(entities = [Event::class, EventType::class, Widget::class], version = 5)
@TypeConverters(Converters::class)
abstract class EventsDatabase : RoomDatabase() {
@ -25,6 +27,8 @@ abstract class EventsDatabase : RoomDatabase() {
abstract fun EventTypesDao(): EventTypesDao
abstract fun WidgetsDao(): WidgetsDao
companion object {
private var db: EventsDatabase? = null
@ -42,6 +46,7 @@ abstract class EventsDatabase : RoomDatabase() {
.addMigrations(MIGRATION_1_2)
.addMigrations(MIGRATION_2_3)
.addMigrations(MIGRATION_3_4)
.addMigrations(MIGRATION_4_5)
.build()
db!!.openHelper.setWriteAheadLoggingEnabled(true)
}
@ -89,5 +94,14 @@ abstract class EventsDatabase : RoomDatabase() {
}
}
}
private val MIGRATION_4_5 = object : Migration(4, 5) {
override fun migrate(database: SupportSQLiteDatabase) {
database.apply {
execSQL("CREATE TABLE IF NOT EXISTS `widgets` (`id` INTEGER PRIMARY KEY AUTOINCREMENT, `widget_id` INTEGER NOT NULL, `period` INTEGER NOT NULL)")
execSQL("CREATE UNIQUE INDEX IF NOT EXISTS `index_widgets_widget_id` ON `widgets` (`widget_id`)")
}
}
}
}
}

View File

@ -0,0 +1,35 @@
package com.simplemobiletools.calendar.pro.dialogs
import android.app.Activity
import android.view.ViewGroup
import androidx.appcompat.app.AlertDialog
import com.simplemobiletools.calendar.pro.R
import com.simplemobiletools.commons.extensions.*
import kotlinx.android.synthetic.main.dialog_custom_period_picker.view.*
class CustomPeriodPickerDialog(val activity: Activity, val initialValue: Int?, val initialType: Int?, val callback: (value: Int, selectedType: Int) -> Unit) {
var dialog: AlertDialog
var view = (activity.layoutInflater.inflate(R.layout.dialog_custom_period_picker, null) as ViewGroup)
init {
view.dialog_custom_period_value.setText(initialValue?.toString() ?: "")
view.dialog_radio_view.check(initialType ?: R.id.dialog_radio_days)
dialog = AlertDialog.Builder(activity)
.setPositiveButton(R.string.ok) { dialogInterface, i -> confirmReminder() }
.setNegativeButton(R.string.cancel, null)
.create().apply {
activity.setupDialogStuff(view, this) {
showKeyboard(view.dialog_custom_period_value)
}
}
}
private fun confirmReminder() {
val value = view.dialog_custom_period_value.value
val type = view.dialog_radio_view.checkedRadioButtonId
val period = Integer.valueOf(if (value.isEmpty()) "0" else value)
callback(period, type)
activity.hideKeyboard()
dialog.dismiss()
}
}

View File

@ -32,6 +32,7 @@ import com.simplemobiletools.calendar.pro.helpers.*
import com.simplemobiletools.calendar.pro.helpers.Formatter
import com.simplemobiletools.calendar.pro.interfaces.EventTypesDao
import com.simplemobiletools.calendar.pro.interfaces.EventsDao
import com.simplemobiletools.calendar.pro.interfaces.WidgetsDao
import com.simplemobiletools.calendar.pro.models.*
import com.simplemobiletools.calendar.pro.receivers.CalDAVSyncReceiver
import com.simplemobiletools.calendar.pro.receivers.NotificationReceiver
@ -46,6 +47,7 @@ import java.util.*
val Context.config: Config get() = Config.newInstance(applicationContext)
val Context.eventsDB: EventsDao get() = EventsDatabase.getInstance(applicationContext).EventsDao()
val Context.eventTypesDB: EventTypesDao get() = EventsDatabase.getInstance(applicationContext).EventTypesDao()
val Context.widgetsDB: WidgetsDao get() = EventsDatabase.getInstance(applicationContext).WidgetsDao()
val Context.eventsHelper: EventsHelper get() = EventsHelper(this)
val Context.calDAVHelper: CalDAVHelper get() = CalDAVHelper(this)

View File

@ -48,6 +48,12 @@ const val WEEK = 604800
const val MONTH = 2592001 // exact value not taken into account, Joda is used for adding months and years
const val YEAR = 31536000
const val EVENT_PERIOD_ONE_YEAR = 0
const val EVENT_PERIOD_TODAY = -1
const val EVENT_PERIOD_CUSTOM = -2
const val EVENT_LIST_PERIOD = "event_list_period"
// Shared Preferences
const val WEEK_NUMBERS = "week_numbers"
const val START_WEEKLY_AT = "start_weekly_at"

View File

@ -13,9 +13,11 @@ import com.simplemobiletools.calendar.pro.activities.SplashActivity
import com.simplemobiletools.calendar.pro.extensions.config
import com.simplemobiletools.calendar.pro.extensions.getWidgetFontSize
import com.simplemobiletools.calendar.pro.extensions.launchNewEventIntent
import com.simplemobiletools.calendar.pro.extensions.widgetsDB
import com.simplemobiletools.calendar.pro.services.WidgetService
import com.simplemobiletools.calendar.pro.services.WidgetServiceEmpty
import com.simplemobiletools.commons.extensions.*
import com.simplemobiletools.commons.helpers.ensureBackgroundThread
import org.joda.time.DateTime
class MyWidgetListProvider : AppWidgetProvider() {
@ -32,38 +34,42 @@ class MyWidgetListProvider : AppWidgetProvider() {
val textColor = context.config.widgetTextColor
val appWidgetManager = AppWidgetManager.getInstance(context) ?: return
appWidgetManager.getAppWidgetIds(getComponentName(context)).forEach {
val views = RemoteViews(context.packageName, R.layout.widget_event_list).apply {
applyColorFilter(R.id.widget_event_list_background, context.config.widgetBgColor)
setTextColor(R.id.widget_event_list_empty, textColor)
setTextSize(R.id.widget_event_list_empty, fontSize)
ensureBackgroundThread {
appWidgetManager.getAppWidgetIds(getComponentName(context)).forEach {
val widget = context.widgetsDB.getWidgetWithWidgetId(it)
val views = RemoteViews(context.packageName, R.layout.widget_event_list).apply {
applyColorFilter(R.id.widget_event_list_background, context.config.widgetBgColor)
setTextColor(R.id.widget_event_list_empty, textColor)
setTextSize(R.id.widget_event_list_empty, fontSize)
setTextColor(R.id.widget_event_list_today, textColor)
setTextSize(R.id.widget_event_list_today, fontSize)
setTextColor(R.id.widget_event_list_today, textColor)
setTextSize(R.id.widget_event_list_today, fontSize)
}
val todayText = Formatter.getLongestDate(getNowSeconds())
views.setText(R.id.widget_event_list_today, todayText)
views.setImageViewBitmap(R.id.widget_event_new_event, context.resources.getColoredBitmap(R.drawable.ic_plus_vector, textColor))
setupIntent(context, views, NEW_EVENT, R.id.widget_event_new_event)
setupIntent(context, views, LAUNCH_CAL, R.id.widget_event_list_today)
views.setImageViewBitmap(R.id.widget_event_go_to_today, context.resources.getColoredBitmap(R.drawable.ic_today_vector, textColor))
setupIntent(context, views, GO_TO_TODAY, R.id.widget_event_go_to_today)
Intent(context, WidgetService::class.java).apply {
putExtra(EVENT_LIST_PERIOD, widget?.period)
data = Uri.parse(this.toUri(Intent.URI_INTENT_SCHEME))
views.setRemoteAdapter(R.id.widget_event_list, this)
}
val startActivityIntent = context.getLaunchIntent() ?: Intent(context, SplashActivity::class.java)
val startActivityPendingIntent = PendingIntent.getActivity(context, 0, startActivityIntent, PendingIntent.FLAG_UPDATE_CURRENT)
views.setPendingIntentTemplate(R.id.widget_event_list, startActivityPendingIntent)
views.setEmptyView(R.id.widget_event_list, R.id.widget_event_list_empty)
appWidgetManager.updateAppWidget(it, views)
appWidgetManager.notifyAppWidgetViewDataChanged(it, R.id.widget_event_list)
}
val todayText = Formatter.getLongestDate(getNowSeconds())
views.setText(R.id.widget_event_list_today, todayText)
views.setImageViewBitmap(R.id.widget_event_new_event, context.resources.getColoredBitmap(R.drawable.ic_plus_vector, textColor))
setupIntent(context, views, NEW_EVENT, R.id.widget_event_new_event)
setupIntent(context, views, LAUNCH_CAL, R.id.widget_event_list_today)
views.setImageViewBitmap(R.id.widget_event_go_to_today, context.resources.getColoredBitmap(R.drawable.ic_today_vector, textColor))
setupIntent(context, views, GO_TO_TODAY, R.id.widget_event_go_to_today)
Intent(context, WidgetService::class.java).apply {
data = Uri.parse(this.toUri(Intent.URI_INTENT_SCHEME))
views.setRemoteAdapter(R.id.widget_event_list, this)
}
val startActivityIntent = context.getLaunchIntent() ?: Intent(context, SplashActivity::class.java)
val startActivityPendingIntent = PendingIntent.getActivity(context, 0, startActivityIntent, PendingIntent.FLAG_UPDATE_CURRENT)
views.setPendingIntentTemplate(R.id.widget_event_list, startActivityPendingIntent)
views.setEmptyView(R.id.widget_event_list, R.id.widget_event_list_empty)
appWidgetManager.updateAppWidget(it, views)
appWidgetManager.notifyAppWidgetViewDataChanged(it, R.id.widget_event_list)
}
}
@ -86,6 +92,15 @@ class MyWidgetListProvider : AppWidgetProvider() {
}
}
override fun onDeleted(context: Context?, appWidgetIds: IntArray?) {
super.onDeleted(context, appWidgetIds)
ensureBackgroundThread {
appWidgetIds?.forEach {
context?.widgetsDB?.deleteWidgetId(it)
}
}
}
private fun launchCalenderInDefaultView(context: Context) {
(context.getLaunchIntent() ?: Intent(context, SplashActivity::class.java)).apply {
putExtra(DAY_CODE, Formatter.getDayCodeFromDateTime(DateTime()))

View File

@ -0,0 +1,22 @@
package com.simplemobiletools.calendar.pro.interfaces
import androidx.room.Dao
import androidx.room.Insert
import androidx.room.OnConflictStrategy
import androidx.room.Query
import com.simplemobiletools.calendar.pro.models.Widget
@Dao
interface WidgetsDao {
@Query("SELECT * FROM widgets")
fun getWidgets(): List<Widget>
@Query("SELECT * FROM widgets WHERE widget_id = :widgetId")
fun getWidgetWithWidgetId(widgetId: Int): Widget?
@Insert(onConflict = OnConflictStrategy.REPLACE)
fun insertOrUpdate(widget: Widget): Long
@Query("DELETE FROM widgets WHERE widget_id = :widgetId")
fun deleteWidgetId(widgetId: Int)
}

View File

@ -0,0 +1,12 @@
package com.simplemobiletools.calendar.pro.models
import androidx.room.ColumnInfo
import androidx.room.Entity
import androidx.room.Index
import androidx.room.PrimaryKey
@Entity(tableName = "widgets", indices = [(Index(value = ["widget_id"], unique = true))])
data class Widget(
@PrimaryKey(autoGenerate = true) var id: Long?,
@ColumnInfo(name = "widget_id") var widgetId: Int,
@ColumnInfo(name = "period") var period: Int)

View File

@ -5,5 +5,5 @@ import android.widget.RemoteViewsService
import com.simplemobiletools.calendar.pro.adapters.EventListWidgetAdapter
class WidgetService : RemoteViewsService() {
override fun onGetViewFactory(intent: Intent) = EventListWidgetAdapter(applicationContext)
override fun onGetViewFactory(intent: Intent) = EventListWidgetAdapter(applicationContext, intent)
}

View File

@ -0,0 +1,60 @@
<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/dialog_custom_period_scrollview"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/dialog_custom_period_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:paddingLeft="@dimen/activity_margin"
android:paddingRight="@dimen/activity_margin"
android:paddingTop="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MyEditText
android:id="@+id/dialog_custom_period_value"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:digits="0123456789"
android:ems="6"
android:inputType="number"
android:maxLength="5"
android:textCursorDrawable="@null"
android:textSize="@dimen/normal_text_size"/>
<RadioGroup
android:id="@+id/dialog_radio_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MyCompatRadioButton
android:id="@+id/dialog_radio_days"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="@dimen/activity_margin"
android:paddingTop="@dimen/activity_margin"
android:text="@string/days_raw"/>
<com.simplemobiletools.commons.views.MyCompatRadioButton
android:id="@+id/dialog_radio_weeks"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="@dimen/activity_margin"
android:paddingTop="@dimen/activity_margin"
android:text="@string/weeks_raw"/>
<com.simplemobiletools.commons.views.MyCompatRadioButton
android:id="@+id/dialog_radio_months"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="@dimen/activity_margin"
android:paddingTop="@dimen/activity_margin"
android:text="@string/months_raw"/>
</RadioGroup>
</LinearLayout>
</ScrollView>

View File

@ -7,11 +7,38 @@
android:layout_centerHorizontal="true"
android:layout_margin="@dimen/activity_margin">
<RelativeLayout
android:id="@+id/period_picker_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="@dimen/activity_margin"
android:paddingBottom="@dimen/activity_margin">
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/period_picker_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/normal_margin"
android:layout_marginBottom="@dimen/normal_margin"
android:text="@string/show_events_happening" />
<com.simplemobiletools.commons.views.MyTextView
android:id="@+id/period_picker_value"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/period_picker_label"
android:background="@drawable/button_background"
android:padding="@dimen/normal_margin"
android:text="@string/within_the_next_one_year" />
</RelativeLayout>
<com.simplemobiletools.commons.views.MyRecyclerView
android:id="@+id/config_events_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/config_bg_color"
android:layout_below="@id/period_picker_holder"
android:layout_marginBottom="@dimen/activity_margin"
android:background="@drawable/widget_round_background"
android:clipToPadding="false"

View File

@ -233,6 +233,23 @@
<string name="sample_title_4">غداء مع ماري</string>
<string name="sample_description_4">في الساحة العامة</string>
<string name="sample_title_5">وقت القهوة</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">كيف يمكنني حذف العطلات المنقولة عن طريق زر \"أضف عطلات\"؟</string>
<string name="faq_1_text">العطلات المضافة بهذه الطريقة تدخل تحت نوع جديد يسمى \"العطلات\". يمكنك الذهاب الى الإعدادات -&gt; إدارة أنواع الأحداث، ثم اضغط مطولا على نوع الحدث واحذفه عن طريق اختيار سلة المهملات.</string>
@ -305,4 +322,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
</resources>
</resources>

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">Plazada</string>
<string name="sample_title_5">Kofe vaxtı</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">How can I remove the holidays imported via the \"Add holidays\" button?</string>
<string name="faq_1_text">Holidays created that way are inserted in a new event type called \"Holidays\". You can go in Settings -> Manage Event Types,

View File

@ -250,6 +250,24 @@
<string name="sample_description_4">প্লাজাতে</string>
<string name="sample_title_5">কফি টাইম</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">আমি কীভাবে \"ছুটি যুক্ত করুন?\" বাটনের মাধ্যমে ইমপোর্ট করা ছুটিগুলি সরিয়ে ফেলতে পারি?</string>
<string name="faq_1_text">\"ছুটির দিন\" নামে নতুন ইভেন্ট টাইপ ইনসার্ট করার মাধ্যমে ছুটির দিন তৈরি হয়।</string>

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">Er c\'hrampouezhti</string>
<string name="sample_title_5">Banne kafe</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">How can I remove the holidays imported via the \"Add holidays\" button?</string>
<string name="faq_1_text">Holidays created that way are inserted in a new event type called \"Holidays\". You can go in Settings -> Manage Event Types,

View File

@ -227,6 +227,23 @@
<string name="sample_title_4">Dinar amb Maria</string>
<string name="sample_description_4">A la plaça</string>
<string name="sample_title_5">Hora del cafè</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Com puc eliminar els dies festius importats mitjançant el botó «Afegeix festius»\?</string>
<string name="faq_1_text">Els dies festius creats d\'aquesta manera s\'insereixen en un tipus d\'esdeveniment nou anomenat «Festius». Podeu anar a Configuració -&gt; Gestiona els tipus d\'esdeveniments, prémer durant molt de temps el tipus d\'esdeveniment indicat i suprimir-lo seleccionant la paperera.</string>

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">V obchodě</string>
<string name="sample_title_5">Čas na kávu</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Jak mohu odstranit svátky importované přes tlačítko \"Přidat svátky\"?</string>
<string name="faq_1_text">Svátky vytvořené touto cestou jsou vloženy pod novým typem události \"Svátky\". Odstranit je můžete přes: Nastavení -> Správa typů událostí ->

View File

@ -227,6 +227,23 @@
<string name="sample_title_4">Frokost med Marie</string>
<string name="sample_description_4">I byen</string>
<string name="sample_title_5">Kaffetid!</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Hvordan kan jeg fjerne helligdage der er importeret med funktionen \"Tilføj helligdage\"?</string>
<string name="faq_1_text">Helligdage oprettet på den måde er indsat under begivenhedstypen \"Helligdage\". Gå til Indstillinger -&gt; Håndter begivenhedstyper. Efter et par sekunders pres på en type kan du slette den ved at klikke på papirkurven.</string>

View File

@ -233,6 +233,23 @@
<string name="sample_title_4">Essen mit Marie</string>
<string name="sample_description_4">Im Einkaufszentrum</string>
<string name="sample_title_5">Kaffeepause</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Wie kann ich Feiertage löschen, die über „Feiertage hinzufügen“ importiert wurden\?</string>
<string name="faq_1_text">Die über diesen Weg erstellten Feiertage sind als Termintyp „Feiertage“ deklariert. Du kannst in den Einstellungen -&gt; Termintypen verwalten auf den Termintyp gedrückt halten und über das Papierkorbsymbol löschen.</string>
@ -295,4 +312,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
</resources>
</resources>

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">Στην πλατεία</string>
<string name="sample_title_5">Ωρα για καφέ</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Πώς μπορώ να αφαιρέσω τις αργίες που εισήχθησαν μέσω του κουμπιού \"Προσθήκη αργιών\" ;</string>
<string name="faq_1_text">Οι αργίες που δημιουργήθηκαν με τον τρόπο αυτό εισάγονται σε ένα νέο τύπο εκδήλωσης που ονομάζεται \"Αργίες \". Μπορείτε να μεταβείτε στις Ρυθμίσεις -> Διαχείριση τύπων εκδηλώσεων,

View File

@ -228,6 +228,24 @@
<string name="sample_description_4">En la Placo</string>
<string name="sample_title_5">Coffee time</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">How can I remove the holidays imported via the \"Add holidays\" button?</string>
<string name="faq_1_text">Holidays created that way are inserted in a new event type called \"Holidays\". You can go in Settings -> Manage Event Types,

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">En la plaza</string>
<string name="sample_title_5">Hora del café</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">¿Cómo puedo eliminar las festivos importados a través del botón \"Añadir festivos\"?</string>
<string name="faq_1_text">Los eventos creados de esa manera tienen un tipo de evento llamado \"Días Festivos\". Puede seleccionarlos todos desde Ajustes->Gestionar tipos de eventos,

View File

@ -227,6 +227,23 @@
<string name="sample_title_4">Lunch with Mary</string>
<string name="sample_description_4">In the Plaza</string>
<string name="sample_title_5">Coffee time</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">How can I remove the holidays imported via the \"Add holidays\" button?</string>
<string name="faq_1_text">Holidays created that way are inserted in a new event type called \"Holidays\". You can go in Settings -> Manage Event Types,

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">Garraxi</string>
<string name="sample_title_5">Kafea hartu</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Nola kendu ditzaket \"Gehitu jaiegunak\" botoiarekin inportatutako jaiegunak?</string>
<string name="faq_1_text">Modu horretan sortutako jaiegunak \"Jaiegunak\" deituriko gertaera mota berrian sartzen dira. Joan Ezarpenak -> Kudeatu gertaera motak atalera,

View File

@ -231,6 +231,23 @@
<string name="sample_title_4">Lounas Marian kanssa</string>
<string name="sample_description_4">Kurvin grillillä</string>
<string name="sample_title_5">Kahvitauko</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Kuinka voin poistaa \"Lisää juhlapäivät\"-painikkeella tuotuja juhlapäiviä?</string>
<string name="faq_1_text">Näin luodut juhlapäivät lisätään uuteen tapahtumatyyppiin nimeltä \"Juhlapäivät\". Siirry kohtaan Asetukset -&gt; Hallitse tapahtumatyyppejä,
@ -297,4 +314,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
</resources>
</resources>

View File

@ -233,6 +233,23 @@
<string name="sample_title_4">Déjeuner avec Marie</string>
<string name="sample_description_4">Restaurant de la gare</string>
<string name="sample_title_5">RDV au café</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Comment supprimer les évènement importés avec le bouton "Ajouter des jours fériés" \?</string>
<string name="faq_1_text">Les jours fériés ajoutés de cette manière sont du type "Jours fériés". Vous pouvez aller dans "Paramètres" puis "Gestion des types d\'évènements", faire un appui long sur "Jours fériés" et les supprimer en appuyant sur la corbeille.</string>

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">Na praza</string>
<string name="sample_title_5">Hora do café</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Como podo eliminar os días festivos engadidos vía o botón \"Engadir días festivos\"?</string>
<string name="faq_1_text">Os días festivos creados dese xeito insértanse nun tipo de evento chamado \"Festivo\". Podes ir a Axustes -> Xestionar tipo de eventos,

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">In the Plaza</string>
<string name="sample_title_5">Coffee time</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">How can I remove the holidays imported via the \"Add holidays\" button?</string>
<string name="faq_1_text">Holidays created that way are inserted in a new event type called \"Holidays\". You can go in Settings -> Manage Event Types,

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">U Plaza</string>
<string name="sample_title_5">Vrijeme za kavu</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Kako mogu ukloniti praznike uvezene putem gumba \"Dodaj praznik\"?</string>
<string name="faq_1_text">Praznik koji je stvoren na taj način umetnut je u novu vrstu događaja pod nazivom \"Praznici\". Možete otići u Postavke -> Upravljanje vrstama događaja,

View File

@ -233,6 +233,23 @@
<string name="sample_title_4">Ebéd Máriával</string>
<string name="sample_description_4">A plázában</string>
<string name="sample_title_5">Kávészünet</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Hogyan távolíthatom el az „Ünnepnapok hozzáadása” gombbal importált ünnepnapokat\?</string>
<string name="faq_1_text">Az így létrehozott ünnepnapok az új „Ünnepnapok” eseménytípusba kerül beszúrásra. Menjen a Beállítások -&gt; Eseménytípusok kezelése lehetőséghez, nyomja meg hosszan az eseménytípust, majd törölje a kuka ikon választásával.</string>
@ -252,4 +269,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
</resources>
</resources>

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">Di Mall</string>
<string name="sample_title_5">Waktunya Ngopi</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Bagaimana cara menghapus hari libur yang diimpor via tombol \"Tambah hari libur\"?</string>
<string name="faq_1_text">Hari libur yang dibuat dengan cara tersebut disimpan di dalam kategori acara baru dengan nama \"Hari Libur\". Anda bisa mengunjungi Pengaturan -> Kelola Kategori Acara,

View File

@ -233,6 +233,23 @@
<string name="sample_title_4">Pranzo con Maria</string>
<string name="sample_description_4">Al ristorante Magione</string>
<string name="sample_title_5">Pausa caffè</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Come posso rimuovere le festività importate tramite il pulsante «Aggiungi festività»\?</string>
<string name="faq_1_text">Le festività create in questo modo sono inseriti in eventi di tipo «Festività». Andare in Impostazioni → Gestisci tipi di eventi, tenere premuto sul tipo desiderato ed eliminarlo selezionando il cestino.</string>
@ -295,4 +312,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
</resources>
</resources>

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">במלון</string>
<string name="sample_title_5">הפסקת קפה</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">How can I remove the holidays imported via the \"Add holidays\" button?</string>
<string name="faq_1_text">Holidays created that way are inserted in a new event type called \"Holidays\". You can go in Settings -> Manage Event Types,

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">In the Plaza</string>
<string name="sample_title_5">Coffee time</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">How can I remove the holidays imported via the \"Add holidays\" button?</string>
<string name="faq_1_text">Holidays created that way are inserted in a new event type called \"Holidays\". You can go in Settings -> Manage Event Types,

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">논현동 먹자골목</string>
<string name="sample_title_5">휴식시간</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">공휴일 추가 버튼을 통해 불러온 공휴일을 제거하기 위해선 어떻게 해야하나요?</string>
<string name="faq_1_text">공휴일 추가 버튼을 통해 만든 공휴일은 \"공휴일\"이라는 새 일정 유형에 삽입됩니다. 설정 -> 일정 유형 관리로 이동하여 해당 일정 유형을 길게누르고 휴지통을 선택하여 삭제할 수 있습니다.</string>

View File

@ -227,6 +227,23 @@
<string name="sample_title_4">Pietūs su Marija</string>
<string name="sample_description_4">Prekybos ir verslo centre</string>
<string name="sample_title_5">Kavos laikas</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Kaip galiu pašalinti šventines dienas, importuotas naudojant mygtuką „Pridėti šventines dienas“\?</string>
<string name="faq_1_text">Tuo būdu sukurtos šventinės dienos yra įterpiamos į naują įvykių tipą, pavadinimu „Šventinės dienos“. Pereikite į „Nustatymai“ -&gt; „Tvarkyti įvykių tipus“, paspauskite ir ilgiau palaikykite ant nurodyto įvykio tipo ir ištrinkite jį baksteldami ant šiukšlinės.</string>
@ -246,4 +263,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
</resources>
</resources>

View File

@ -227,6 +227,23 @@
<string name="sample_title_4">Vakariņas ar Dačuku</string>
<string name="sample_description_4">Dieva ausī</string>
<string name="sample_title_5">Laiks tējot</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Kā izdzēst svētku dienas, kas importētas, izmantojot pogu \“Pievienot svētkus\”?</string>
<string name="faq_1_text">Šādi izveidotas svētku dienas tiek piešķirts jauns notikumu tips - \“Svētku dienas\”. Dodieties uz sadaļu \"Iestatījumi \" -&gt; \"Notikumu tipu pārvaldīšana/", tad ilgs nospiediens uz āttiecīgā notikuma tipa un tā izdzēšana ar nospiedienu uz /"misenes/".</string>
@ -290,4 +307,4 @@
Nav izdevies uziet kādus tulkojumus? Tie atrodami
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
</resources>
</resources>

View File

@ -227,6 +227,23 @@
<string name="sample_title_4">Lunsj med Mari</string>
<string name="sample_description_4">På torget</string>
<string name="sample_title_5">Kaffepause</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Hvordan kan jeg fjerne off. fridager importert via meny - \"Legg til off. fridager\"?</string>
<string name="faq_1_text">Off. fridager opprettet på denne måten settes inn i en ny hendelsestype kalt \"Off. fridager\". Gå til Innstillinger -&gt; Behandle hendelsestyper,
@ -293,4 +310,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
</resources>
</resources>

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">Aan de kade</string>
<string name="sample_title_5">Koffietijd</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Hoe kan ik de feestdagen die zijn geïmporteerd via \"Feestdagen toevoegen\" weer verwijderen?</string>
<string name="faq_1_text">Deze feestdagen hebben het afspraaktype \"Feestdagen\". Om de feestdagen te verwijderen, ga naar Instellingen -> Afspraaktypes beheren,

View File

@ -233,6 +233,26 @@
<string name="sample_title_4">Kolacja z ukochaną</string>
<string name="sample_description_4">Przy blasku zachodzącego słońca</string>
<string name="sample_title_5">Czas na kawę</string>
<!-- List widget config -->
<string name="show_events_happening">Pokazuj wydarzenia odbywające się:</string>
<string name="within_the_next_one_year">W ciągu najbliższego roku</string>
<string name="today_only">Tylko dzisiaj</string>
<string name="within_the_next">W ciągu najbliższych…</string>
<plurals name="within_the_next_days">
<item quantity="one">W ciągu najbliższego %d dnia</item>
<item quantity="few">W ciągu najbliższych %d dni</item>
<item quantity="other">W ciągu najbliższych %d dni</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">W ciągu najbliższego %d tygodnia</item>
<item quantity="few">W ciągu najbliższych %d tygodni</item>
<item quantity="other">W ciągu najbliższych %d tygodni</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">W ciągu najbliższego %d miesiąca</item>
<item quantity="few">W ciągu najbliższych %d miesięcy</item>
<item quantity="other">W ciągu najbliższych %d miesięcy</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Jak mogę usunąć święta zaimportowane przez przycisk „Dodaj święta”?</string>
<string name="faq_1_text">Święta dodane w ten sposób są wprowadzane do nowego typu wydarzeń — „Święta”. Możesz wejść w Ustawienia -&gt; Zarządzaj typami wydarzeń, a następnie przyciśnij długo dany typ wydarzeń i usuń go, wybierając ikonę kosza.</string>
@ -295,4 +315,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
</resources>
</resources>

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">Ir ao mercado</string>
<string name="sample_title_5">Beber um café</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Como posso remover os feriados importados por meio do botão \ "Adicionar feriados \"?</string>
<string name="faq_1_text">Os feriados criados dessa maneira são inseridos em um novo tipo de evento chamado \ "Feriados \". Você pode ir em Configurações -> Gerenciar tipos de eventos, pressione e segure o tipo de evento fornecido e exclua-o selecionando a lixeira.</string>

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">Ir ao mercado</string>
<string name="sample_title_5">Beber um café</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Como posso remover os feriados importados por meio do botão \ "Adicionar feriados \"?</string>
<string name="faq_1_text">Os feriados criados dessa maneira são inseridos em um novo tipo de evento chamado \ "Feriados \". Você pode ir em Configurações -> Gerenciar tipos de eventos, pressione e segure o tipo de evento fornecido e exclua-o selecionando a lixeira.</string>

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">În Plaza</string>
<string name="sample_title_5">Timp pentru cafea</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Cum pot elimina sărbătorile importate prin intermediul butonului \"Adaugă sărbători\"?</string>
<string name="faq_1_text">Sărbătorile create îm felul acela sunt introduse într-un tip de event nou numit \"Sărbători\". Puteți să vă duceți în Setări -> Gestionează tipurile de evenimente,

View File

@ -227,6 +227,23 @@
<string name="sample_title_4">Ужин с Машей</string>
<string name="sample_description_4">В КЭТ на Караванной</string>
<string name="sample_title_5">Время для кофе</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Как удалить праздники, импортированные с помощью кнопки \"Добавить праздники\"?</string>
<string name="faq_1_text">Праздники, созданные таким образом, вставляются в новый тип события, называемый \"Праздники\". Можно перейти в \"Настройки\" -&gt; \"Управление типами событий\",
@ -293,4 +310,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
</resources>
</resources>

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">V supermarkete</string>
<string name="sample_title_5">Káva</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Ako môžem odstrániť sviatky pridané pomocou tlačidla \"Pridať sviatky\"?</string>
<string name="faq_1_text">Sviatky vytvorené daným spôsobom sú pridané do typu udalosti \"Sviatky\". Môžete teda ísť do Nastavenia -> Spravovať typy udalostí,

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">På stranden</string>
<string name="sample_title_5">Kaffedags</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">How can I remove the holidays imported via the \"Add holidays\" button?</string>
<string name="faq_1_text">Holidays created that way are inserted in a new event type called \"Holidays\". You can go in Settings -> Manage Event Types,

View File

@ -233,6 +233,23 @@
<string name="sample_title_4">Merve ile öğle yemeği</string>
<string name="sample_description_4">Şehir meydanında</string>
<string name="sample_title_5">Kahve zamanı</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">\"Tatil ekle\" düğmesiyle içe aktarılan tatilleri nasıl kaldırabilirim?</string>
<string name="faq_1_text">Tatiller, \"Tatiller\" olarak adlandırılan yeni bir etkinlik türüne eklenir. Ayarlar -&gt; Etkinlik Türlerini Yönet\'e gidip, belirlenen etkinlik türüne uzun basıp çöp kutusunu seçerek silebilirsiniz.</string>
@ -297,4 +314,4 @@
Haven't found some strings? There's more at
https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
-->
</resources>
</resources>

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">На Центральній площі</string>
<string name="sample_title_5">Час на каву</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">Як видалити свята, імпортовані з допомогою кнопки \"Додати свята\"?</string>
<string name="faq_1_text">Свята, створені таким чином, групуються в новий тип подій, що називається \"Свята\". Можна перейти в \"Налаштування\" -> \"Керувати типами подій\",

View File

@ -233,6 +233,23 @@
<string name="sample_title_4">跟玛丽共进午餐</string>
<string name="sample_description_4">在购物商场</string>
<string name="sample_title_5">休息时间</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">我如何移除用[添加节日]按钮所导入的节日?</string>
<string name="faq_1_text">以这方式建立的节日,会被加进一个叫做「节日」的新活动类型。
@ -299,4 +316,4 @@
        Haven't found some strings? There's more at
        https://github.com/SimpleMobileTools/Simple-Commons/tree/master/commons/src/main/res
    -->
</resources>
</resources>

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">在購物商場</string>
<string name="sample_title_5">休息時間</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">我如何移除用[添加節日]按鈕所匯入的節日?</string>
<string name="faq_1_text">以這方式建立的節日,會被加進一個叫做「節日」的新活動類型。

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">在購物商場</string>
<string name="sample_title_5">休息時間</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">我如何移除用「添加節日」按鈕所匯入的節日?</string>
<string name="faq_1_text">以這方式建立的節日,會被加進一個叫做「節日」的新活動類型。

View File

@ -246,6 +246,24 @@
<string name="sample_description_4">In the Plaza</string>
<string name="sample_title_5">Coffee time</string>
<!-- List widget config -->
<string name="show_events_happening">Show events happening:</string>
<string name="within_the_next_one_year">Within the next 1 year</string>
<string name="today_only">Today only</string>
<string name="within_the_next">Within the next…</string>
<plurals name="within_the_next_days">
<item quantity="one">Within the next %d day</item>
<item quantity="other">Within the next %d days</item>
</plurals>
<plurals name="within_the_next_weeks">
<item quantity="one">Within the next %d week</item>
<item quantity="other">Within the next %d weeks</item>
</plurals>
<plurals name="within_the_next_months">
<item quantity="one">Within the next %d month</item>
<item quantity="other">Within the next %d months</item>
</plurals>
<!-- FAQ -->
<string name="faq_1_title">How can I remove the holidays imported via the \"Add holidays\" button?</string>
<string name="faq_1_text">Holidays created that way are inserted in a new event type called \"Holidays\". You can go in Settings -> Manage Event Types,