update readme

误删了一些)))
main
Lappland333 5 months ago
parent 54a348ee4e
commit 96be992a99

@ -0,0 +1 @@
g5kcdnnuqvdn5c3xilcbc4gcdmB»é 7ï ¦Uî]<01>ˆclasses¹=T[ŒÁ rÄWA”§ˆsourcesñƒÂY±LÎéS<><>

@ -0,0 +1,307 @@
package org.gradle.accessors.dm;
import org.gradle.api.NonNullApi;
import org.gradle.api.artifacts.MinimalExternalModuleDependency;
import org.gradle.plugin.use.PluginDependency;
import org.gradle.api.artifacts.ExternalModuleDependencyBundle;
import org.gradle.api.artifacts.MutableVersionConstraint;
import org.gradle.api.provider.Provider;
import org.gradle.api.model.ObjectFactory;
import org.gradle.api.provider.ProviderFactory;
import org.gradle.api.internal.catalog.AbstractExternalDependencyFactory;
import org.gradle.api.internal.catalog.DefaultVersionCatalog;
import java.util.Map;
import org.gradle.api.internal.attributes.ImmutableAttributesFactory;
import org.gradle.api.internal.artifacts.dsl.CapabilityNotationParser;
import javax.inject.Inject;
/**
* A catalog of dependencies accessible via the {@code libs} extension.
*/
@NonNullApi
public class LibrariesForLibs extends AbstractExternalDependencyFactory {
private final AbstractExternalDependencyFactory owner = this;
private final EspressoLibraryAccessors laccForEspressoLibraryAccessors = new EspressoLibraryAccessors(owner);
private final ExtLibraryAccessors laccForExtLibraryAccessors = new ExtLibraryAccessors(owner);
private final NavigationLibraryAccessors laccForNavigationLibraryAccessors = new NavigationLibraryAccessors(owner);
private final VersionAccessors vaccForVersionAccessors = new VersionAccessors(providers, config);
private final BundleAccessors baccForBundleAccessors = new BundleAccessors(objects, providers, config, attributesFactory, capabilityNotationParser);
private final PluginAccessors paccForPluginAccessors = new PluginAccessors(providers, config);
@Inject
public LibrariesForLibs(DefaultVersionCatalog config, ProviderFactory providers, ObjectFactory objects, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) {
super(config, providers, objects, attributesFactory, capabilityNotationParser);
}
/**
* Dependency provider for <b>appcompat</b> with <b>androidx.appcompat:appcompat</b> coordinates and
* with version reference <b>appcompat</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*/
public Provider<MinimalExternalModuleDependency> getAppcompat() {
return create("appcompat");
}
/**
* Dependency provider for <b>constraintlayout</b> with <b>androidx.constraintlayout:constraintlayout</b> coordinates and
* with version reference <b>constraintlayout</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*/
public Provider<MinimalExternalModuleDependency> getConstraintlayout() {
return create("constraintlayout");
}
/**
* Dependency provider for <b>junit</b> with <b>junit:junit</b> coordinates and
* with version reference <b>junit</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*/
public Provider<MinimalExternalModuleDependency> getJunit() {
return create("junit");
}
/**
* Dependency provider for <b>material</b> with <b>com.google.android.material:material</b> coordinates and
* with version reference <b>material</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*/
public Provider<MinimalExternalModuleDependency> getMaterial() {
return create("material");
}
/**
* Group of libraries at <b>espresso</b>
*/
public EspressoLibraryAccessors getEspresso() {
return laccForEspressoLibraryAccessors;
}
/**
* Group of libraries at <b>ext</b>
*/
public ExtLibraryAccessors getExt() {
return laccForExtLibraryAccessors;
}
/**
* Group of libraries at <b>navigation</b>
*/
public NavigationLibraryAccessors getNavigation() {
return laccForNavigationLibraryAccessors;
}
/**
* Group of versions at <b>versions</b>
*/
public VersionAccessors getVersions() {
return vaccForVersionAccessors;
}
/**
* Group of bundles at <b>bundles</b>
*/
public BundleAccessors getBundles() {
return baccForBundleAccessors;
}
/**
* Group of plugins at <b>plugins</b>
*/
public PluginAccessors getPlugins() {
return paccForPluginAccessors;
}
public static class EspressoLibraryAccessors extends SubDependencyFactory {
public EspressoLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
/**
* Dependency provider for <b>core</b> with <b>androidx.test.espresso:espresso-core</b> coordinates and
* with version reference <b>espressoCore</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*/
public Provider<MinimalExternalModuleDependency> getCore() {
return create("espresso.core");
}
}
public static class ExtLibraryAccessors extends SubDependencyFactory {
public ExtLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
/**
* Dependency provider for <b>junit</b> with <b>androidx.test.ext:junit</b> coordinates and
* with version reference <b>junitVersion</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*/
public Provider<MinimalExternalModuleDependency> getJunit() {
return create("ext.junit");
}
}
public static class NavigationLibraryAccessors extends SubDependencyFactory {
public NavigationLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
/**
* Dependency provider for <b>fragment</b> with <b>androidx.navigation:navigation-fragment</b> coordinates and
* with version reference <b>navigationFragment</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*/
public Provider<MinimalExternalModuleDependency> getFragment() {
return create("navigation.fragment");
}
/**
* Dependency provider for <b>ui</b> with <b>androidx.navigation:navigation-ui</b> coordinates and
* with version reference <b>navigationUi</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*/
public Provider<MinimalExternalModuleDependency> getUi() {
return create("navigation.ui");
}
}
public static class VersionAccessors extends VersionFactory {
public VersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
/**
* Version alias <b>agp</b> with value <b>8.8.0</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getAgp() { return getVersion("agp"); }
/**
* Version alias <b>appcompat</b> with value <b>1.7.0</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getAppcompat() { return getVersion("appcompat"); }
/**
* Version alias <b>constraintlayout</b> with value <b>2.2.1</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getConstraintlayout() { return getVersion("constraintlayout"); }
/**
* Version alias <b>espressoCore</b> with value <b>3.6.1</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getEspressoCore() { return getVersion("espressoCore"); }
/**
* Version alias <b>junit</b> with value <b>4.13.2</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getJunit() { return getVersion("junit"); }
/**
* Version alias <b>junitVersion</b> with value <b>1.2.1</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getJunitVersion() { return getVersion("junitVersion"); }
/**
* Version alias <b>material</b> with value <b>1.12.0</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getMaterial() { return getVersion("material"); }
/**
* Version alias <b>navigationFragment</b> with value <b>2.8.9</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getNavigationFragment() { return getVersion("navigationFragment"); }
/**
* Version alias <b>navigationUi</b> with value <b>2.8.9</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getNavigationUi() { return getVersion("navigationUi"); }
}
public static class BundleAccessors extends BundleFactory {
public BundleAccessors(ObjectFactory objects, ProviderFactory providers, DefaultVersionCatalog config, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) { super(objects, providers, config, attributesFactory, capabilityNotationParser); }
}
public static class PluginAccessors extends PluginFactory {
private final AndroidPluginAccessors paccForAndroidPluginAccessors = new AndroidPluginAccessors(providers, config);
public PluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
/**
* Group of plugins at <b>plugins.android</b>
*/
public AndroidPluginAccessors getAndroid() {
return paccForAndroidPluginAccessors;
}
}
public static class AndroidPluginAccessors extends PluginFactory {
public AndroidPluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
/**
* Plugin provider for <b>android.application</b> with plugin id <b>com.android.application</b> and
* with version reference <b>agp</b>
* <p>
* This plugin was declared in catalog libs.versions.toml
*/
public Provider<PluginDependency> getApplication() { return createPlugin("android.application"); }
}
}

@ -0,0 +1,371 @@
package org.gradle.accessors.dm;
import org.gradle.api.NonNullApi;
import org.gradle.api.artifacts.MinimalExternalModuleDependency;
import org.gradle.plugin.use.PluginDependency;
import org.gradle.api.artifacts.ExternalModuleDependencyBundle;
import org.gradle.api.artifacts.MutableVersionConstraint;
import org.gradle.api.provider.Provider;
import org.gradle.api.model.ObjectFactory;
import org.gradle.api.provider.ProviderFactory;
import org.gradle.api.internal.catalog.AbstractExternalDependencyFactory;
import org.gradle.api.internal.catalog.DefaultVersionCatalog;
import java.util.Map;
import org.gradle.api.internal.attributes.ImmutableAttributesFactory;
import org.gradle.api.internal.artifacts.dsl.CapabilityNotationParser;
import javax.inject.Inject;
/**
* A catalog of dependencies accessible via the {@code libs} extension.
*/
@NonNullApi
public class LibrariesForLibsInPluginsBlock extends AbstractExternalDependencyFactory {
private final AbstractExternalDependencyFactory owner = this;
private final EspressoLibraryAccessors laccForEspressoLibraryAccessors = new EspressoLibraryAccessors(owner);
private final ExtLibraryAccessors laccForExtLibraryAccessors = new ExtLibraryAccessors(owner);
private final NavigationLibraryAccessors laccForNavigationLibraryAccessors = new NavigationLibraryAccessors(owner);
private final VersionAccessors vaccForVersionAccessors = new VersionAccessors(providers, config);
private final BundleAccessors baccForBundleAccessors = new BundleAccessors(objects, providers, config, attributesFactory, capabilityNotationParser);
private final PluginAccessors paccForPluginAccessors = new PluginAccessors(providers, config);
@Inject
public LibrariesForLibsInPluginsBlock(DefaultVersionCatalog config, ProviderFactory providers, ObjectFactory objects, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) {
super(config, providers, objects, attributesFactory, capabilityNotationParser);
}
/**
* Dependency provider for <b>appcompat</b> with <b>androidx.appcompat:appcompat</b> coordinates and
* with version reference <b>appcompat</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public Provider<MinimalExternalModuleDependency> getAppcompat() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return create("appcompat");
}
/**
* Dependency provider for <b>constraintlayout</b> with <b>androidx.constraintlayout:constraintlayout</b> coordinates and
* with version reference <b>constraintlayout</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public Provider<MinimalExternalModuleDependency> getConstraintlayout() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return create("constraintlayout");
}
/**
* Dependency provider for <b>junit</b> with <b>junit:junit</b> coordinates and
* with version reference <b>junit</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public Provider<MinimalExternalModuleDependency> getJunit() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return create("junit");
}
/**
* Dependency provider for <b>material</b> with <b>com.google.android.material:material</b> coordinates and
* with version reference <b>material</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public Provider<MinimalExternalModuleDependency> getMaterial() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return create("material");
}
/**
* Group of libraries at <b>espresso</b>
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public EspressoLibraryAccessors getEspresso() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return laccForEspressoLibraryAccessors;
}
/**
* Group of libraries at <b>ext</b>
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public ExtLibraryAccessors getExt() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return laccForExtLibraryAccessors;
}
/**
* Group of libraries at <b>navigation</b>
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public NavigationLibraryAccessors getNavigation() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return laccForNavigationLibraryAccessors;
}
/**
* Group of versions at <b>versions</b>
*/
public VersionAccessors getVersions() {
return vaccForVersionAccessors;
}
/**
* Group of bundles at <b>bundles</b>
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public BundleAccessors getBundles() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return baccForBundleAccessors;
}
/**
* Group of plugins at <b>plugins</b>
*/
public PluginAccessors getPlugins() {
return paccForPluginAccessors;
}
/**
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public static class EspressoLibraryAccessors extends SubDependencyFactory {
public EspressoLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
/**
* Dependency provider for <b>core</b> with <b>androidx.test.espresso:espresso-core</b> coordinates and
* with version reference <b>espressoCore</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public Provider<MinimalExternalModuleDependency> getCore() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return create("espresso.core");
}
}
/**
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public static class ExtLibraryAccessors extends SubDependencyFactory {
public ExtLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
/**
* Dependency provider for <b>junit</b> with <b>androidx.test.ext:junit</b> coordinates and
* with version reference <b>junitVersion</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public Provider<MinimalExternalModuleDependency> getJunit() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return create("ext.junit");
}
}
/**
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public static class NavigationLibraryAccessors extends SubDependencyFactory {
public NavigationLibraryAccessors(AbstractExternalDependencyFactory owner) { super(owner); }
/**
* Dependency provider for <b>fragment</b> with <b>androidx.navigation:navigation-fragment</b> coordinates and
* with version reference <b>navigationFragment</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public Provider<MinimalExternalModuleDependency> getFragment() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return create("navigation.fragment");
}
/**
* Dependency provider for <b>ui</b> with <b>androidx.navigation:navigation-ui</b> coordinates and
* with version reference <b>navigationUi</b>
* <p>
* This dependency was declared in catalog libs.versions.toml
*
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public Provider<MinimalExternalModuleDependency> getUi() {
org.gradle.internal.deprecation.DeprecationLogger.deprecateBehaviour("Accessing libraries or bundles from version catalogs in the plugins block.").withAdvice("Only use versions or plugins from catalogs in the plugins block.").willBeRemovedInGradle9().withUpgradeGuideSection(8, "kotlin_dsl_deprecated_catalogs_plugins_block").nagUser();
return create("navigation.ui");
}
}
public static class VersionAccessors extends VersionFactory {
public VersionAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
/**
* Version alias <b>agp</b> with value <b>8.8.0</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getAgp() { return getVersion("agp"); }
/**
* Version alias <b>appcompat</b> with value <b>1.7.0</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getAppcompat() { return getVersion("appcompat"); }
/**
* Version alias <b>constraintlayout</b> with value <b>2.2.1</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getConstraintlayout() { return getVersion("constraintlayout"); }
/**
* Version alias <b>espressoCore</b> with value <b>3.6.1</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getEspressoCore() { return getVersion("espressoCore"); }
/**
* Version alias <b>junit</b> with value <b>4.13.2</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getJunit() { return getVersion("junit"); }
/**
* Version alias <b>junitVersion</b> with value <b>1.2.1</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getJunitVersion() { return getVersion("junitVersion"); }
/**
* Version alias <b>material</b> with value <b>1.12.0</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getMaterial() { return getVersion("material"); }
/**
* Version alias <b>navigationFragment</b> with value <b>2.8.9</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getNavigationFragment() { return getVersion("navigationFragment"); }
/**
* Version alias <b>navigationUi</b> with value <b>2.8.9</b>
* <p>
* If the version is a rich version and cannot be represented as a
* single version string, an empty string is returned.
* <p>
* This version was declared in catalog libs.versions.toml
*/
public Provider<String> getNavigationUi() { return getVersion("navigationUi"); }
}
/**
* @deprecated Will be removed in Gradle 9.0.
*/
@Deprecated
public static class BundleAccessors extends BundleFactory {
public BundleAccessors(ObjectFactory objects, ProviderFactory providers, DefaultVersionCatalog config, ImmutableAttributesFactory attributesFactory, CapabilityNotationParser capabilityNotationParser) { super(objects, providers, config, attributesFactory, capabilityNotationParser); }
}
public static class PluginAccessors extends PluginFactory {
private final AndroidPluginAccessors paccForAndroidPluginAccessors = new AndroidPluginAccessors(providers, config);
public PluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
/**
* Group of plugins at <b>plugins.android</b>
*/
public AndroidPluginAccessors getAndroid() {
return paccForAndroidPluginAccessors;
}
}
public static class AndroidPluginAccessors extends PluginFactory {
public AndroidPluginAccessors(ProviderFactory providers, DefaultVersionCatalog config) { super(providers, config); }
/**
* Plugin provider for <b>android.application</b> with plugin id <b>com.android.application</b> and
* with version reference <b>agp</b>
* <p>
* This plugin was declared in catalog libs.versions.toml
*/
public Provider<PluginDependency> getApplication() { return createPlugin("android.application"); }
}
}

@ -0,0 +1,2 @@
#Thu May 08 14:03:09 CST 2025
gradle.version=8.11.1

@ -0,0 +1,2 @@
#Thu May 08 13:30:50 CST 2025
java.home=C\:\\Program Files\\Android\\Android Studio\\jbr

Binary file not shown.

@ -0,0 +1,136 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="AutoImportSettings">
<option name="autoReloadType" value="NONE" />
</component>
<component name="ChangeListManager">
<list default="true" id="d7e56712-22f4-40bc-a0f3-1e5675f6adad" name="Changes" comment="">
<change beforePath="$PROJECT_DIR$/.idea/gradle.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/gradle.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/misc.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/misc.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/vcs.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/vcs.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/cxy-readme.md" beforeDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
<option name="HIGHLIGHT_NON_ACTIVE_CHANGELIST" value="false" />
<option name="LAST_RESOLUTION" value="IGNORE" />
</component>
<component name="ClangdSettings">
<option name="formatViaClangd" value="false" />
</component>
<component name="ExecutionTargetManager" SELECTED_TARGET="device_and_snapshot_combo_box_target[DeviceId(pluginId=LocalEmulator, isTemplate=false, identifier=path=C:\Users\20650\.android\avd\Pixel_8_Pro_API_36.avd)]" />
<component name="ExternalProjectsData">
<projectState path="$PROJECT_DIR$">
<ProjectState />
</projectState>
</component>
<component name="Git.Settings">
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
</component>
<component name="ProjectColorInfo">{
&quot;associatedIndex&quot;: 3
}</component>
<component name="ProjectId" id="2wnfRYUOet9F7DVVCX2xWzTXJGs" />
<component name="ProjectViewState">
<option name="hideEmptyMiddlePackages" value="true" />
<option name="showLibraryContents" value="true" />
</component>
<component name="PropertiesComponent"><![CDATA[{
"keyToString": {
"Android App.app.executor": "Run",
"RunOnceActivity.ShowReadmeOnStart": "true",
"RunOnceActivity.cidr.known.project.marker": "true",
"RunOnceActivity.readMode.enableVisualFormatting": "true",
"cf.first.check.clang-format": "false",
"cidr.known.project.marker": "true",
"git-widget-placeholder": "cxy__branch",
"ignore.virus.scanning.warn.message": "true",
"kotlin-language-version-configured": "true",
"last_opened_file_path": "E:/temp"
}
}]]></component>
<component name="RunManager">
<configuration name="app" type="AndroidRunConfigurationType" factoryName="Android App" activateToolWindowBeforeRun="false">
<module name="My_Application.app" />
<option name="ANDROID_RUN_CONFIGURATION_SCHEMA_VERSION" value="1" />
<option name="DEPLOY" value="true" />
<option name="DEPLOY_APK_FROM_BUNDLE" value="false" />
<option name="DEPLOY_AS_INSTANT" value="false" />
<option name="ARTIFACT_NAME" value="" />
<option name="PM_INSTALL_OPTIONS" value="" />
<option name="ALL_USERS" value="false" />
<option name="ALWAYS_INSTALL_WITH_PM" value="false" />
<option name="ALLOW_ASSUME_VERIFIED" value="false" />
<option name="CLEAR_APP_STORAGE" value="false" />
<option name="DYNAMIC_FEATURES_DISABLED_LIST" value="" />
<option name="ACTIVITY_EXTRA_FLAGS" value="" />
<option name="MODE" value="default_activity" />
<option name="RESTORE_ENABLED" value="false" />
<option name="RESTORE_FILE" value="" />
<option name="CLEAR_LOGCAT" value="false" />
<option name="SHOW_LOGCAT_AUTOMATICALLY" value="false" />
<option name="TARGET_SELECTION_MODE" value="DEVICE_AND_SNAPSHOT_COMBO_BOX" />
<option name="SELECTED_CLOUD_MATRIX_CONFIGURATION_ID" value="-1" />
<option name="SELECTED_CLOUD_MATRIX_PROJECT_ID" value="" />
<option name="DEBUGGER_TYPE" value="Auto" />
<Auto>
<option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
<option name="SHOW_STATIC_VARS" value="true" />
<option name="WORKING_DIR" value="" />
<option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
<option name="SHOW_OPTIMIZED_WARNING" value="true" />
<option name="ATTACH_ON_WAIT_FOR_DEBUGGER" value="false" />
<option name="DEBUG_SANDBOX_SDK" value="false" />
</Auto>
<Hybrid>
<option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
<option name="SHOW_STATIC_VARS" value="true" />
<option name="WORKING_DIR" value="" />
<option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
<option name="SHOW_OPTIMIZED_WARNING" value="true" />
<option name="ATTACH_ON_WAIT_FOR_DEBUGGER" value="false" />
<option name="DEBUG_SANDBOX_SDK" value="false" />
</Hybrid>
<Java>
<option name="ATTACH_ON_WAIT_FOR_DEBUGGER" value="false" />
<option name="DEBUG_SANDBOX_SDK" value="false" />
</Java>
<Native>
<option name="USE_JAVA_AWARE_DEBUGGER" value="false" />
<option name="SHOW_STATIC_VARS" value="true" />
<option name="WORKING_DIR" value="" />
<option name="TARGET_LOGGING_CHANNELS" value="lldb process:gdb-remote packets" />
<option name="SHOW_OPTIMIZED_WARNING" value="true" />
<option name="ATTACH_ON_WAIT_FOR_DEBUGGER" value="false" />
<option name="DEBUG_SANDBOX_SDK" value="false" />
</Native>
<Profilers>
<option name="ADVANCED_PROFILING_ENABLED" value="false" />
<option name="STARTUP_PROFILING_ENABLED" value="false" />
<option name="STARTUP_CPU_PROFILING_ENABLED" value="false" />
<option name="STARTUP_CPU_PROFILING_CONFIGURATION_NAME" value="Java/Kotlin Method Sample (legacy)" />
<option name="STARTUP_NATIVE_MEMORY_PROFILING_ENABLED" value="false" />
<option name="NATIVE_MEMORY_SAMPLE_RATE_BYTES" value="2048" />
</Profilers>
<option name="DEEP_LINK" value="" />
<option name="ACTIVITY" value="" />
<option name="ACTIVITY_CLASS" value="" />
<option name="SEARCH_ACTIVITY_IN_GLOBAL_SCOPE" value="false" />
<option name="SKIP_ACTIVITY_VALIDATION" value="false" />
<method v="2">
<option name="Android.Gradle.BeforeRunTask" enabled="true" />
</method>
</configuration>
</component>
<component name="SpellCheckerSettings" RuntimeDictionaries="0" Folders="0" CustomDictionaries="0" DefaultDictionary="application-level" UseSingleDictionary="true" transferred="true" />
<component name="TaskManager">
<task active="true" id="Default" summary="Default task">
<changelist id="d7e56712-22f4-40bc-a0f3-1e5675f6adad" name="Changes" comment="" />
<created>1746682250573</created>
<option name="number" value="Default" />
<option name="presentableId" value="Default" />
<updated>1746682250573</updated>
</task>
<servers />
</component>
</project>

@ -15,13 +15,27 @@
### 三、项目功能模块概述
便签操作
文件夹
菜单
闹钟提醒
打电话
发短信
超链接
### 四、文档
#### 模型模板
gradle8.9.0
- 软件设计需求
- 软件需求模型

@ -0,0 +1,80 @@
// Generated by view binder compiler. Do not edit!
package net.micodes.myapplication.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.coordinatorlayout.widget.CoordinatorLayout;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import com.google.android.material.appbar.MaterialToolbar;
import com.google.android.material.floatingactionbutton.FloatingActionButton;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
import net.micodes.myapplication.R;
public final class ActivityMainBinding implements ViewBinding {
@NonNull
private final CoordinatorLayout rootView;
@NonNull
public final FloatingActionButton fab;
@NonNull
public final MaterialToolbar toolbar;
private ActivityMainBinding(@NonNull CoordinatorLayout rootView,
@NonNull FloatingActionButton fab, @NonNull MaterialToolbar toolbar) {
this.rootView = rootView;
this.fab = fab;
this.toolbar = toolbar;
}
@Override
@NonNull
public CoordinatorLayout getRoot() {
return rootView;
}
@NonNull
public static ActivityMainBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static ActivityMainBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.activity_main, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static ActivityMainBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.fab;
FloatingActionButton fab = ViewBindings.findChildViewById(rootView, id);
if (fab == null) {
break missingId;
}
id = R.id.toolbar;
MaterialToolbar toolbar = ViewBindings.findChildViewById(rootView, id);
if (toolbar == null) {
break missingId;
}
return new ActivityMainBinding((CoordinatorLayout) rootView, fab, toolbar);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}

@ -0,0 +1,52 @@
// Generated by view binder compiler. Do not edit!
package net.micodes.myapplication.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.constraintlayout.widget.ConstraintLayout;
import androidx.viewbinding.ViewBinding;
import java.lang.NullPointerException;
import java.lang.Override;
import net.micodes.myapplication.R;
public final class ContentMainBinding implements ViewBinding {
@NonNull
private final ConstraintLayout rootView;
private ContentMainBinding(@NonNull ConstraintLayout rootView) {
this.rootView = rootView;
}
@Override
@NonNull
public ConstraintLayout getRoot() {
return rootView;
}
@NonNull
public static ContentMainBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static ContentMainBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.content_main, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static ContentMainBinding bind(@NonNull View rootView) {
if (rootView == null) {
throw new NullPointerException("rootView");
}
return new ContentMainBinding((ConstraintLayout) rootView);
}
}

@ -0,0 +1,80 @@
// Generated by view binder compiler. Do not edit!
package net.micodes.myapplication.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.core.widget.NestedScrollView;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
import net.micodes.myapplication.R;
public final class FragmentFirstBinding implements ViewBinding {
@NonNull
private final NestedScrollView rootView;
@NonNull
public final Button buttonFirst;
@NonNull
public final TextView textviewFirst;
private FragmentFirstBinding(@NonNull NestedScrollView rootView, @NonNull Button buttonFirst,
@NonNull TextView textviewFirst) {
this.rootView = rootView;
this.buttonFirst = buttonFirst;
this.textviewFirst = textviewFirst;
}
@Override
@NonNull
public NestedScrollView getRoot() {
return rootView;
}
@NonNull
public static FragmentFirstBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static FragmentFirstBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.fragment_first, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static FragmentFirstBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.button_first;
Button buttonFirst = ViewBindings.findChildViewById(rootView, id);
if (buttonFirst == null) {
break missingId;
}
id = R.id.textview_first;
TextView textviewFirst = ViewBindings.findChildViewById(rootView, id);
if (textviewFirst == null) {
break missingId;
}
return new FragmentFirstBinding((NestedScrollView) rootView, buttonFirst, textviewFirst);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}

@ -0,0 +1,80 @@
// Generated by view binder compiler. Do not edit!
package net.micodes.myapplication.databinding;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.Button;
import android.widget.TextView;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.core.widget.NestedScrollView;
import androidx.viewbinding.ViewBinding;
import androidx.viewbinding.ViewBindings;
import java.lang.NullPointerException;
import java.lang.Override;
import java.lang.String;
import net.micodes.myapplication.R;
public final class FragmentSecondBinding implements ViewBinding {
@NonNull
private final NestedScrollView rootView;
@NonNull
public final Button buttonSecond;
@NonNull
public final TextView textviewSecond;
private FragmentSecondBinding(@NonNull NestedScrollView rootView, @NonNull Button buttonSecond,
@NonNull TextView textviewSecond) {
this.rootView = rootView;
this.buttonSecond = buttonSecond;
this.textviewSecond = textviewSecond;
}
@Override
@NonNull
public NestedScrollView getRoot() {
return rootView;
}
@NonNull
public static FragmentSecondBinding inflate(@NonNull LayoutInflater inflater) {
return inflate(inflater, null, false);
}
@NonNull
public static FragmentSecondBinding inflate(@NonNull LayoutInflater inflater,
@Nullable ViewGroup parent, boolean attachToParent) {
View root = inflater.inflate(R.layout.fragment_second, parent, false);
if (attachToParent) {
parent.addView(root);
}
return bind(root);
}
@NonNull
public static FragmentSecondBinding bind(@NonNull View rootView) {
// The body of this method is generated in a way you would not otherwise write.
// This is done to optimize the compiled bytecode for size and performance.
int id;
missingId: {
id = R.id.button_second;
Button buttonSecond = ViewBindings.findChildViewById(rootView, id);
if (buttonSecond == null) {
break missingId;
}
id = R.id.textview_second;
TextView textviewSecond = ViewBindings.findChildViewById(rootView, id);
if (textviewSecond == null) {
break missingId;
}
return new FragmentSecondBinding((NestedScrollView) rootView, buttonSecond, textviewSecond);
}
String missingId = rootView.getResources().getResourceName(id);
throw new NullPointerException("Missing required view with ID: ".concat(missingId));
}
}

@ -0,0 +1,21 @@
{
"version": 3,
"artifactType": {
"type": "APK",
"kind": "Directory"
},
"applicationId": "net.micodes.myapplication",
"variantName": "debug",
"elements": [
{
"type": "SINGLE",
"filters": [],
"attributes": [],
"versionCode": 1,
"versionName": "1.0",
"outputFile": "app-debug.apk"
}
],
"elementType": "File",
"minSdkVersionForDexing": 30
}

@ -0,0 +1,2 @@
#- File Locator -
listingFile=../../../apk/debug/output-metadata.json

@ -0,0 +1,2 @@
appMetadataVersion=1.1
androidGradlePluginVersion=8.9.0

@ -0,0 +1,10 @@
{
"version": 3,
"artifactType": {
"type": "COMPATIBLE_SCREEN_MANIFEST",
"kind": "Directory"
},
"applicationId": "net.micode.notes",
"variantName": "debug",
"elements": []
}

@ -0,0 +1,120 @@
#Thu May 08 14:07:40 CST 2025
net.micode.notes.app-main-33\:/color/primary_text_dark.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\color_primary_text_dark.xml.flat
net.micode.notes.app-main-33\:/color/secondary_text_dark.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\color_secondary_text_dark.xml.flat
net.micode.notes.app-main-33\:/drawable-hdpi/bg_btn_set_color.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_bg_btn_set_color.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/bg_color_btn_mask.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_bg_color_btn_mask.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/call_record.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_call_record.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/clock.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_clock.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/delete.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_delete.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/dropdown_icon.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_dropdown_icon.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/edit_blue.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_edit_blue.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/edit_green.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_edit_green.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/edit_red.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_edit_red.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/edit_title_blue.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_edit_title_blue.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/edit_title_green.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_edit_title_green.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/edit_title_red.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_edit_title_red.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/edit_title_white.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_edit_title_white.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/edit_title_yellow.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_edit_title_yellow.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/edit_white.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_edit_white.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/edit_yellow.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_edit_yellow.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/font_large.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_font_large.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/font_normal.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_font_normal.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/font_size_selector_bg.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_font_size_selector_bg.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/font_small.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_font_small.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/font_super.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_font_super.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/icon_app.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_icon_app.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_background.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_background.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_blue_down.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_blue_down.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_blue_middle.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_blue_middle.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_blue_single.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_blue_single.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_blue_up.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_blue_up.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_folder.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_folder.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_footer_bg.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_footer_bg.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_green_down.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_green_down.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_green_middle.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_green_middle.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_green_single.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_green_single.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_green_up.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_green_up.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_red_down.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_red_down.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_red_middle.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_red_middle.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_red_single.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_red_single.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_red_up.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_red_up.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_white_down.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_white_down.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_white_middle.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_white_middle.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_white_single.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_white_single.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_white_up.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_white_up.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_yellow_down.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_yellow_down.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_yellow_middle.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_yellow_middle.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_yellow_single.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_yellow_single.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/list_yellow_up.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_list_yellow_up.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/menu_delete.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_menu_delete.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/menu_move.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_menu_move.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/new_note_normal.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_new_note_normal.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/new_note_pressed.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_new_note_pressed.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/note_edit_color_selector_panel.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_note_edit_color_selector_panel.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/notification.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_notification.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/search_result.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_search_result.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/selected.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_selected.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/title_alert.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_title_alert.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/title_bar_bg.9.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_title_bar_bg.9.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/widget_2x_blue.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_widget_2x_blue.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/widget_2x_green.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_widget_2x_green.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/widget_2x_red.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_widget_2x_red.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/widget_2x_white.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_widget_2x_white.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/widget_2x_yellow.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_widget_2x_yellow.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/widget_4x_blue.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_widget_4x_blue.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/widget_4x_green.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_widget_4x_green.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/widget_4x_red.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_widget_4x_red.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/widget_4x_white.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_widget_4x_white.png.flat
net.micode.notes.app-main-33\:/drawable-hdpi/widget_4x_yellow.png=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable-hdpi_widget_4x_yellow.png.flat
net.micode.notes.app-main-33\:/drawable/ic_launcher_background.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable_ic_launcher_background.xml.flat
net.micode.notes.app-main-33\:/drawable/ic_launcher_foreground.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable_ic_launcher_foreground.xml.flat
net.micode.notes.app-main-33\:/drawable/new_note.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\drawable_new_note.xml.flat
net.micode.notes.app-main-33\:/layout/account_dialog_title.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_account_dialog_title.xml.flat
net.micode.notes.app-main-33\:/layout/activity_main.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_activity_main.xml.flat
net.micode.notes.app-main-33\:/layout/add_account_text.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_add_account_text.xml.flat
net.micode.notes.app-main-33\:/layout/content_main.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_content_main.xml.flat
net.micode.notes.app-main-33\:/layout/datetime_picker.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_datetime_picker.xml.flat
net.micode.notes.app-main-33\:/layout/dialog_edit_text.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_dialog_edit_text.xml.flat
net.micode.notes.app-main-33\:/layout/folder_list_item.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_folder_list_item.xml.flat
net.micode.notes.app-main-33\:/layout/fragment_first.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_fragment_first.xml.flat
net.micode.notes.app-main-33\:/layout/fragment_second.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_fragment_second.xml.flat
net.micode.notes.app-main-33\:/layout/note_edit.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_note_edit.xml.flat
net.micode.notes.app-main-33\:/layout/note_edit_list_item.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_note_edit_list_item.xml.flat
net.micode.notes.app-main-33\:/layout/note_item.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_note_item.xml.flat
net.micode.notes.app-main-33\:/layout/note_list.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_note_list.xml.flat
net.micode.notes.app-main-33\:/layout/note_list_dropdown_menu.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_note_list_dropdown_menu.xml.flat
net.micode.notes.app-main-33\:/layout/note_list_footer.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_note_list_footer.xml.flat
net.micode.notes.app-main-33\:/layout/settings_header.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_settings_header.xml.flat
net.micode.notes.app-main-33\:/layout/widget_2x.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_widget_2x.xml.flat
net.micode.notes.app-main-33\:/layout/widget_4x.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\layout_widget_4x.xml.flat
net.micode.notes.app-main-33\:/menu/call_note_edit.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\menu_call_note_edit.xml.flat
net.micode.notes.app-main-33\:/menu/call_record_folder.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\menu_call_record_folder.xml.flat
net.micode.notes.app-main-33\:/menu/menu_main.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\menu_menu_main.xml.flat
net.micode.notes.app-main-33\:/menu/note_edit.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\menu_note_edit.xml.flat
net.micode.notes.app-main-33\:/menu/note_list.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\menu_note_list.xml.flat
net.micode.notes.app-main-33\:/menu/note_list_dropdown.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\menu_note_list_dropdown.xml.flat
net.micode.notes.app-main-33\:/menu/note_list_options.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\menu_note_list_options.xml.flat
net.micode.notes.app-main-33\:/menu/sub_folder.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\menu_sub_folder.xml.flat
net.micode.notes.app-main-33\:/mipmap-anydpi-v26/ic_launcher.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-anydpi-v26_ic_launcher.xml.flat
net.micode.notes.app-main-33\:/mipmap-anydpi-v26/ic_launcher_round.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-anydpi-v26_ic_launcher_round.xml.flat
net.micode.notes.app-main-33\:/mipmap-anydpi/ic_launcher.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-anydpi_ic_launcher.xml.flat
net.micode.notes.app-main-33\:/mipmap-anydpi/ic_launcher_round.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-anydpi_ic_launcher_round.xml.flat
net.micode.notes.app-main-33\:/mipmap-hdpi/ic_launcher.webp=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-hdpi_ic_launcher.webp.flat
net.micode.notes.app-main-33\:/mipmap-hdpi/ic_launcher_round.webp=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-hdpi_ic_launcher_round.webp.flat
net.micode.notes.app-main-33\:/mipmap-mdpi/ic_launcher.webp=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-mdpi_ic_launcher.webp.flat
net.micode.notes.app-main-33\:/mipmap-mdpi/ic_launcher_round.webp=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-mdpi_ic_launcher_round.webp.flat
net.micode.notes.app-main-33\:/mipmap-xhdpi/ic_launcher.webp=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-xhdpi_ic_launcher.webp.flat
net.micode.notes.app-main-33\:/mipmap-xhdpi/ic_launcher_round.webp=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-xhdpi_ic_launcher_round.webp.flat
net.micode.notes.app-main-33\:/mipmap-xxhdpi/ic_launcher.webp=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-xxhdpi_ic_launcher.webp.flat
net.micode.notes.app-main-33\:/mipmap-xxhdpi/ic_launcher_round.webp=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-xxhdpi_ic_launcher_round.webp.flat
net.micode.notes.app-main-33\:/mipmap-xxxhdpi/ic_launcher.webp=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-xxxhdpi_ic_launcher.webp.flat
net.micode.notes.app-main-33\:/mipmap-xxxhdpi/ic_launcher_round.webp=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\mipmap-xxxhdpi_ic_launcher_round.webp.flat
net.micode.notes.app-main-33\:/navigation/nav_graph.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\navigation_nav_graph.xml.flat
net.micode.notes.app-main-33\:/raw-zh-rCN/introduction=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\raw-zh-rCN_introduction.flat
net.micode.notes.app-main-33\:/raw/introduction=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\raw_introduction.flat
net.micode.notes.app-main-33\:/xml/backup_rules.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\xml_backup_rules.xml.flat
net.micode.notes.app-main-33\:/xml/data_extraction_rules.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\xml_data_extraction_rules.xml.flat
net.micode.notes.app-main-33\:/xml/preferences.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\xml_preferences.xml.flat
net.micode.notes.app-main-33\:/xml/searchable.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\xml_searchable.xml.flat
net.micode.notes.app-main-33\:/xml/widget_2x_info.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\xml_widget_2x_info.xml.flat
net.micode.notes.app-main-33\:/xml/widget_4x_info.xml=E\:\\local_software_develop\\Notes_master_demo\\app\\build\\intermediates\\merged_res\\debug\\mergeDebugResources\\xml_widget_4x_info.xml.flat

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d nuwe kennisgewing</item>
<item quantity="other">%d nuwe kennisgewings</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Gaan na tuisskerm"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Gaan op"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Nog opsies"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Klaar"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Sien alles"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Kies \'n program"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"AF"</string>
<string msgid="884982626291842264" name="abc_capital_on">"AAN"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Funksie+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"spasiebalk"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Simbool+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Kieslys+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Soek …"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Vee navraag uit"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Soektognavraag"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Soek"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Dien navraag in"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Stemsoektog"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Deel met"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Deel met <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Vou in"</string>
<string name="bottomsheet_action_collapse">Vou die onderste blad in</string>
<string name="bottomsheet_action_expand">Vou die onderste blad uit</string>
<string name="bottomsheet_action_expand_halfway">Vou halfpad uit</string>
<string name="bottomsheet_drag_handle_clicked">Het op sleephandvatsel gedubbeltik</string>
<string name="bottomsheet_drag_handle_content_description">Sleephandvatsel</string>
<string name="character_counter_content_description">Karakters ingevoer: %1$d van %2$d</string>
<string name="character_counter_overflowed_content_description">Karakterlimiet oorskry %1$d van %2$d</string>
<string name="clear_text_end_icon_content_description">Vee teks uit</string>
<string name="error_icon_content_description">Fout</string>
<string name="exposed_dropdown_menu_content_description">Wys aftrekkieslys</string>
<string name="icon_content_description">Dialoogikoon</string>
<string name="item_view_role_description">Oortjie</string>
<string name="material_clock_toggle_content_description">Kies vm. of nm.</string>
<string name="material_hour_24h_suffix">%1$s uur</string>
<string name="material_hour_selection">Kies uur</string>
<string name="material_hour_suffix">%1$s-uur</string>
<string name="material_minute_selection">Kies minute</string>
<string name="material_minute_suffix">%1$s minute</string>
<string name="material_timepicker_am">VM.</string>
<string name="material_timepicker_clock_mode_description">Skakel oor na horlosiemodus vir die tydinvoer.</string>
<string name="material_timepicker_hour">Uur</string>
<string name="material_timepicker_minute">Minuut</string>
<string name="material_timepicker_pm">NM.</string>
<string name="material_timepicker_select_time">Kies tyd</string>
<string name="material_timepicker_text_input_mode_description">Skakel oor na teksmodus vir die tydinvoer.</string>
<string name="mtrl_badge_numberless_content_description">Nuwe kennisgewing</string>
<string name="mtrl_chip_close_icon_content_description">Verwyder %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">Meer as %1$d nuwe kennisgewings</string>
<string name="mtrl_picker_a11y_next_month">Verander na volgende maand</string>
<string name="mtrl_picker_a11y_prev_month">Verander na vorige maand</string>
<string name="mtrl_picker_announce_current_range_selection">Keuse van begindatum: %1$s Keuse van einddatum: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Huidige keuse: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">geen</string>
<string name="mtrl_picker_cancel">Kanselleer</string>
<string name="mtrl_picker_confirm">OK</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Kies datum</string>
<string name="mtrl_picker_date_header_unselected">Gekose datum</string>
<string name="mtrl_picker_day_of_week_column_header">Kolom van dae: %1$s</string>
<string name="mtrl_picker_end_date_description">Einddatum %1$s</string>
<string name="mtrl_picker_invalid_format">Ongeldige formaat.</string>
<string name="mtrl_picker_invalid_format_example">Voorbeeld: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Gebruik: %1$s</string>
<string name="mtrl_picker_invalid_range">Ongeldige reeks.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Gaan na huidige jaar %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">Gaan na jaar %1$d</string>
<string name="mtrl_picker_out_of_range">Buite reeks: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Begindatum %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s Einddatum</string>
<string name="mtrl_picker_range_header_selected">%1$s-%2$s</string>
<string name="mtrl_picker_range_header_title">Kies datumreeks</string>
<string name="mtrl_picker_range_header_unselected">Begindatum Einddatum</string>
<string name="mtrl_picker_save">Stoor</string>
<string name="mtrl_picker_start_date_description">Begindatum %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Datum</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Einddatum</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Begindatum</string>
<string name="mtrl_picker_text_input_day_abbr">d</string>
<string name="mtrl_picker_text_input_month_abbr">m</string>
<string name="mtrl_picker_text_input_year_abbr">j</string>
<string name="mtrl_picker_today_description">Vandag %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Skakel oor na kalenderinvoermodus</string>
<string name="mtrl_picker_toggle_to_day_selection">Tik om na kalenderaansig oor te skakel</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Skakel oor na teksinvoermodus</string>
<string name="mtrl_picker_toggle_to_year_selection">Tik om na jaaraansig oor te skakel</string>
<string name="mtrl_timepicker_cancel">Kanselleer</string>
<string name="mtrl_timepicker_confirm">OK</string>
<string name="password_toggle_content_description">Wys wagwoord</string>
<string msgid="6264217191555673260" name="search_menu_title">"Soek"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d አዲስ ማሳወቂያዎች</item>
<item quantity="other">%d አዲስ ማሳወቂያዎች</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"መነሻ ዳስስ"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"ወደ ላይ ያስሱ"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"ተጨማሪ አማራጮች"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"ተከናውኗል"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"ሁሉንም ይመልከቱ"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"አንድ መተግበሪያ ይምረጡ"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"አጥፋ"</string>
<string msgid="884982626291842264" name="abc_capital_on">"አብራ"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"ሰርዝ"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"ክፍተት"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"ይፈልጉ…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"መጠይቅ አጽዳ"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"የፍለጋ መጠይቅ"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"ፍለጋ"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"መጠይቅ አስገባ"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"የድምጽ ፍለጋ"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"አጋራ በ"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"ለ<ns1:g id="APPLICATION_NAME">%s</ns1:g> አጋራ"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"ሰብስብ"</string>
<string name="bottomsheet_action_collapse">የግርጌ ሉሁን ይሰብስቡ</string>
<string name="bottomsheet_action_expand">የግርጌ ሉሁን ይዘርጉ</string>
<string name="bottomsheet_action_expand_halfway">ግማሽ መንገድ ዘርጋ</string>
<string name="bottomsheet_drag_handle_clicked">መያዣ ይጎትቱ ሁለቴ መታ ተደርጓል</string>
<string name="bottomsheet_drag_handle_content_description">መያዣ ይጎትቱ</string>
<string name="character_counter_content_description">ቁምፊዎች %1$d ከ%2$d ገብተዋል</string>
<string name="character_counter_overflowed_content_description">የቁምፊ ገደብ %1$d ከ%2$d አልፏል</string>
<string name="clear_text_end_icon_content_description">ጽሑፍን አጽዳ</string>
<string name="error_icon_content_description">ስህተት</string>
<string name="exposed_dropdown_menu_content_description">ተቆልቋይ ምናሌን አሳይ</string>
<string name="icon_content_description">የንግግር አዶ</string>
<string name="item_view_role_description">ትር</string>
<string name="material_clock_toggle_content_description">AM ወይም PM ይምረጡ</string>
<string name="material_hour_24h_suffix">%1$s ሰዓታት</string>
<string name="material_hour_selection">ሰዓትን ይምረጡ</string>
<string name="material_hour_suffix">%1$s ሰዓት</string>
<string name="material_minute_selection">ደቂቃዎችን ይምረጡ</string>
<string name="material_minute_suffix">%1$s ደቂቃዎች</string>
<string name="material_timepicker_am">ጥዋት</string>
<string name="material_timepicker_clock_mode_description">ለጊዜ ግቤቱ ወደ የሰዓት ሁነታ ቀይር።</string>
<string name="material_timepicker_hour">ሰዓት</string>
<string name="material_timepicker_minute">ደቂቃ</string>
<string name="material_timepicker_pm">ከሰዓት</string>
<string name="material_timepicker_select_time">ጊዜ ምረጥ</string>
<string name="material_timepicker_text_input_mode_description">ለጊዜ ግቤቱ ወደ የጽሑፍ ግቤት ሁነታ ቀይር።</string>
<string name="mtrl_badge_numberless_content_description">አዲስ ማሳወቂያ</string>
<string name="mtrl_chip_close_icon_content_description">%1$sን አስወግድ</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">ከ%1$d በላይ አዲስ ማሳወቂያዎች</string>
<string name="mtrl_picker_a11y_next_month">ወደ የሚቀጥለው ወር ቀይር</string>
<string name="mtrl_picker_a11y_prev_month">ወደ ቀዳሚው ወር ቀይር</string>
<string name="mtrl_picker_announce_current_range_selection">የመጀመሪያ ቀን ምርጫ፦ %1$s የማብቂያ ቀን ምርጫ፦ %2$s</string>
<string name="mtrl_picker_announce_current_selection">የአሁኑ ምርጫ፦ %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">ምንም</string>
<string name="mtrl_picker_cancel">ይቅር</string>
<string name="mtrl_picker_confirm">እሺ</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">ቀን ይምረጡ</string>
<string name="mtrl_picker_date_header_unselected">የተመረጠው ቀን</string>
<string name="mtrl_picker_day_of_week_column_header">የቀኖች ዓምድ፦ %1$s</string>
<string name="mtrl_picker_end_date_description">የማብቂያ ቀን %1$s</string>
<string name="mtrl_picker_invalid_format">ልክ ያልሆነ ቅርጸት</string>
<string name="mtrl_picker_invalid_format_example">ምሳሌ፦ %1$s</string>
<string name="mtrl_picker_invalid_format_use">%1$s ን ይጠቀሙ</string>
<string name="mtrl_picker_invalid_range">ልክ ያልኾነ ክልል።</string>
<string name="mtrl_picker_navigate_to_current_year_description">ወደ የአሁኑ ዓመት %1$d አስስ</string>
<string name="mtrl_picker_navigate_to_year_description">ወደ ዓመት %1$d አሰስ</string>
<string name="mtrl_picker_out_of_range">ከክልል ውጭ፦ %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">መጀመሪያ ቀን %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s መጨረሻ ቀን</string>
<string name="mtrl_picker_range_header_selected">%1$s %2$s</string>
<string name="mtrl_picker_range_header_title">ክልል ይምረጡ</string>
<string name="mtrl_picker_range_header_unselected">የመጀመሪያ ቀን የመጨረሻ ቀን</string>
<string name="mtrl_picker_save">አስቀምጥ</string>
<string name="mtrl_picker_start_date_description">የመጀመሪያ ቀን %1$s</string>
<string name="mtrl_picker_text_input_date_hint">ቀን</string>
<string name="mtrl_picker_text_input_date_range_end_hint">የማብቂያ ቀን</string>
<string name="mtrl_picker_text_input_date_range_start_hint">መጀመሪያ ቀን</string>
<string name="mtrl_picker_text_input_day_abbr"></string>
<string name="mtrl_picker_text_input_month_abbr"></string>
<string name="mtrl_picker_text_input_year_abbr"></string>
<string name="mtrl_picker_today_description">ዛሬ %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">ወደ የቀን መቁጠሪያ ግቤት ሁነታ ቀይር</string>
<string name="mtrl_picker_toggle_to_day_selection">ወደ የቀን መቁጠሪያ እይታ ለመቀየር መታ ያድርጉ</string>
<string name="mtrl_picker_toggle_to_text_input_mode">ወደ ጽሁፍ ግቤት ሁነታ ቀይር</string>
<string name="mtrl_picker_toggle_to_year_selection">ወደ የዓመት እይታ ለመቀየር መታ ያድርጉ</string>
<string name="mtrl_timepicker_cancel">ይቅር</string>
<string name="mtrl_timepicker_confirm">እሺ</string>
<string name="password_toggle_content_description">የይለፍ ቃል አሳይ</string>
<string msgid="6264217191555673260" name="search_menu_title">"ፍለጋ"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,108 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="zero">%d إشعار جديد</item>
<item quantity="one">إشعار جديد واحد (%d)</item>
<item quantity="two">إشعاران جديدان (%d)</item>
<item quantity="few">%d إشعارات جديدة</item>
<item quantity="many">%d إشعارًا جديدًا</item>
<item quantity="other">%d إشعار جديد</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"التوجه إلى المنزل"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"التنقل إلى أعلى"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"خيارات أكثر"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"تم"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"عرض الكل"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"اختيار تطبيق"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"إيقاف"</string>
<string msgid="884982626291842264" name="abc_capital_on">"مفعّلة"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"حذف"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"فضاء"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"القائمة+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"بحث…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"محو طلب البحث"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"طلب بحث"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"البحث"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"إرسال طلب البحث"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"بحث صوتي"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"مشاركة مع"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"مشاركة مع <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"تصغير"</string>
<string name="bottomsheet_action_collapse">تصغير البطاقة السفلية</string>
<string name="bottomsheet_action_expand">توسيع البطاقة السفلية</string>
<string name="bottomsheet_action_expand_halfway">توسيع البطاقة السفلية</string>
<string name="bottomsheet_drag_handle_clicked">تم النقر مرّتين على مقبض السحب.</string>
<string name="bottomsheet_drag_handle_content_description">مقبض السحب</string>
<string name="character_counter_content_description">تمّ إدخال %1$d حرف من إجمالي %2$d.</string>
<string name="character_counter_overflowed_content_description">تجاوز عدد الأحرف المسموح به %1$d من %2$d.</string>
<string name="clear_text_end_icon_content_description">محو النص</string>
<string name="error_icon_content_description">خطأ</string>
<string name="exposed_dropdown_menu_content_description">عرض القائمة المنسدلة</string>
<string name="icon_content_description">رمز مربع الحوار</string>
<string name="item_view_role_description">علامة تبويب</string>
<string name="material_clock_toggle_content_description">يُرجى اختيار صباحًا أو مساءً.</string>
<string name="material_hour_24h_suffix">%1$s ساعة</string>
<string name="material_hour_selection">تحديد الساعة</string>
<string name="material_hour_suffix">الساعة %1$s</string>
<string name="material_minute_selection">تحديد الدقائق</string>
<string name="material_minute_suffix">%1$s دقيقة</string>
<string name="material_timepicker_am">صباحًا</string>
<string name="material_timepicker_clock_mode_description">يُرجى التبديل إلى وضع الساعة لإدخال الوقت.</string>
<string name="material_timepicker_hour">الساعة</string>
<string name="material_timepicker_minute">دقيقة</string>
<string name="material_timepicker_pm">مساءً</string>
<string name="material_timepicker_select_time">اختيار الوقت</string>
<string name="material_timepicker_text_input_mode_description">يُرجى التبديل إلى وضع إدخال النص لإدخال الوقت.</string>
<string name="mtrl_badge_numberless_content_description">إشعار جديد</string>
<string name="mtrl_chip_close_icon_content_description">إزالة %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">يبلغ عدد الإشعارات الجديدة أكثر من %1$d.</string>
<string name="mtrl_picker_a11y_next_month">التغيير إلى الشهر التالي</string>
<string name="mtrl_picker_a11y_prev_month">التغيير إلى الشهر السابق</string>
<string name="mtrl_picker_announce_current_range_selection">اختيار تاريخ البدء: %1$s اختيار تاريخ الانتهاء: %2$s</string>
<string name="mtrl_picker_announce_current_selection">الاختيار الحالي: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">بلا</string>
<string name="mtrl_picker_cancel">إلغاء</string>
<string name="mtrl_picker_confirm">حسنًا</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">يُرجى اختيار تاريخ.</string>
<string name="mtrl_picker_date_header_unselected">التاريخ المحدَّد</string>
<string name="mtrl_picker_day_of_week_column_header">عمود الأيام: %1$s</string>
<string name="mtrl_picker_end_date_description">تاريخ الانتهاء: %1$s</string>
<string name="mtrl_picker_invalid_format">التنسيق غير صالح</string>
<string name="mtrl_picker_invalid_format_example">مثال: %1$s</string>
<string name="mtrl_picker_invalid_format_use">استخدام: %1$s</string>
<string name="mtrl_picker_invalid_range">النطاق غير صالح</string>
<string name="mtrl_picker_navigate_to_current_year_description">الانتقال إلى السنة الحالية %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">التنقل إلى العام %1$d</string>
<string name="mtrl_picker_out_of_range">خارج النطاق: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">تاريخ البدء %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s تاريخ الانتهاء</string>
<string name="mtrl_picker_range_header_selected">%1$s %2$s</string>
<string name="mtrl_picker_range_header_title">يُرجى اختيار نطاق زمني.</string>
<string name="mtrl_picker_range_header_unselected">تاريخ البدء - تاريخ الانتهاء</string>
<string name="mtrl_picker_save">حفظ</string>
<string name="mtrl_picker_start_date_description">تاريخ البدء: %1$s</string>
<string name="mtrl_picker_text_input_date_hint">التاريخ</string>
<string name="mtrl_picker_text_input_date_range_end_hint">تاريخ الانتهاء</string>
<string name="mtrl_picker_text_input_date_range_start_hint">تاريخ البدء</string>
<string name="mtrl_picker_text_input_day_abbr">ي</string>
<string name="mtrl_picker_text_input_month_abbr">ش</string>
<string name="mtrl_picker_text_input_year_abbr">س</string>
<string name="mtrl_picker_today_description">اليوم %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">التبديل إلى وضع \"الإدخال في التقويم\"</string>
<string name="mtrl_picker_toggle_to_day_selection">يمكنك النقر للتبديل إلى عرض \"تقويم Google\".</string>
<string name="mtrl_picker_toggle_to_text_input_mode">التبديل إلى وضع \"إدخال النص\"</string>
<string name="mtrl_picker_toggle_to_year_selection">يمكنك النقر للتبديل إلى عرض السنة.</string>
<string name="mtrl_timepicker_cancel">إلغاء</string>
<string name="mtrl_timepicker_confirm">حسنًا</string>
<string name="password_toggle_content_description">عرض كلمة المرور</string>
<string msgid="6264217191555673260" name="search_menu_title">"البحث"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d new notification</item>
<item quantity="other">%d new notifications</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"গৃহ পৃষ্ঠালৈ যাওক"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"ওপৰলৈ যাওক"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"অধিক বিকল্প"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"সম্পন্ন হ’ল"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"আটাইবোৰ চাওক"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"কোনো এপ্ বাছনি কৰক"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"অফ"</string>
<string msgid="884982626291842264" name="abc_capital_on">"অন"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"সন্ধান কৰক…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"সন্ধান কৰা প্ৰশ্ন মচক"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"সন্ধান কৰা প্ৰশ্ন"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"সন্ধান কৰক"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"প্ৰশ্ন দাখিল কৰক"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"কণ্ঠধ্বনিৰ দ্বাৰা সন্ধান"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"ইয়াৰ জৰিয়তে শ্বেয়াৰ কৰক"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>ৰ জৰিয়তে শ্বেয়াৰ কৰক"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"সংকোচন কৰক"</string>
<string name="bottomsheet_action_collapse">Collapse the bottom sheet</string>
<string name="bottomsheet_action_expand">Expand the bottom sheet</string>
<string name="bottomsheet_action_expand_halfway">Expand halfway</string>
<string name="bottomsheet_drag_handle_clicked">Drag handle double-tapped</string>
<string name="bottomsheet_drag_handle_content_description">Drag handle</string>
<string name="character_counter_content_description">%2$dটাৰ ভিতৰত %1$dটা বৰ্ণ লিখা হৈছে</string>
<string name="character_counter_overflowed_content_description">%2$dটাৰ ভিতৰত %1$dটা বৰ্ণৰ সীমা অতিক্ৰম কৰিছে</string>
<string name="clear_text_end_icon_content_description">Clear text</string>
<string name="error_icon_content_description">Error</string>
<string name="exposed_dropdown_menu_content_description">Show dropdown menu</string>
<string name="icon_content_description">Dialog Icon</string>
<string name="item_view_role_description">Tab</string>
<string name="material_clock_toggle_content_description">Select AM or PM</string>
<string name="material_hour_24h_suffix">%1$s hours</string>
<string name="material_hour_selection">Select hour</string>
<string name="material_hour_suffix">%1$s o\'clock</string>
<string name="material_minute_selection">মিনিট বাছনি কৰক</string>
<string name="material_minute_suffix">%1$s minutes</string>
<string name="material_timepicker_am">AM</string>
<string name="material_timepicker_clock_mode_description">সময়ৰ ইনপুটৰ বাবে ঘড়ী ম\'ডলৈ যাওক।</string>
<string name="material_timepicker_hour">Hour</string>
<string name="material_timepicker_minute">Minute</string>
<string name="material_timepicker_pm">PM</string>
<string name="material_timepicker_select_time">Select time</string>
<string name="material_timepicker_text_input_mode_description">সময়ৰ ইনপুটৰ বাবে পাঠৰ ইনপুট ম\'ডলৈ যাওক।</string>
<string name="mtrl_badge_numberless_content_description">New notification</string>
<string name="mtrl_chip_close_icon_content_description">%1$sক আঁতৰাওক</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">More than %1$d new notifications</string>
<string name="mtrl_picker_a11y_next_month">Change to next month</string>
<string name="mtrl_picker_a11y_prev_month">Change to previous month</string>
<string name="mtrl_picker_announce_current_range_selection">Start date selection: %1$s End date selection: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Current selection: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">none</string>
<string name="mtrl_picker_cancel">Cancel</string>
<string name="mtrl_picker_confirm">OK</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Select Date</string>
<string name="mtrl_picker_date_header_unselected">Selected date</string>
<string name="mtrl_picker_day_of_week_column_header">Column of days: %1$s</string>
<string name="mtrl_picker_end_date_description">End date %1$s</string>
<string name="mtrl_picker_invalid_format">Invalid format.</string>
<string name="mtrl_picker_invalid_format_example">Example: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Use: %1$s</string>
<string name="mtrl_picker_invalid_range">Invalid range.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Navigate to current year %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">Navigate to year %1$d</string>
<string name="mtrl_picker_out_of_range">Out of range: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Start date %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s End date</string>
<string name="mtrl_picker_range_header_selected">%1$s %2$s</string>
<string name="mtrl_picker_range_header_title">Select Range</string>
<string name="mtrl_picker_range_header_unselected">Start date End date</string>
<string name="mtrl_picker_save">Save</string>
<string name="mtrl_picker_start_date_description">Start date %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Date</string>
<string name="mtrl_picker_text_input_date_range_end_hint">End date</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Start date</string>
<string name="mtrl_picker_text_input_day_abbr">d</string>
<string name="mtrl_picker_text_input_month_abbr">m</string>
<string name="mtrl_picker_text_input_year_abbr">y</string>
<string name="mtrl_picker_today_description">Today %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Switch to calendar input mode</string>
<string name="mtrl_picker_toggle_to_day_selection">Tap to switch to Calendar view</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Switch to text input mode</string>
<string name="mtrl_picker_toggle_to_year_selection">Tap to switch to year view</string>
<string name="mtrl_timepicker_cancel">Cancel</string>
<string name="mtrl_timepicker_confirm">OK</string>
<string name="password_toggle_content_description">পাছৱৰ্ড দেখুৱাওক</string>
<string msgid="6264217191555673260" name="search_menu_title">"সন্ধান"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"৯৯৯+"</string>
</resources>

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d yeni bildiriş</item>
<item quantity="other">%d yeni bildiriş</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Əsas səhifəyə keçin"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Yuxarı keçin"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Digər seçimlər"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Hazırdır"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Hamısına baxın"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Tətbiq seçin"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"DEAKTİV"</string>
<string msgid="884982626291842264" name="abc_capital_on">"AKTİV"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"silin"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"daxil olun"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Funksiya+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menyu+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Axtarış..."</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Sorğunu silin"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Axtarış sorğusu"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Axtarın"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Sorğunu göndərin"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Səsli axtarış"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Paylaşın"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g> ilə paylaşın"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Yığcamlaşdırın"</string>
<string name="bottomsheet_action_collapse">Aşağıdakı vərəqi yığcamlaşdırın</string>
<string name="bottomsheet_action_expand">Aşağıdakı vərəqi genişləndirin</string>
<string name="bottomsheet_action_expand_halfway">Tam genişləndirin</string>
<string name="bottomsheet_drag_handle_clicked">Dəstəyə iki dəfə toxunun</string>
<string name="bottomsheet_drag_handle_content_description">Dəstək</string>
<string name="character_counter_content_description">%1$d/%2$d simvol daxil edilib</string>
<string name="character_counter_overflowed_content_description">Simvol limiti %1$d/%2$d dəyərini keçdi</string>
<string name="clear_text_end_icon_content_description">Mətni silin</string>
<string name="error_icon_content_description">Xəta</string>
<string name="exposed_dropdown_menu_content_description">ılan menyunu göstərin</string>
<string name="icon_content_description">Dialoq ikonası</string>
<string name="item_view_role_description">Tab</string>
<string name="material_clock_toggle_content_description">Gündüz və ya axşam seçin</string>
<string name="material_hour_24h_suffix">%1$s saat</string>
<string name="material_hour_selection">Saatı seçin</string>
<string name="material_hour_suffix">Saat %1$s</string>
<string name="material_minute_selection">Dəqiqə seçin</string>
<string name="material_minute_suffix">%1$s dəqiqə</string>
<string name="material_timepicker_am">AM</string>
<string name="material_timepicker_clock_mode_description">Zamanı daxil etmək üçün saat rejiminə keçin</string>
<string name="material_timepicker_hour">Saat</string>
<string name="material_timepicker_minute">Dəqiqə</string>
<string name="material_timepicker_pm"></string>
<string name="material_timepicker_select_time">Vaxt seçin</string>
<string name="material_timepicker_text_input_mode_description">Zamanı daxil etmək üçün mətnlə daxiletmə rejiminə keçin</string>
<string name="mtrl_badge_numberless_content_description">Yeni bildiriş</string>
<string name="mtrl_chip_close_icon_content_description">%1$s silin</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">Minimum %1$d yeni bildiriş</string>
<string name="mtrl_picker_a11y_next_month">Növbəti aya dəyişin</string>
<string name="mtrl_picker_a11y_prev_month">Əvvəlki aya dəyişin</string>
<string name="mtrl_picker_announce_current_range_selection">Başlama tarixi seçimi: %1$s Bitmə tarixi seçimi: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Cari seçim: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">yoxdur</string>
<string name="mtrl_picker_cancel">Ləğv edin</string>
<string name="mtrl_picker_confirm">OK</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Tarix seçin</string>
<string name="mtrl_picker_date_header_unselected">Seçilmiş tarix</string>
<string name="mtrl_picker_day_of_week_column_header">Gün sütunu: %1$s</string>
<string name="mtrl_picker_end_date_description">Bitmə tarixi: %1$s</string>
<string name="mtrl_picker_invalid_format">Yanlış format.</string>
<string name="mtrl_picker_invalid_format_example">Nümunə: %1$s</string>
<string name="mtrl_picker_invalid_format_use">%1$s istifadə edin</string>
<string name="mtrl_picker_invalid_range">Yanlış diapazon.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Cari ilə keçin: %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">%1$d ilinə keçin</string>
<string name="mtrl_picker_out_of_range">Əhatə dairəsindən kənar: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Başlama tarixi %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s Bitmə tarixi</string>
<string name="mtrl_picker_range_header_selected">%1$s: %2$s</string>
<string name="mtrl_picker_range_header_title">Aralıq seçin</string>
<string name="mtrl_picker_range_header_unselected">Başlama tarixi - Bitmə tarixi</string>
<string name="mtrl_picker_save">Saxlayın</string>
<string name="mtrl_picker_start_date_description">Başlama tarixi: %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Tarix</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Bitmə tarixi</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Başlama tarixi</string>
<string name="mtrl_picker_text_input_day_abbr">gün</string>
<string name="mtrl_picker_text_input_month_abbr">ay</string>
<string name="mtrl_picker_text_input_year_abbr">il</string>
<string name="mtrl_picker_today_description">Bugün: %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Təqvim daxiletmə rejiminə keçin</string>
<string name="mtrl_picker_toggle_to_day_selection">Təqvim görünüşünə keçirmək üçün toxunun</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Mətn daxiletmə rejiminə keçin</string>
<string name="mtrl_picker_toggle_to_year_selection">İl görünüşünə keçirmək üçün toxunun</string>
<string name="mtrl_timepicker_cancel">Ləğv edin</string>
<string name="mtrl_timepicker_confirm">OK</string>
<string name="password_toggle_content_description">Parolu göstərin</string>
<string msgid="6264217191555673260" name="search_menu_title">"Axtarın"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,75 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d notificación nueva</item>
<item quantity="other">%d notificaciones nuevas</item>
</plurals>
<string name="bottomsheet_action_collapse">Contraer la hoja inferior</string>
<string name="bottomsheet_action_expand">Expandir la hoja inferior</string>
<string name="bottomsheet_action_expand_halfway">Expandir hasta la mitad</string>
<string name="bottomsheet_drag_handle_clicked">El control de arrastre se presionó dos veces</string>
<string name="bottomsheet_drag_handle_content_description">Controlador de arrastre</string>
<string name="character_counter_content_description">Caracteres ingresados: %1$d de %2$d</string>
<string name="character_counter_overflowed_content_description">Se excedió en %1$d el límite de caracteres de %2$d</string>
<string name="clear_text_end_icon_content_description">Borrar texto</string>
<string name="error_icon_content_description">Error</string>
<string name="exposed_dropdown_menu_content_description">Mostrar menú desplegable</string>
<string name="icon_content_description">Ícono de diálogo</string>
<string name="item_view_role_description">Pestaña</string>
<string name="material_clock_toggle_content_description">Selecciona a.m. o p.m.</string>
<string name="material_hour_24h_suffix">%1$s horas</string>
<string name="material_hour_selection">Seleccione la hora.</string>
<string name="material_hour_suffix">%1$s en punto</string>
<string name="material_minute_selection">Seleccionar minutos</string>
<string name="material_minute_suffix">%1$s minutos</string>
<string name="material_timepicker_am">a.m.</string>
<string name="material_timepicker_clock_mode_description">Cambia al modo de reloj para ingresar la hora.</string>
<string name="material_timepicker_hour">Hora</string>
<string name="material_timepicker_minute">Minuto</string>
<string name="material_timepicker_pm">p.m.</string>
<string name="material_timepicker_select_time">Seleccionar la hora</string>
<string name="material_timepicker_text_input_mode_description">Cambia al modo de entrada de texto para ingresar la hora.</string>
<string name="mtrl_badge_numberless_content_description">Notificación nueva</string>
<string name="mtrl_chip_close_icon_content_description">Quitar %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns1:ignore="PluralsCandidate">Más de %1$d notificaciones nuevas</string>
<string name="mtrl_picker_a11y_next_month">Cambiar al mes siguiente</string>
<string name="mtrl_picker_a11y_prev_month">Cambiar al mes anterior</string>
<string name="mtrl_picker_announce_current_range_selection">Selección de fecha de inicio: %1$s Selección de fecha de finalización: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Selección actual: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">nada</string>
<string name="mtrl_picker_cancel">Cancelar</string>
<string name="mtrl_picker_confirm">Aceptar</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Seleccionar fecha</string>
<string name="mtrl_picker_date_header_unselected">Fecha seleccionada</string>
<string name="mtrl_picker_day_of_week_column_header">Columna de días: %1$s</string>
<string name="mtrl_picker_end_date_description">Fecha de finalización: %1$s</string>
<string name="mtrl_picker_invalid_format">Formato no válido</string>
<string name="mtrl_picker_invalid_format_example">Ejemplo: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Usar: %1$s</string>
<string name="mtrl_picker_invalid_range">El rango no es válido.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Navegar al año actual (%1$d)</string>
<string name="mtrl_picker_navigate_to_year_description">Navegar al año %1$d</string>
<string name="mtrl_picker_out_of_range">Fuera de rango: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Fecha de inicio - %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s - fecha de finalización</string>
<string name="mtrl_picker_range_header_selected">%1$s-%2$s</string>
<string name="mtrl_picker_range_header_title">Selecciona un período</string>
<string name="mtrl_picker_range_header_unselected">Fecha de inicio - fecha de finalización</string>
<string name="mtrl_picker_save">Guardar</string>
<string name="mtrl_picker_start_date_description">Fecha de inicio: %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Fecha</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Fecha de finalización</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Fecha de inicio</string>
<string name="mtrl_picker_text_input_day_abbr">d</string>
<string name="mtrl_picker_text_input_month_abbr">m</string>
<string name="mtrl_picker_text_input_year_abbr">a</string>
<string name="mtrl_picker_today_description">Hoy, %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Cambiar al modo de entrada de calendario</string>
<string name="mtrl_picker_toggle_to_day_selection">Presiona para cambiar a la vista de Calendario</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Cambiar al modo de entrada de texto</string>
<string name="mtrl_picker_toggle_to_year_selection">Presiona para cambiar a la vista de año</string>
<string name="mtrl_timepicker_cancel">Cancelar</string>
<string name="mtrl_timepicker_confirm">Aceptar</string>
<string name="password_toggle_content_description">Mostrar contraseña</string>
</resources>

@ -0,0 +1,105 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d novo obaveštenje</item>
<item quantity="few">%d nova obaveštenja</item>
<item quantity="other">%d novih obaveštenja</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Idite na početnu"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Idite nagore"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Još opcija"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Gotovo"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Izaberite aplikaciju"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"ISKLJUČENO"</string>
<string msgid="884982626291842264" name="abc_capital_on">"UKLJUČENO"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"taster za razmak"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Pretražite…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Obrišite upit"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Pretražite upit"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Pretražite"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Pošaljite upit"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Glasovna pretraga"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Delite pomoću"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Delite pomoću aplikacije <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Skupi"</string>
<string name="bottomsheet_action_collapse">Skupite donju tabelu</string>
<string name="bottomsheet_action_expand">Proširite donju tabelu</string>
<string name="bottomsheet_action_expand_halfway">Proširite do pola</string>
<string name="bottomsheet_drag_handle_clicked">Identifikator za prevlačenje je dvaput dodirnut</string>
<string name="bottomsheet_drag_handle_content_description">Ručica za prevlačenje</string>
<string name="character_counter_content_description">Uneti znakovi: %1$d od %2$d</string>
<string name="character_counter_overflowed_content_description">Prekoračeno je ograničenje broja znakova: %1$d od %2$d</string>
<string name="clear_text_end_icon_content_description">Obriši tekst</string>
<string name="error_icon_content_description">Greška</string>
<string name="exposed_dropdown_menu_content_description">Prikaži padajući meni</string>
<string name="icon_content_description">Ikona dijaloga</string>
<string name="item_view_role_description">Kartica</string>
<string name="material_clock_toggle_content_description">Izaberite pre podne ili po podne</string>
<string name="material_hour_24h_suffix">%1$s s</string>
<string name="material_hour_selection">Izaberite sat</string>
<string name="material_hour_suffix">%1$s s</string>
<string name="material_minute_selection">Izaberite minute</string>
<string name="material_minute_suffix">%1$s min</string>
<string name="material_timepicker_am">AM</string>
<string name="material_timepicker_clock_mode_description">Pređite u režim sata radi unosa vremena.</string>
<string name="material_timepicker_hour">Sat</string>
<string name="material_timepicker_minute">Minut</string>
<string name="material_timepicker_pm">PM</string>
<string name="material_timepicker_select_time">Izaberite vreme</string>
<string name="material_timepicker_text_input_mode_description">Pređite u režim unosa teksta radi unosa vremena.</string>
<string name="mtrl_badge_numberless_content_description">Novo obaveštenje</string>
<string name="mtrl_chip_close_icon_content_description">Uklonite %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">Novih obaveštenja: više od %1$d</string>
<string name="mtrl_picker_a11y_next_month">Pređite na sledeći mesec</string>
<string name="mtrl_picker_a11y_prev_month">Pređite na prethodni mesec</string>
<string name="mtrl_picker_announce_current_range_selection">Izbor datuma početka: %1$s Izbor datuma završetka: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Aktuelni izbor: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">ništa</string>
<string name="mtrl_picker_cancel">Otkaži</string>
<string name="mtrl_picker_confirm">Potvrdi</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Izaberite datum</string>
<string name="mtrl_picker_date_header_unselected">Izabrani datum</string>
<string name="mtrl_picker_day_of_week_column_header">Kolona sa danima: %1$s</string>
<string name="mtrl_picker_end_date_description">Datum završetka %1$s</string>
<string name="mtrl_picker_invalid_format">Format je nevažeći.</string>
<string name="mtrl_picker_invalid_format_example">Primer: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Koristite: %1$s</string>
<string name="mtrl_picker_invalid_range">Nevažeći period.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Idite na aktuelnu godinu %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">Idite na godinu %1$d</string>
<string name="mtrl_picker_out_of_range">Izvan perioda: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Datum početka %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s Datum završetka</string>
<string name="mtrl_picker_range_header_selected">%1$s%2$s</string>
<string name="mtrl_picker_range_header_title">Izaberite period</string>
<string name="mtrl_picker_range_header_unselected">Datum početka Datum završetka</string>
<string name="mtrl_picker_save">Sačuvaj</string>
<string name="mtrl_picker_start_date_description">Datum početka %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Datum</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Datum završetka</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Datum početka</string>
<string name="mtrl_picker_text_input_day_abbr">d</string>
<string name="mtrl_picker_text_input_month_abbr">m</string>
<string name="mtrl_picker_text_input_year_abbr">g</string>
<string name="mtrl_picker_today_description">Danas %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Pređite na režim unosa u Kalendaru</string>
<string name="mtrl_picker_toggle_to_day_selection">Dodirnite da biste prešli na prikaz kalendara</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Pređite na režim unosa teksta</string>
<string name="mtrl_picker_toggle_to_year_selection">Dodirnite da biste prešli na prikaz godine</string>
<string name="mtrl_timepicker_cancel">Otkaži</string>
<string name="mtrl_timepicker_confirm">Potvrdi</string>
<string name="password_toggle_content_description">Prikaži lozinku</string>
<string msgid="6264217191555673260" name="search_menu_title">"Pretražite"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,106 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d новае апавяшчэнне</item>
<item quantity="few">%d новыя апавяшчэнні</item>
<item quantity="many">%d новых апавяшчэнняў</item>
<item quantity="other">%d новага апавяшчэння</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Перайсці на галоўную старонку"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Перайсці ўверх"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Дадатковыя параметры"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Гатова"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Паказаць усе"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Выберыце праграму"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"ВЫКЛ."</string>
<string msgid="884982626291842264" name="abc_capital_on">"УКЛ."</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt +"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"Delete"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Fn +"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta +"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift +"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"Прабел"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym +"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Меню +"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Пошук…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Выдаліць запыт"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Пошукавы запыт"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Пошук"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Адправіць запыт"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Галасавы пошук"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Абагуліць праз"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Абагуліць праз праграму \"<ns1:g id="APPLICATION_NAME">%s</ns1:g>\""</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Згарнуць"</string>
<string name="bottomsheet_action_collapse">Згарнуць ніжні аркуш</string>
<string name="bottomsheet_action_expand">Разгарнуць ніжні аркуш</string>
<string name="bottomsheet_action_expand_halfway">Разгарнуць напалову</string>
<string name="bottomsheet_drag_handle_clicked">Маркер перацягвання націснуты двойчы</string>
<string name="bottomsheet_drag_handle_content_description">Маркер перацягвання</string>
<string name="character_counter_content_description">Уведзена сімвалаў: %1$d з %2$d</string>
<string name="character_counter_overflowed_content_description">Абмежаванне колькасці сімвалаў перавышана: %1$d з %2$d</string>
<string name="clear_text_end_icon_content_description">Ачысціць тэкст</string>
<string name="error_icon_content_description">Памылка</string>
<string name="exposed_dropdown_menu_content_description">Паказаць выпадное меню</string>
<string name="icon_content_description">Значок дыялогавага акна</string>
<string name="item_view_role_description">Укладка</string>
<string name="material_clock_toggle_content_description">Выберыце AM (да паўдня) або PM (пасля паўдня)</string>
<string name="material_hour_24h_suffix">%1$s гадз</string>
<string name="material_hour_selection">Выберыце гадзіну</string>
<string name="material_hour_suffix">%1$s гадз</string>
<string name="material_minute_selection">Выберыце хвіліны</string>
<string name="material_minute_suffix">%1$s хв</string>
<string name="material_timepicker_am">AM</string>
<string name="material_timepicker_clock_mode_description">Пераключыцца на рэжым гадзінніка пры ўводзе часу.</string>
<string name="material_timepicker_hour">Гадзіна</string>
<string name="material_timepicker_minute">Хвіліна</string>
<string name="material_timepicker_pm">PM</string>
<string name="material_timepicker_select_time">Выберыце час</string>
<string name="material_timepicker_text_input_mode_description">Пераключыцца на рэжым тэксту пры ўводзе часу.</string>
<string name="mtrl_badge_numberless_content_description">Новае апавяшчэнне</string>
<string name="mtrl_chip_close_icon_content_description">Выдаліць %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">Колькасць новых апавяшчэнняў перавысіла %1$d</string>
<string name="mtrl_picker_a11y_next_month">Перайсці да наступнага месяца</string>
<string name="mtrl_picker_a11y_prev_month">Перайсці да папярэдняга месяца</string>
<string name="mtrl_picker_announce_current_range_selection">Выбраная дата пачатку: %1$s, выбраная дата заканчэння: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Бягучае вылучэнне: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">не выбрана</string>
<string name="mtrl_picker_cancel">Скасаваць</string>
<string name="mtrl_picker_confirm">ОК</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Выберыце дату</string>
<string name="mtrl_picker_date_header_unselected">Выбраная дата</string>
<string name="mtrl_picker_day_of_week_column_header">Слупок дзён: %1$s</string>
<string name="mtrl_picker_end_date_description">Дата заканчэння: %1$s</string>
<string name="mtrl_picker_invalid_format">Няправільны фармат.</string>
<string name="mtrl_picker_invalid_format_example">Прыклад: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Неабходны фармат: %1$s</string>
<string name="mtrl_picker_invalid_range">Няправільны дыяпазон.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Перайсці да бягучага года %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">Перайсці ў %1$d год</string>
<string name="mtrl_picker_out_of_range">Па-за межамі дыяпазону: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Дата пачатку – %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s  дата заканчэння</string>
<string name="mtrl_picker_range_header_selected">%1$s  %2$s</string>
<string name="mtrl_picker_range_header_title">Выберыце дыяпазон дат</string>
<string name="mtrl_picker_range_header_unselected">Дата пачатку – дата заканчэння</string>
<string name="mtrl_picker_save">Захаваць</string>
<string name="mtrl_picker_start_date_description">Дата пачатку: %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Дата</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Дата заканчэння</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Дата пачатку</string>
<string name="mtrl_picker_text_input_day_abbr">д</string>
<string name="mtrl_picker_text_input_month_abbr">м</string>
<string name="mtrl_picker_text_input_year_abbr">г</string>
<string name="mtrl_picker_today_description">Сёння %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Пераключыцца ў рэжым уводу \"Каляндар\"</string>
<string name="mtrl_picker_toggle_to_day_selection">Націсніце, каб пераключыцца на прагляд календара</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Пераключыцца ў рэжым уводу \"Тэкст\"</string>
<string name="mtrl_picker_toggle_to_year_selection">Націсніце, каб пераключыцца на агляд года</string>
<string name="mtrl_timepicker_cancel">Скасаваць</string>
<string name="mtrl_timepicker_confirm">ОК</string>
<string name="password_toggle_content_description">Паказаць пароль</string>
<string msgid="6264217191555673260" name="search_menu_title">"Пошук"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d ново известие</item>
<item quantity="other">%d нови известия</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Навигиране към началния екран"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Навигиране нагоре"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Още опции"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Готово"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Преглед на всички"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Изберете приложение"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"ИЗКЛ."</string>
<string msgid="884982626291842264" name="abc_capital_on">"ВКЛ."</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"клавиша за интервал"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Търсете…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Изчистване на заявката"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Заявка за търсене"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Търсене"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Изпращане на заявката"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Гласово търсене"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Споделяне със:"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Споделяне със: <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Свиване"</string>
<string name="bottomsheet_action_collapse">Свиване на долния лист</string>
<string name="bottomsheet_action_expand">Разгъване на долния лист</string>
<string name="bottomsheet_action_expand_halfway">Разгъване наполовина</string>
<string name="bottomsheet_drag_handle_clicked">Двукратно докосване на манипулатора за преместване с плъзгане</string>
<string name="bottomsheet_drag_handle_content_description">Манипулатор за преместване с плъзгане</string>
<string name="character_counter_content_description">Въведени знаци: %1$d от %2$d</string>
<string name="character_counter_overflowed_content_description">Максималният брой знаци е надхвърлен с(ъс) %1$d от %2$d</string>
<string name="clear_text_end_icon_content_description">Изчистване на текста</string>
<string name="error_icon_content_description">Грешка</string>
<string name="exposed_dropdown_menu_content_description">Показване на падащото меню</string>
<string name="icon_content_description">Икона за диалогов прозорец</string>
<string name="item_view_role_description">Раздел</string>
<string name="material_clock_toggle_content_description">Изберете AM или PM</string>
<string name="material_hour_24h_suffix">%1$s часа</string>
<string name="material_hour_selection">Изберете час</string>
<string name="material_hour_suffix">%1$s часа</string>
<string name="material_minute_selection">Избиране на минути</string>
<string name="material_minute_suffix">%1$s минути</string>
<string name="material_timepicker_am">AM</string>
<string name="material_timepicker_clock_mode_description">Превключете към режима за часовник, за да въведете часа.</string>
<string name="material_timepicker_hour">Час</string>
<string name="material_timepicker_minute">Минута</string>
<string name="material_timepicker_pm">PM</string>
<string name="material_timepicker_select_time">Избор на час</string>
<string name="material_timepicker_text_input_mode_description">Превключете към режима за въвеждане на текст, за да въведете часа.</string>
<string name="mtrl_badge_numberless_content_description">Ново известие</string>
<string name="mtrl_chip_close_icon_content_description">Премахване на %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">Повече от %1$d нови известия</string>
<string name="mtrl_picker_a11y_next_month">Преминаване към следващия месец</string>
<string name="mtrl_picker_a11y_prev_month">Преминаване към предишния месец</string>
<string name="mtrl_picker_announce_current_range_selection">Избиране на начална дата: %1$s  Избиране на крайна дата: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Текущ избор: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">няма</string>
<string name="mtrl_picker_cancel">Отказ</string>
<string name="mtrl_picker_confirm">OK</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Избиране на дата</string>
<string name="mtrl_picker_date_header_unselected">Избрана дата</string>
<string name="mtrl_picker_day_of_week_column_header">Колона за дни: %1$s</string>
<string name="mtrl_picker_end_date_description">Крайна дата: %1$s</string>
<string name="mtrl_picker_invalid_format">Форматът е невалиден.</string>
<string name="mtrl_picker_invalid_format_example">Пример: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Използвайте: %1$s</string>
<string name="mtrl_picker_invalid_range">Невалиден диапазон.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Навигиране до текущата година %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">Навигиране до %1$d г.</string>
<string name="mtrl_picker_out_of_range">Извън диапазона: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Начална дата %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s крайна дата</string>
<string name="mtrl_picker_range_header_selected">%1$s %2$s</string>
<string name="mtrl_picker_range_header_title">Избиране на период от време</string>
<string name="mtrl_picker_range_header_unselected">Начална дата крайна дата</string>
<string name="mtrl_picker_save">Запазване</string>
<string name="mtrl_picker_start_date_description">Начална дата: %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Дата</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Крайна дата</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Начална дата</string>
<string name="mtrl_picker_text_input_day_abbr">д</string>
<string name="mtrl_picker_text_input_month_abbr">м</string>
<string name="mtrl_picker_text_input_year_abbr">г</string>
<string name="mtrl_picker_today_description">Днес – %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Превключване към режим на въвеждане в календар</string>
<string name="mtrl_picker_toggle_to_day_selection">Докоснете за превключване към календарен изглед</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Превключване към режим за въвеждане на текст</string>
<string name="mtrl_picker_toggle_to_year_selection">Докоснете за превключване към годишен изглед</string>
<string name="mtrl_timepicker_cancel">Отказ</string>
<string name="mtrl_timepicker_confirm">OK</string>
<string name="password_toggle_content_description">Показване на паролата</string>
<string msgid="6264217191555673260" name="search_menu_title">"Търсене"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%dটি নতুন বিজ্ঞপ্তি</item>
<item quantity="other">%dটি নতুন বিজ্ঞপ্তি</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"হোমে নেভিগেট করুন"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"উপরে নেভিগেট করুন"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"আরও বিকল্প"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"হয়ে গেছে"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"সবগুলি দেখুন"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"একটি অ্যাপ বেছে নিন"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"বন্ধ আছে"</string>
<string msgid="884982626291842264" name="abc_capital_on">"চালু করুন"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"মুছুন"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"সার্চ করুন…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"কোয়েরি মুছে ফেলুন"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"সার্চ কোয়েরি"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"সার্চ করুন"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"কোয়েরি জমা দিন"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"ভয়েস সার্চ করুন"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"শেয়ার করুন"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"<ns1:g id="APPLICATION_NAME">%s</ns1:g>-এর সাথে শেয়ার করুন"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"সঙ্কুচিত করুন"</string>
<string name="bottomsheet_action_collapse">স্ক্রিনের নিচে অ্যাটাচ করা শিট আড়াল করুন</string>
<string name="bottomsheet_action_expand">স্ক্রিনের নিচে অ্যাটাচ করা শিট বড় করুন</string>
<string name="bottomsheet_action_expand_halfway">অর্ধেক প্রসারিত করুন</string>
<string name="bottomsheet_drag_handle_clicked">টেনে আনার হ্যান্ডেলে ডবল ট্যাপ করা হয়েছে</string>
<string name="bottomsheet_drag_handle_content_description">টেনে আনার হ্যান্ডেল</string>
<string name="character_counter_content_description">%2$dটির মধ্যে %1$dটি অক্ষর লেখা হয়েছে</string>
<string name="character_counter_overflowed_content_description">অক্ষরের সীমা %1$d এর %2$d অতিক্রম করেছে</string>
<string name="clear_text_end_icon_content_description">টেক্সট মুছুন</string>
<string name="error_icon_content_description">সমস্যা</string>
<string name="exposed_dropdown_menu_content_description">ড্রপ-ডাউন মেনু দেখুন</string>
<string name="icon_content_description">ডায়ালগ আইকন</string>
<string name="item_view_role_description">ট্যাব</string>
<string name="material_clock_toggle_content_description">AM অথবা PM বেছে নিন</string>
<string name="material_hour_24h_suffix">%1$s ঘণ্টা</string>
<string name="material_hour_selection">ঘণ্টা বেছে নিন</string>
<string name="material_hour_suffix">%1$sটা বাজে</string>
<string name="material_minute_selection">মিনিট বেছে নিন</string>
<string name="material_minute_suffix">%1$s মিনিট</string>
<string name="material_timepicker_am">AM</string>
<string name="material_timepicker_clock_mode_description">সময় ইনপুট দেওয়ার জন্য ঘড়ি মোডে যান।</string>
<string name="material_timepicker_hour">ঘণ্টা</string>
<string name="material_timepicker_minute">মিনিট</string>
<string name="material_timepicker_pm">PM</string>
<string name="material_timepicker_select_time">সময় বেছে নিন</string>
<string name="material_timepicker_text_input_mode_description">সময় ইনপুট দেওয়ার জন্য পাঠ্য ইনপুট মোডে যান।</string>
<string name="mtrl_badge_numberless_content_description">নতুন বিজ্ঞপ্তি</string>
<string name="mtrl_chip_close_icon_content_description">%1$s সরিয়ে দিন</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">%1$dটির বেশি নতুন বিজ্ঞপ্তি</string>
<string name="mtrl_picker_a11y_next_month">আগামী মাসে যান</string>
<string name="mtrl_picker_a11y_prev_month">আগের মাসে যান</string>
<string name="mtrl_picker_announce_current_range_selection">চালু হওয়ার তারিখ বাছুন: %1$s শেষ হওয়ার তারিখ বাছুন: %2$s</string>
<string name="mtrl_picker_announce_current_selection">বর্তমান বাছাই: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">কোনওটিই নয়</string>
<string name="mtrl_picker_cancel">বাতিল করুন</string>
<string name="mtrl_picker_confirm">ঠিক আছে</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">তারিখ বেছে নিন</string>
<string name="mtrl_picker_date_header_unselected">বেছে নেওয়া তারিখ</string>
<string name="mtrl_picker_day_of_week_column_header">সপ্তাহের দিনগুলির কলাম: %1$s</string>
<string name="mtrl_picker_end_date_description">শেষ হওয়ার তারিখ %1$s</string>
<string name="mtrl_picker_invalid_format">ভুল ফর্ম্যাট।</string>
<string name="mtrl_picker_invalid_format_example">উদাহরণ: %1$s</string>
<string name="mtrl_picker_invalid_format_use">%1$s ফর্ম্যাটে লিখুন</string>
<string name="mtrl_picker_invalid_range">তারিখ সঠিক নয়।</string>
<string name="mtrl_picker_navigate_to_current_year_description">বর্তমান বছর %1$d-এ নেভিগেট করুন</string>
<string name="mtrl_picker_navigate_to_year_description">নেভিগেট করে %1$d সালে যান</string>
<string name="mtrl_picker_out_of_range">নির্দিষ্ট তারিখের বাইরে: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">শুরুর তারিখ %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s সমাপ্তির তারিখ</string>
<string name="mtrl_picker_range_header_selected">%1$s %2$s</string>
<string name="mtrl_picker_range_header_title">রেঞ্জ বেছে নিন</string>
<string name="mtrl_picker_range_header_unselected">শুরুর তারিখ - সমাপ্তির তারিখ</string>
<string name="mtrl_picker_save">সেভ করুন</string>
<string name="mtrl_picker_start_date_description">শুরু হওয়ার তারিখ %1$s</string>
<string name="mtrl_picker_text_input_date_hint">তারিখ</string>
<string name="mtrl_picker_text_input_date_range_end_hint">সমাপ্তির তারিখ</string>
<string name="mtrl_picker_text_input_date_range_start_hint">শুরুর তারিখ</string>
<string name="mtrl_picker_text_input_day_abbr">d</string>
<string name="mtrl_picker_text_input_month_abbr">m</string>
<string name="mtrl_picker_text_input_year_abbr">y</string>
<string name="mtrl_picker_today_description">আজ %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">ক্যালেন্ডার ইনপুট মোডে বদল করুন</string>
<string name="mtrl_picker_toggle_to_day_selection">Calendar ভিউতে পাল্টাতে ট্যাপ করুন</string>
<string name="mtrl_picker_toggle_to_text_input_mode">টেক্সট ইনপুট মোডে বদল করুন</string>
<string name="mtrl_picker_toggle_to_year_selection">বার্ষিক ভিউতে পাল্টাতে ট্যাপ করুন</string>
<string name="mtrl_timepicker_cancel">বাতিল করুন</string>
<string name="mtrl_timepicker_confirm">ঠিক আছে</string>
<string name="password_toggle_content_description">পাসওয়ার্ড দেখান</string>
<string msgid="6264217191555673260" name="search_menu_title">"সার্চ করুন"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"৯৯৯+"</string>
</resources>

@ -0,0 +1,105 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d novo obavještenje</item>
<item quantity="few">%d nova obavještenja</item>
<item quantity="other">%d novih obavještenja</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Vratite se na početnu stranicu"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Idi gore"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Više opcija"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Gotovo"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Prikaži sve"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Odaberite aplikaciju"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"ISKLJUČENO"</string>
<string msgid="884982626291842264" name="abc_capital_on">"UKLJUČENO"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"razmak"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Pretražite..."</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Obriši upit"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Pretraži upit"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Pretraži"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Pošalji upit"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Glasovno pretraživanje"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Dijeli sa"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Dijeli putem aplikacije <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Suzi"</string>
<string name="bottomsheet_action_collapse">Sužavanje donje tabele</string>
<string name="bottomsheet_action_expand">Proširivanje donje tabele</string>
<string name="bottomsheet_action_expand_halfway">Proširivanje dopola</string>
<string name="bottomsheet_drag_handle_clicked">Ručica za prevlačenje je dvaput dodirnuta</string>
<string name="bottomsheet_drag_handle_content_description">Ručica za prevlačenje</string>
<string name="character_counter_content_description">Uneseno znakova: %1$d od %2$d</string>
<string name="character_counter_overflowed_content_description">Ograničenje broja znakova premašuje %1$d od %2$d</string>
<string name="clear_text_end_icon_content_description">Obriši tekst</string>
<string name="error_icon_content_description">Greška</string>
<string name="exposed_dropdown_menu_content_description">Prikaži padajući meni</string>
<string name="icon_content_description">ikona dijaloškog okvira</string>
<string name="item_view_role_description">Kartica</string>
<string name="material_clock_toggle_content_description">Odaberite prijepodne ili poslijepodne</string>
<string name="material_hour_24h_suffix">%1$s h</string>
<string name="material_hour_selection">Odaberite sat</string>
<string name="material_hour_suffix">%1$s h</string>
<string name="material_minute_selection">Odaberite minute</string>
<string name="material_minute_suffix">%1$s min</string>
<string name="material_timepicker_am">AM</string>
<string name="material_timepicker_clock_mode_description">Prebacite u način rada kao sat za unos vremena.</string>
<string name="material_timepicker_hour">Sat</string>
<string name="material_timepicker_minute">Minuta</string>
<string name="material_timepicker_pm">PM</string>
<string name="material_timepicker_select_time">Odabir vremena</string>
<string name="material_timepicker_text_input_mode_description">Prebacite u način unosa teksta za unos vremena.</string>
<string name="mtrl_badge_numberless_content_description">Novo obavještenje</string>
<string name="mtrl_chip_close_icon_content_description">Uklonite %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">Broj novih obavještenja: više od %1$d</string>
<string name="mtrl_picker_a11y_next_month">Promijeni na sljedeći mjesec</string>
<string name="mtrl_picker_a11y_prev_month">Promijeni na prethodni mjesec</string>
<string name="mtrl_picker_announce_current_range_selection">Odabir datuma početka: %1$s Odabir datuma završetka: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Trenutni izbor: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">ništa</string>
<string name="mtrl_picker_cancel">Otkaži</string>
<string name="mtrl_picker_confirm">Uredu</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Odaberite datum</string>
<string name="mtrl_picker_date_header_unselected">Odabrani datum</string>
<string name="mtrl_picker_day_of_week_column_header">Kolona za dane: %1$s</string>
<string name="mtrl_picker_end_date_description">Datum završetka %1$s</string>
<string name="mtrl_picker_invalid_format">Nevažeći format.</string>
<string name="mtrl_picker_invalid_format_example">Primjer: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Koristi: %1$s</string>
<string name="mtrl_picker_invalid_range">Nevažeći opseg.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Odlazak na trenutnu godinu %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">Odlazak na %1$d. godinu</string>
<string name="mtrl_picker_out_of_range">Izvan opsega: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Datum početka %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s Datum završetka</string>
<string name="mtrl_picker_range_header_selected">%1$s %2$s</string>
<string name="mtrl_picker_range_header_title">Odaberite raspon</string>
<string name="mtrl_picker_range_header_unselected">Datum početka Datum završetka</string>
<string name="mtrl_picker_save">Sačuvaj</string>
<string name="mtrl_picker_start_date_description">Datum početka %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Datum</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Datum završetka</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Datum početka</string>
<string name="mtrl_picker_text_input_day_abbr">d</string>
<string name="mtrl_picker_text_input_month_abbr">m</string>
<string name="mtrl_picker_text_input_year_abbr">g</string>
<string name="mtrl_picker_today_description">Danas %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Prebacivanje na način unosa kalendara</string>
<string name="mtrl_picker_toggle_to_day_selection">Prebacivanje dodirom na prikaz Kalendara</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Prebacivanje na način unosa teksta</string>
<string name="mtrl_picker_toggle_to_year_selection">Prebacivanje dodirom na prikaz godine</string>
<string name="mtrl_timepicker_cancel">Otkaži</string>
<string name="mtrl_timepicker_confirm">Uredu</string>
<string name="password_toggle_content_description">Prikaži lozinku</string>
<string msgid="6264217191555673260" name="search_menu_title">"Pretražite"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d notificació nova</item>
<item quantity="other">%d notificacions noves</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navega fins a la pàgina d\'inici"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navega cap amunt"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Més opcions"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Fet"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Mostra-ho tot"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Selecciona una aplicació"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"DESACTIVA"</string>
<string msgid="884982626291842264" name="abc_capital_on">"ACTIVA"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"Supr"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Retorn"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Funció+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Maj+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"Espai"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menú+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Cerca…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Esborra la consulta"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Consulta de cerca"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Cerca"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Envia la consulta"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Cerca per veu"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Comparteix amb"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Comparteix amb <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Replega"</string>
<string name="bottomsheet_action_collapse">Replega el full inferior</string>
<string name="bottomsheet_action_expand">Desplega el full inferior</string>
<string name="bottomsheet_action_expand_halfway">Desplega fins a la meitat</string>
<string name="bottomsheet_drag_handle_clicked">Has fet doble toc a l\'ansa per arrossegar</string>
<string name="bottomsheet_drag_handle_content_description">Ansa per arrossegar</string>
<string name="character_counter_content_description">Caràcters introduïts: %1$d de %2$d</string>
<string name="character_counter_overflowed_content_description">S\'ha superat el límit de caràcters (%1$d de %2$d)</string>
<string name="clear_text_end_icon_content_description">Esborra el text</string>
<string name="error_icon_content_description">Error</string>
<string name="exposed_dropdown_menu_content_description">Mostra el menú desplegable</string>
<string name="icon_content_description">Icona del quadre de diàleg</string>
<string name="item_view_role_description">Tabulador</string>
<string name="material_clock_toggle_content_description">Selecciona a. m. o p. m.</string>
<string name="material_hour_24h_suffix">%1$s hores</string>
<string name="material_hour_selection">Seleccioneu l\'hora</string>
<string name="material_hour_suffix">%1$s en punt</string>
<string name="material_minute_selection">Selecciona els minuts</string>
<string name="material_minute_suffix">%1$s minuts</string>
<string name="material_timepicker_am">a. m.</string>
<string name="material_timepicker_clock_mode_description">Canvia al mode de rellotge per introduir l\'hora.</string>
<string name="material_timepicker_hour">Hora</string>
<string name="material_timepicker_minute">Minut</string>
<string name="material_timepicker_pm">p. m.</string>
<string name="material_timepicker_select_time">Selecció de l\'hora</string>
<string name="material_timepicker_text_input_mode_description">Canvia al mode d\'introducció de text per introduir l\'hora.</string>
<string name="mtrl_badge_numberless_content_description">Notificació nova</string>
<string name="mtrl_chip_close_icon_content_description">Suprimeix %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">Més de %1$d notificacions noves</string>
<string name="mtrl_picker_a11y_next_month">Canvia al mes següent</string>
<string name="mtrl_picker_a11y_prev_month">Canvia al mes anterior</string>
<string name="mtrl_picker_announce_current_range_selection">Selecció de la data d\'inici: %1$s Selecció de la data de finalització: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Selecció actual: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">cap</string>
<string name="mtrl_picker_cancel">Cancel·la</string>
<string name="mtrl_picker_confirm">Dacord</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Selecciona una data</string>
<string name="mtrl_picker_date_header_unselected">Data seleccionada</string>
<string name="mtrl_picker_day_of_week_column_header">Columna de dies: %1$s</string>
<string name="mtrl_picker_end_date_description">Data de finalització: %1$s</string>
<string name="mtrl_picker_invalid_format">El format no és vàlid.</string>
<string name="mtrl_picker_invalid_format_example">Exemple: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Utilitza: %1$s</string>
<string name="mtrl_picker_invalid_range">L\'interval no és vàlid.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Navega fins a l\'any actual %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">Canvia a l\'any %1$d</string>
<string name="mtrl_picker_out_of_range">La data està fora de l\'interval: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Data d\'inici - %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s - data de finalització</string>
<string name="mtrl_picker_range_header_selected">%1$s - %2$s</string>
<string name="mtrl_picker_range_header_title">Selecciona un interval</string>
<string name="mtrl_picker_range_header_unselected">Data d\'inici - data de finalització</string>
<string name="mtrl_picker_save">Desa</string>
<string name="mtrl_picker_start_date_description">Data d\'inici: %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Data</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Data de finalització</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Data d\'inici</string>
<string name="mtrl_picker_text_input_day_abbr">d</string>
<string name="mtrl_picker_text_input_month_abbr">m</string>
<string name="mtrl_picker_text_input_year_abbr">a</string>
<string name="mtrl_picker_today_description">Avui, dia %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Canvia al mode d\'introducció de dades del calendari</string>
<string name="mtrl_picker_toggle_to_day_selection">Toca per canviar a la visualització de calendari</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Canvia al mode d\'introducció de text</string>
<string name="mtrl_picker_toggle_to_year_selection">Toca per canviar a la visualització d\'any</string>
<string name="mtrl_timepicker_cancel">Cancel·la</string>
<string name="mtrl_timepicker_confirm">Dacord</string>
<string name="password_toggle_content_description">Mostra la contrasenya</string>
<string msgid="6264217191555673260" name="search_menu_title">"Cerca"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,106 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d nové oznámení</item>
<item quantity="few">%d nová oznámení</item>
<item quantity="many">%d nového oznámení</item>
<item quantity="other">%d nových oznámení</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Přejít na plochu"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Přejít nahoru"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Další možnosti"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Hotovo"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Zobrazit vše"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Vybrat aplikaci"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"VYP"</string>
<string msgid="884982626291842264" name="abc_capital_on">"ZAP"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Fn+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"mezerník"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Vyhledat…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Smazat dotaz"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Dotaz pro vyhledávání"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Hledat"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Odeslat dotaz"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Hlasové vyhledávání"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Sdílet s"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Sdílet s aplikací <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Sbalit"</string>
<string name="bottomsheet_action_collapse">Sbalit spodní tabulku</string>
<string name="bottomsheet_action_expand">Rozbalit spodní tabulku</string>
<string name="bottomsheet_action_expand_halfway">Rozbalit napůl</string>
<string name="bottomsheet_drag_handle_clicked">Dvakrát jste klepli na úchyt pro přetažení</string>
<string name="bottomsheet_drag_handle_content_description">Úchyt pro přetažení</string>
<string name="character_counter_content_description">Zadané znaky: %1$d z %2$d</string>
<string name="character_counter_overflowed_content_description">Byl překročen povolený počet znaků (%1$d z %2$d)</string>
<string name="clear_text_end_icon_content_description">Vymazat text</string>
<string name="error_icon_content_description">Chyba</string>
<string name="exposed_dropdown_menu_content_description">Zobrazit rozbalovací nabídku</string>
<string name="icon_content_description">Ikona dialogového okna</string>
<string name="item_view_role_description">Karta</string>
<string name="material_clock_toggle_content_description">Vyberte AM nebo PM</string>
<string name="material_hour_24h_suffix">%1$s hodin</string>
<string name="material_hour_selection">Vyberte hodinu</string>
<string name="material_hour_suffix">%1$s</string>
<string name="material_minute_selection">Zvolte minuty</string>
<string name="material_minute_suffix">%1$s min</string>
<string name="material_timepicker_am">AM</string>
<string name="material_timepicker_clock_mode_description">Chcete-li zadat čas, přepněte na režim hodin.</string>
<string name="material_timepicker_hour">Hodina</string>
<string name="material_timepicker_minute">Minuta</string>
<string name="material_timepicker_pm">PM</string>
<string name="material_timepicker_select_time">Vyberte čas</string>
<string name="material_timepicker_text_input_mode_description">Chcete-li zadat čas, přepněte na režim textu.</string>
<string name="mtrl_badge_numberless_content_description">Nové oznámení</string>
<string name="mtrl_chip_close_icon_content_description">Odstranit položku %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">Více než %1$d nových oznámení</string>
<string name="mtrl_picker_a11y_next_month">Přejít na další měsíc</string>
<string name="mtrl_picker_a11y_prev_month">Přejít na předchozí měsíc</string>
<string name="mtrl_picker_announce_current_range_selection">Výběr data zahájení: %1$s  Výběr data ukončení: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Aktuální výběr: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">prázdné</string>
<string name="mtrl_picker_cancel">Zrušit</string>
<string name="mtrl_picker_confirm">OK</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Vyberte datum</string>
<string name="mtrl_picker_date_header_unselected">Vybrané datum</string>
<string name="mtrl_picker_day_of_week_column_header">Sloupec dnů: %1$s</string>
<string name="mtrl_picker_end_date_description">Datum ukončení %1$s</string>
<string name="mtrl_picker_invalid_format">Neplatný formát.</string>
<string name="mtrl_picker_invalid_format_example">Příklad: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Použijte: %1$s</string>
<string name="mtrl_picker_invalid_range">Neplatný rozsah.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Přejít na aktuální rok %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">Přejít na rok %1$d</string>
<string name="mtrl_picker_out_of_range">Mimo rozsah: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Datum zahájení %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s datum ukončení</string>
<string name="mtrl_picker_range_header_selected">%1$s %2$s</string>
<string name="mtrl_picker_range_header_title">Vyberte rozsah</string>
<string name="mtrl_picker_range_header_unselected">Datum zahájení datum ukončení</string>
<string name="mtrl_picker_save">Uložit</string>
<string name="mtrl_picker_start_date_description">Datum zahájení %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Datum</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Datum ukončení</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Datum zahájení</string>
<string name="mtrl_picker_text_input_day_abbr">d</string>
<string name="mtrl_picker_text_input_month_abbr">m</string>
<string name="mtrl_picker_text_input_year_abbr">r</string>
<string name="mtrl_picker_today_description">Dnes %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Přepnout na režim zadávání do kalendáře</string>
<string name="mtrl_picker_toggle_to_day_selection">Klepnutím přepnete na zobrazení kalendáře</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Přepnout na režim zadávání textu</string>
<string name="mtrl_picker_toggle_to_year_selection">Klepnutím přepnete na zobrazení jednotlivých let</string>
<string name="mtrl_timepicker_cancel">Zrušit</string>
<string name="mtrl_timepicker_confirm">OK</string>
<string name="password_toggle_content_description">Zobrazit heslo</string>
<string msgid="6264217191555673260" name="search_menu_title">"Hledat"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d ny notifikation</item>
<item quantity="other">%d nye notifikationer</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Find hjem"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Gå op"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Flere valgmuligheder"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Udfør"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Se alle"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Vælg en app"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"FRA"</string>
<string msgid="884982626291842264" name="abc_capital_on">"TIL"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"slet"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Fn+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"mellemrum"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Søg…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Ryd forespørgsel"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Søgeforespørgsel"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Søg"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Indsend forespørgsel"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Talesøgning"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Del med"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Del med <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Skjul"</string>
<string name="bottomsheet_action_collapse">Skjul feltet i bunden</string>
<string name="bottomsheet_action_expand">Udvid feltet i bunden</string>
<string name="bottomsheet_action_expand_halfway">Udvid halvdelen</string>
<string name="bottomsheet_drag_handle_clicked">Du har trykket to gange på håndtaget</string>
<string name="bottomsheet_drag_handle_content_description">Håndtag</string>
<string name="character_counter_content_description">Du har brugt %1$d ud af %2$d tegn</string>
<string name="character_counter_overflowed_content_description">Du har brugt %1$d tegn og dermed overskredet tegnbegrænsningen på %2$d.</string>
<string name="clear_text_end_icon_content_description">Ryd tekst</string>
<string name="error_icon_content_description">Fejl</string>
<string name="exposed_dropdown_menu_content_description">Vis rullemenuen</string>
<string name="icon_content_description">Ikon for dialogboks</string>
<string name="item_view_role_description">Fane</string>
<string name="material_clock_toggle_content_description">Vælg AM eller PM</string>
<string name="material_hour_24h_suffix">%1$s timer</string>
<string name="material_hour_selection">Vælg time</string>
<string name="material_hour_suffix">klokken %1$s</string>
<string name="material_minute_selection">Vælg minutter</string>
<string name="material_minute_suffix">%1$s minutter</string>
<string name="material_timepicker_am">f.m.</string>
<string name="material_timepicker_clock_mode_description">Skift til urtilstand for at angive klokkeslæt.</string>
<string name="material_timepicker_hour">Time</string>
<string name="material_timepicker_minute">Minut</string>
<string name="material_timepicker_pm">e.m.</string>
<string name="material_timepicker_select_time">Vælg tidspunkt</string>
<string name="material_timepicker_text_input_mode_description">Skift til teksttilstand for at angive klokkeslæt.</string>
<string name="mtrl_badge_numberless_content_description">Ny notifikation</string>
<string name="mtrl_chip_close_icon_content_description">Fjern %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">Flere end %1$d nye notifikationer</string>
<string name="mtrl_picker_a11y_next_month">Skift til næste måned</string>
<string name="mtrl_picker_a11y_prev_month">Skift til forrige måned</string>
<string name="mtrl_picker_announce_current_range_selection">Valg af startdato: %1$s Valg af slutdato: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Aktuelt valg: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">ingen</string>
<string name="mtrl_picker_cancel">Annuller</string>
<string name="mtrl_picker_confirm">OK</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Vælg dato</string>
<string name="mtrl_picker_date_header_unselected">Valgt dato</string>
<string name="mtrl_picker_day_of_week_column_header">Kolonne med dage: %1$s</string>
<string name="mtrl_picker_end_date_description">Slutdato %1$s</string>
<string name="mtrl_picker_invalid_format">Ugyldigt format.</string>
<string name="mtrl_picker_invalid_format_example">Eksempel: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Brug: %1$s</string>
<string name="mtrl_picker_invalid_range">Ugyldigt interval.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Gå til indeværende år %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">Gå til år %1$d</string>
<string name="mtrl_picker_out_of_range">Uden for interval: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Startdato %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s slutdato</string>
<string name="mtrl_picker_range_header_selected">%1$s %2$s</string>
<string name="mtrl_picker_range_header_title">Vælg interval</string>
<string name="mtrl_picker_range_header_unselected">Startdato slutdato</string>
<string name="mtrl_picker_save">Gem</string>
<string name="mtrl_picker_start_date_description">Startdato %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Dato</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Slutdato</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Startdato</string>
<string name="mtrl_picker_text_input_day_abbr">d</string>
<string name="mtrl_picker_text_input_month_abbr">m</string>
<string name="mtrl_picker_text_input_year_abbr">å</string>
<string name="mtrl_picker_today_description">I dag %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Skift til input-tilstand for kalender</string>
<string name="mtrl_picker_toggle_to_day_selection">Tryk for at skifte til kalendervisning</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Skift til input-tilstand for tekst</string>
<string name="mtrl_picker_toggle_to_year_selection">Tryk for at skifte til årsvisning</string>
<string name="mtrl_timepicker_cancel">Annuller</string>
<string name="mtrl_timepicker_confirm">OK</string>
<string name="password_toggle_content_description">Vis adgangskode</string>
<string msgid="6264217191555673260" name="search_menu_title">"Søg"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d neue Benachrichtigung</item>
<item quantity="other">%d neue Benachrichtigungen</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Zur Startseite"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Nach oben"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Weitere Optionen"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Fertig"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Alle anzeigen"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"App auswählen"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"AUS"</string>
<string msgid="884982626291842264" name="abc_capital_on">"AN"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt +"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Strg +"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"Löschen"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Eingabetaste"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Funktionstaste +"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta-Taste +"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Umschalttaste +"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"Leertaste"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym-Taste +"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menütaste +"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Suchen…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Suchanfrage löschen"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Suchanfrage"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Suche"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Anfrage senden"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Sprachsuche"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Teilen mit"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Mit <ns1:g id="APPLICATION_NAME">%s</ns1:g> teilen"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Minimieren"</string>
<string name="bottomsheet_action_collapse">Ansicht am unteren Rand minimieren</string>
<string name="bottomsheet_action_expand">Ansicht am unteren Rand maximieren</string>
<string name="bottomsheet_action_expand_halfway">Zur Hälfte maximieren</string>
<string name="bottomsheet_drag_handle_clicked">Auf Ziehpunkt doppelt getippt</string>
<string name="bottomsheet_drag_handle_content_description">Ziehpunkt</string>
<string name="character_counter_content_description">Eingegebene Zeichen: %1$d von %2$d</string>
<string name="character_counter_overflowed_content_description">Zeichenbeschränkung überschritten: %1$d/%2$d</string>
<string name="clear_text_end_icon_content_description">Text löschen</string>
<string name="error_icon_content_description">Fehler</string>
<string name="exposed_dropdown_menu_content_description">Drop-down-Menü anzeigen</string>
<string name="icon_content_description">Dialogfeldsymbol</string>
<string name="item_view_role_description">Tab</string>
<string name="material_clock_toggle_content_description">Vormittags oder Nachmittags auswählen</string>
<string name="material_hour_24h_suffix">%1$s Stunden</string>
<string name="material_hour_selection">Stunde auswählen</string>
<string name="material_hour_suffix">%1$s Uhr</string>
<string name="material_minute_selection">Minuten auswählen</string>
<string name="material_minute_suffix">%1$s Minuten</string>
<string name="material_timepicker_am">AM</string>
<string name="material_timepicker_clock_mode_description">In den Uhrzeitmodus wechseln, um die Uhrzeit einzugeben.</string>
<string name="material_timepicker_hour">Stunde</string>
<string name="material_timepicker_minute">Minute</string>
<string name="material_timepicker_pm">PM</string>
<string name="material_timepicker_select_time">Uhrzeit auswählen</string>
<string name="material_timepicker_text_input_mode_description">In den Texteingabemodus wechseln, um die Uhrzeit einzugeben.</string>
<string name="mtrl_badge_numberless_content_description">Neue Benachrichtigung</string>
<string name="mtrl_chip_close_icon_content_description">%1$s entfernen</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">Mehr als %1$d neue Benachrichtigungen</string>
<string name="mtrl_picker_a11y_next_month">Zum nächsten Monat wechseln</string>
<string name="mtrl_picker_a11y_prev_month">Zum vorherigen Monat wechseln</string>
<string name="mtrl_picker_announce_current_range_selection">Ausgewähltes Startdatum: %1$s  Ausgewähltes Enddatum: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Aktuelle Auswahl: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">Keines</string>
<string name="mtrl_picker_cancel">Abbrechen</string>
<string name="mtrl_picker_confirm">OK</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Datum auswählen</string>
<string name="mtrl_picker_date_header_unselected">Ausgewähltes Datum</string>
<string name="mtrl_picker_day_of_week_column_header">Spalte \"Wochentag\": %1$s</string>
<string name="mtrl_picker_end_date_description">Enddatum %1$s</string>
<string name="mtrl_picker_invalid_format">Ungültiges Format.</string>
<string name="mtrl_picker_invalid_format_example">Beispiel: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Format: %1$s</string>
<string name="mtrl_picker_invalid_range">Ungültiger Bereich.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Zum aktuellen Jahr %1$d wechseln</string>
<string name="mtrl_picker_navigate_to_year_description">Zum Jahr %1$d wechseln</string>
<string name="mtrl_picker_out_of_range">Außerhalb des Bereichs: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Startdatum  %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s  Enddatum</string>
<string name="mtrl_picker_range_header_selected">%1$s  %2$s</string>
<string name="mtrl_picker_range_header_title">Zeitraum auswählen</string>
<string name="mtrl_picker_range_header_unselected">Startdatum  Enddatum</string>
<string name="mtrl_picker_save">Speichern</string>
<string name="mtrl_picker_start_date_description">Startdatum %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Datum</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Enddatum</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Startdatum</string>
<string name="mtrl_picker_text_input_day_abbr">T</string>
<string name="mtrl_picker_text_input_month_abbr">M</string>
<string name="mtrl_picker_text_input_year_abbr">J</string>
<string name="mtrl_picker_today_description">Heute %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">In den Kalendereingabemodus wechseln</string>
<string name="mtrl_picker_toggle_to_day_selection">Tippen, um zur Kalenderansicht zu wechseln</string>
<string name="mtrl_picker_toggle_to_text_input_mode">In den Texteingabemodus wechseln</string>
<string name="mtrl_picker_toggle_to_year_selection">Tippen, um zur Jahresansicht zu wechseln</string>
<string name="mtrl_timepicker_cancel">Abbrechen</string>
<string name="mtrl_timepicker_confirm">OK</string>
<string name="password_toggle_content_description">Passwort anzeigen</string>
<string msgid="6264217191555673260" name="search_menu_title">"Suche"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d νέα ειδοποίηση</item>
<item quantity="other">%d νέες ειδοποιήσεις</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Πλοήγηση στην αρχική σελίδα"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Πλοήγηση προς τα επάνω"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Περισσότερες επιλογές"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Τέλος"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Εμφάνιση όλων"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Επιλέξτε μια εφαρμογή"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"ΑΠΕΝΕΡΓΟΠΟΙΗΣΗ"</string>
<string msgid="884982626291842264" name="abc_capital_on">"ΕΝΕΡΓΟΠΟΙΗΣΗ"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"διάστημα"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Αναζήτηση…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Διαγραφή ερωτήματος"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Ερώτημα αναζήτησης"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Αναζήτηση"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Υποβολή ερωτήματος"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Φωνητική αναζήτηση"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Κοινοποίηση σε"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Κοινοποίηση στην εφαρμογή <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Σύμπτυξη"</string>
<string name="bottomsheet_action_collapse">Σύμπτυξη του φύλλου κάτω μέρους</string>
<string name="bottomsheet_action_expand">Ανάπτυξη του φύλλου κάτω μέρους</string>
<string name="bottomsheet_action_expand_halfway">Ανάπτυξη μέχρι τη μέση</string>
<string name="bottomsheet_drag_handle_clicked">Η λαβή μεταφοράς πατήθηκε δύο φορές</string>
<string name="bottomsheet_drag_handle_content_description">Λαβή μεταφοράς</string>
<string name="character_counter_content_description">Εισήχθησαν %1$d από %2$d χαρακτήρες</string>
<string name="character_counter_overflowed_content_description">Υπέρβαση ορίου χαρακτήρων %1$d από %2$d</string>
<string name="clear_text_end_icon_content_description">Διαγραφή κειμένου</string>
<string name="error_icon_content_description">Σφάλμα</string>
<string name="exposed_dropdown_menu_content_description">Εμφάνιση αναπτυσσόμενου μενού</string>
<string name="icon_content_description">Εικονίδιο παραθύρου διαλόγου</string>
<string name="item_view_role_description">Καρτέλα</string>
<string name="material_clock_toggle_content_description">Επιλέξτε π.μ. ή μ.μ.</string>
<string name="material_hour_24h_suffix">%1$s ώρες</string>
<string name="material_hour_selection">Επιλογή ώρας</string>
<string name="material_hour_suffix">%1$s ακριβώς</string>
<string name="material_minute_selection">Επιλογή λεπτών</string>
<string name="material_minute_suffix">%1$s λεπτά</string>
<string name="material_timepicker_am">ΠΜ</string>
<string name="material_timepicker_clock_mode_description">Κάντε εναλλαγή στη λειτουργία ρολογιού, για την εισαγωγή της ώρας.</string>
<string name="material_timepicker_hour">Ώρα</string>
<string name="material_timepicker_minute">Λεπτό</string>
<string name="material_timepicker_pm">ΜΜ</string>
<string name="material_timepicker_select_time">Επιλέξτε ώρα</string>
<string name="material_timepicker_text_input_mode_description">Κάντε εναλλαγή στη λειτουργία εισαγωγής κειμένου, για την εισαγωγή της ώρας.</string>
<string name="mtrl_badge_numberless_content_description">Νέα ειδοποίηση</string>
<string name="mtrl_chip_close_icon_content_description">Κατάργηση %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">Πάνω από %1$d νέες ειδοποιήσεις</string>
<string name="mtrl_picker_a11y_next_month">Αλλαγή στον επόμενο μήνα</string>
<string name="mtrl_picker_a11y_prev_month">Αλλαγή στον προηγούμενο μήνα</string>
<string name="mtrl_picker_announce_current_range_selection">Επιλογή ημερομηνίας έναρξης: %1$s Επιλογή ημερομηνίας λήξης: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Τρέχουσα επιλογή: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">χωρίς επιλογή</string>
<string name="mtrl_picker_cancel">Ακύρωση</string>
<string name="mtrl_picker_confirm">ΟΚ</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Επιλογή ημερομηνίας</string>
<string name="mtrl_picker_date_header_unselected">Επιλεγμένη ημερομηνία</string>
<string name="mtrl_picker_day_of_week_column_header">Στήλη ημερών: %1$s</string>
<string name="mtrl_picker_end_date_description">Ημερομηνία λήξης %1$s</string>
<string name="mtrl_picker_invalid_format">Μη έγκυρη μορφή.</string>
<string name="mtrl_picker_invalid_format_example">Παράδειγμα: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Χρησιμοποιήστε: %1$s</string>
<string name="mtrl_picker_invalid_range">Μη έγκυρο εύρος.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Πλοήγηση στο τρέχον έτος %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">Πλοήγηση στο έτος %1$d</string>
<string name="mtrl_picker_out_of_range">Εκτός εύρους: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Ημερομηνία έναρξης %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s Ημερομηνία λήξης</string>
<string name="mtrl_picker_range_header_selected">%1$s %2$s</string>
<string name="mtrl_picker_range_header_title">Επιλογή εύρους</string>
<string name="mtrl_picker_range_header_unselected">Ημερομηνία έναρξης Ημερομηνία λήξης</string>
<string name="mtrl_picker_save">Αποθήκευση</string>
<string name="mtrl_picker_start_date_description">Ημερομηνία έναρξης %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Ημερομηνία</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Ημερομηνία λήξης</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Ημερομηνία έναρξης</string>
<string name="mtrl_picker_text_input_day_abbr">η</string>
<string name="mtrl_picker_text_input_month_abbr">μ</string>
<string name="mtrl_picker_text_input_year_abbr">ε</string>
<string name="mtrl_picker_today_description">Σήμερα %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Εναλλαγή στη λειτουργία εισαγωγής ημερολογίου</string>
<string name="mtrl_picker_toggle_to_day_selection">Πατήστε για εναλλαγή στην προβολή Ημερολόγιο</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Εναλλαγή στη λειτουργία εισαγωγής κειμένου</string>
<string name="mtrl_picker_toggle_to_year_selection">Πατήστε για εναλλαγή στην προβολή έτους</string>
<string name="mtrl_timepicker_cancel">Ακύρωση</string>
<string name="mtrl_timepicker_confirm">ΟΚ</string>
<string name="password_toggle_content_description">Εμφάνιση κωδικού πρόσβασης</string>
<string msgid="6264217191555673260" name="search_menu_title">"Αναζήτηση"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navigate home"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navigate up"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"More options"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Done"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"See all"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Choose an app"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"OFF"</string>
<string msgid="884982626291842264" name="abc_capital_on">"ON"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Search…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Clear query"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Search query"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Search"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Submit query"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Voice search"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Share with"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Collapse"</string>
<string msgid="6264217191555673260" name="search_menu_title">"Search"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navigate home"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navigate up"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"More options"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Done"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"See all"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Choose an app"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"OFF"</string>
<string msgid="884982626291842264" name="abc_capital_on">"ON"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Search…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Clear query"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Search query"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Search"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Submit query"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Voice search"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Share with"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Collapse"</string>
<string msgid="6264217191555673260" name="search_menu_title">"Search"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d new notification</item>
<item quantity="other">%d new notifications</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navigate home"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navigate up"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"More options"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Done"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"See all"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Choose an app"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"OFF"</string>
<string msgid="884982626291842264" name="abc_capital_on">"ON"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Search…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Clear query"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Search query"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Search"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Submit query"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Voice search"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Share with"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Collapse"</string>
<string name="bottomsheet_action_collapse">Collapse the bottom sheet</string>
<string name="bottomsheet_action_expand">Expand the bottom sheet</string>
<string name="bottomsheet_action_expand_halfway">Expand halfway</string>
<string name="bottomsheet_drag_handle_clicked">Drag handle double-tapped</string>
<string name="bottomsheet_drag_handle_content_description">Drag handle</string>
<string name="character_counter_content_description">Characters entered %1$d of %2$d</string>
<string name="character_counter_overflowed_content_description">Character limit exceeded %1$d of %2$d</string>
<string name="clear_text_end_icon_content_description">Clear text</string>
<string name="error_icon_content_description">Error</string>
<string name="exposed_dropdown_menu_content_description">Show drop-down menu</string>
<string name="icon_content_description">Dialogue Icon</string>
<string name="item_view_role_description">Tab</string>
<string name="material_clock_toggle_content_description">Select a.m. or p.m.</string>
<string name="material_hour_24h_suffix">%1$s hours</string>
<string name="material_hour_selection">Select hour</string>
<string name="material_hour_suffix">%1$s o\'clock</string>
<string name="material_minute_selection">Select minutes</string>
<string name="material_minute_suffix">%1$s minutes</string>
<string name="material_timepicker_am">AM</string>
<string name="material_timepicker_clock_mode_description">Switch to clock mode for the time input.</string>
<string name="material_timepicker_hour">Hour</string>
<string name="material_timepicker_minute">Minute</string>
<string name="material_timepicker_pm">PM</string>
<string name="material_timepicker_select_time">Select time</string>
<string name="material_timepicker_text_input_mode_description">Switch to text input mode for the time input.</string>
<string name="mtrl_badge_numberless_content_description">New notification</string>
<string name="mtrl_chip_close_icon_content_description">Remove %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">More than %1$d new notifications</string>
<string name="mtrl_picker_a11y_next_month">Change to next month</string>
<string name="mtrl_picker_a11y_prev_month">Change to previous month</string>
<string name="mtrl_picker_announce_current_range_selection">Start date selection: %1$s end date selection: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Current selection: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">none</string>
<string name="mtrl_picker_cancel">Cancel</string>
<string name="mtrl_picker_confirm">OK</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Select date</string>
<string name="mtrl_picker_date_header_unselected">Selected date</string>
<string name="mtrl_picker_day_of_week_column_header">Column of days: %1$s</string>
<string name="mtrl_picker_end_date_description">End date %1$s</string>
<string name="mtrl_picker_invalid_format">Invalid format.</string>
<string name="mtrl_picker_invalid_format_example">Example: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Use: %1$s</string>
<string name="mtrl_picker_invalid_range">Invalid range.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Navigate to current year %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">Navigate to year %1$d</string>
<string name="mtrl_picker_out_of_range">Out of range: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Start date %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s End date</string>
<string name="mtrl_picker_range_header_selected">%1$s %2$s</string>
<string name="mtrl_picker_range_header_title">Select range</string>
<string name="mtrl_picker_range_header_unselected">Start date End date</string>
<string name="mtrl_picker_save">Save</string>
<string name="mtrl_picker_start_date_description">Start date %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Date</string>
<string name="mtrl_picker_text_input_date_range_end_hint">End date</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Start date</string>
<string name="mtrl_picker_text_input_day_abbr">d</string>
<string name="mtrl_picker_text_input_month_abbr">m</string>
<string name="mtrl_picker_text_input_year_abbr">y</string>
<string name="mtrl_picker_today_description">Today %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Switch to calendar input mode</string>
<string name="mtrl_picker_toggle_to_day_selection">Tap to switch to calendar view</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Switch to text input mode</string>
<string name="mtrl_picker_toggle_to_year_selection">Tap to switch to year view</string>
<string name="mtrl_timepicker_cancel">Cancel</string>
<string name="mtrl_timepicker_confirm">OK</string>
<string name="password_toggle_content_description">Show password</string>
<string msgid="6264217191555673260" name="search_menu_title">"Search"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navigate home"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navigate up"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"More options"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Done"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"See all"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Choose an app"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"OFF"</string>
<string msgid="884982626291842264" name="abc_capital_on">"ON"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Search…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Clear query"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Search query"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Search"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Submit query"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Voice search"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Share with"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Collapse"</string>
<string msgid="6264217191555673260" name="search_menu_title">"Search"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,32 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2">
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navigate home"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navigate up"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"More options"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Done"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"See all"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Choose an app"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"OFF"</string>
<string msgid="884982626291842264" name="abc_capital_on">"ON"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"delete"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"enter"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Function+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Shift+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"space"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menu+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Search…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Clear query"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Search query"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Search"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Submit query"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Voice search"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Share with"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Share with <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Collapse"</string>
<string msgid="6264217191555673260" name="search_menu_title">"Search"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d notificación nueva</item>
<item quantity="other">%d notificaciones nuevas</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Navegar a la página principal"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Navegar hacia arriba"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Más opciones"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Listo"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Ver todas"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Elegir una app"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"DESACTIVAR"</string>
<string msgid="884982626291842264" name="abc_capital_on">"ACTIVAR"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt+"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl+"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"borrar"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"intro"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Función+"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta+"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Mayúscula+"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"espacio"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym+"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menú+"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Buscar…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Borrar consulta"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Búsqueda"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Buscar"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Enviar consulta"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Búsqueda por voz"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Compartir con"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Compartir con <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Contraer"</string>
<string name="bottomsheet_action_collapse">Contraer la hoja inferior</string>
<string name="bottomsheet_action_expand">Expandir la hoja inferior</string>
<string name="bottomsheet_action_expand_halfway">Expandir hasta la mitad</string>
<string name="bottomsheet_drag_handle_clicked">El control de arrastre se presionó dos veces</string>
<string name="bottomsheet_drag_handle_content_description">Controlador de arrastre</string>
<string name="character_counter_content_description">Caracteres ingresados: %1$d de %2$d</string>
<string name="character_counter_overflowed_content_description">Se excedió en %1$d el límite de caracteres de %2$d</string>
<string name="clear_text_end_icon_content_description">Borrar texto</string>
<string name="error_icon_content_description">Error</string>
<string name="exposed_dropdown_menu_content_description">Mostrar menú desplegable</string>
<string name="icon_content_description">Ícono de diálogo</string>
<string name="item_view_role_description">Pestaña</string>
<string name="material_clock_toggle_content_description">Selecciona a.m. o p.m.</string>
<string name="material_hour_24h_suffix">%1$s horas</string>
<string name="material_hour_selection">Seleccione la hora.</string>
<string name="material_hour_suffix">%1$s en punto</string>
<string name="material_minute_selection">Seleccionar minutos</string>
<string name="material_minute_suffix">%1$s minutos</string>
<string name="material_timepicker_am">a.m.</string>
<string name="material_timepicker_clock_mode_description">Cambia al modo de reloj para ingresar la hora.</string>
<string name="material_timepicker_hour">Hora</string>
<string name="material_timepicker_minute">Minuto</string>
<string name="material_timepicker_pm">p.m.</string>
<string name="material_timepicker_select_time">Seleccionar la hora</string>
<string name="material_timepicker_text_input_mode_description">Cambia al modo de entrada de texto para ingresar la hora.</string>
<string name="mtrl_badge_numberless_content_description">Notificación nueva</string>
<string name="mtrl_chip_close_icon_content_description">Quitar %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">Más de %1$d notificaciones nuevas</string>
<string name="mtrl_picker_a11y_next_month">Cambiar al mes siguiente</string>
<string name="mtrl_picker_a11y_prev_month">Cambiar al mes anterior</string>
<string name="mtrl_picker_announce_current_range_selection">Selección de fecha de inicio: %1$s Selección de fecha de finalización: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Selección actual: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">nada</string>
<string name="mtrl_picker_cancel">Cancelar</string>
<string name="mtrl_picker_confirm">Aceptar</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Seleccionar fecha</string>
<string name="mtrl_picker_date_header_unselected">Fecha seleccionada</string>
<string name="mtrl_picker_day_of_week_column_header">Columna de días: %1$s</string>
<string name="mtrl_picker_end_date_description">Fecha de finalización: %1$s</string>
<string name="mtrl_picker_invalid_format">Formato no válido</string>
<string name="mtrl_picker_invalid_format_example">Ejemplo: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Usar: %1$s</string>
<string name="mtrl_picker_invalid_range">El rango no es válido.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Navegar al año actual (%1$d)</string>
<string name="mtrl_picker_navigate_to_year_description">Navegar al año %1$d</string>
<string name="mtrl_picker_out_of_range">Fuera de rango: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Fecha de inicio - %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s - fecha de finalización</string>
<string name="mtrl_picker_range_header_selected">%1$s-%2$s</string>
<string name="mtrl_picker_range_header_title">Selecciona un período</string>
<string name="mtrl_picker_range_header_unselected">Fecha de inicio - fecha de finalización</string>
<string name="mtrl_picker_save">Guardar</string>
<string name="mtrl_picker_start_date_description">Fecha de inicio: %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Fecha</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Fecha de finalización</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Fecha de inicio</string>
<string name="mtrl_picker_text_input_day_abbr">d</string>
<string name="mtrl_picker_text_input_month_abbr">m</string>
<string name="mtrl_picker_text_input_year_abbr">a</string>
<string name="mtrl_picker_today_description">Hoy, %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Cambiar al modo de entrada de calendario</string>
<string name="mtrl_picker_toggle_to_day_selection">Presiona para cambiar a la vista de Calendario</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Cambiar al modo de entrada de texto</string>
<string name="mtrl_picker_toggle_to_year_selection">Presiona para cambiar a la vista de año</string>
<string name="mtrl_timepicker_cancel">Cancelar</string>
<string name="mtrl_timepicker_confirm">Aceptar</string>
<string name="password_toggle_content_description">Mostrar contraseña</string>
<string msgid="6264217191555673260" name="search_menu_title">"Buscar"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d notificación nueva</item>
<item quantity="other">%d notificaciones nuevas</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Ir a inicio"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Desplazarse hacia arriba"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Más opciones"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Hecho"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Ver todo"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Seleccionar una aplicación"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"DESACTIVADO"</string>
<string msgid="884982626291842264" name="abc_capital_on">"ACTIVADO"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt +"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"Suprimir"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"Intro"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Función +"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta +"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Mayús +"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"Espacio"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym +"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menú +"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Buscar…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Borrar consulta"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Consulta de búsqueda"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Buscar"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Enviar consulta"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Búsqueda por voz"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Compartir con"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Compartir con <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Ocultar"</string>
<string name="bottomsheet_action_collapse">Ocultar la hoja inferior</string>
<string name="bottomsheet_action_expand">Mostrar la hoja inferior</string>
<string name="bottomsheet_action_expand_halfway">Desplegar hasta la mitad</string>
<string name="bottomsheet_drag_handle_clicked">Controlador de arrastre tocado dos veces</string>
<string name="bottomsheet_drag_handle_content_description">Controlador de arrastre</string>
<string name="character_counter_content_description">Caracteres introducidos: %1$d de %2$d</string>
<string name="character_counter_overflowed_content_description">Límite de caracteres superado (%1$d de %2$d)</string>
<string name="clear_text_end_icon_content_description">Borrar texto</string>
<string name="error_icon_content_description">Error</string>
<string name="exposed_dropdown_menu_content_description">Mostrar menú desplegable</string>
<string name="icon_content_description">Icono del cuadro de diálogo</string>
<string name="item_view_role_description">Pestaña</string>
<string name="material_clock_toggle_content_description">Selecciona AM o PM</string>
<string name="material_hour_24h_suffix">%1$s horas</string>
<string name="material_hour_selection">Seleccionar hora</string>
<string name="material_hour_suffix">%1$s en punto</string>
<string name="material_minute_selection">Seleccionar minutos</string>
<string name="material_minute_suffix">%1$s minutos</string>
<string name="material_timepicker_am">A.M.</string>
<string name="material_timepicker_clock_mode_description">Cambia al modo de reloj para escribir la hora.</string>
<string name="material_timepicker_hour">Hora</string>
<string name="material_timepicker_minute">Minuto</string>
<string name="material_timepicker_pm">P.M.</string>
<string name="material_timepicker_select_time">Seleccionar la hora</string>
<string name="material_timepicker_text_input_mode_description">Cambia al modo de introducción de texto para escribir la hora.</string>
<string name="mtrl_badge_numberless_content_description">Notificación nueva</string>
<string name="mtrl_chip_close_icon_content_description">Retirar %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">Más de %1$d notificaciones nuevas</string>
<string name="mtrl_picker_a11y_next_month">Cambiar al mes siguiente</string>
<string name="mtrl_picker_a11y_prev_month">Cambiar al mes anterior</string>
<string name="mtrl_picker_announce_current_range_selection">Selección de fecha de inicio: %1$s Selección de fecha de finalización: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Selección actual: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">ninguna</string>
<string name="mtrl_picker_cancel">Cancelar</string>
<string name="mtrl_picker_confirm">Aceptar</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Selecciona una fecha</string>
<string name="mtrl_picker_date_header_unselected">Fecha seleccionada</string>
<string name="mtrl_picker_day_of_week_column_header">Columna de días: %1$s</string>
<string name="mtrl_picker_end_date_description">Fecha de finalización: %1$s</string>
<string name="mtrl_picker_invalid_format">Formato no válido.</string>
<string name="mtrl_picker_invalid_format_example">Ejemplo: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Usar: %1$s</string>
<string name="mtrl_picker_invalid_range">El periodo no es válido.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Ir al año actual, %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">Ir al año %1$d</string>
<string name="mtrl_picker_out_of_range">Fuera del periodo válido: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Fecha de inicio%1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$sFecha de finalización</string>
<string name="mtrl_picker_range_header_selected">%1$s %2$s</string>
<string name="mtrl_picker_range_header_title">Selecciona un periodo</string>
<string name="mtrl_picker_range_header_unselected">Fecha de inicioFecha de finalización</string>
<string name="mtrl_picker_save">Guardar</string>
<string name="mtrl_picker_start_date_description">Fecha de inicio: %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Fecha</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Fecha de finalización</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Fecha de inicio</string>
<string name="mtrl_picker_text_input_day_abbr">d</string>
<string name="mtrl_picker_text_input_month_abbr">m</string>
<string name="mtrl_picker_text_input_year_abbr">a</string>
<string name="mtrl_picker_today_description">Hoy, %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Cambiar al modo de introducción Calendario</string>
<string name="mtrl_picker_toggle_to_day_selection">Toca para cambiar a la vista de calendario</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Cambiar al modo de introducción Texto</string>
<string name="mtrl_picker_toggle_to_year_selection">Toca para cambiar a la vista de año</string>
<string name="mtrl_timepicker_cancel">Cancelar</string>
<string name="mtrl_timepicker_confirm">Aceptar</string>
<string name="password_toggle_content_description">Mostrar contraseña</string>
<string msgid="6264217191555673260" name="search_menu_title">"Buscar"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d uus märguanne</item>
<item quantity="other">%d uut märguannet</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Liigu avalehele"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Liigu üles"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Rohkem valikuid"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Valmis"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Kuva kõik"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Valige rakendus"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"VÄLJAS"</string>
<string msgid="884982626291842264" name="abc_capital_on">"SEES"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt +"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ctrl +"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"kustuta"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"sisestusklahv"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Funktsiooniklahv +"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta +"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Tõstuklahv +"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"tühik"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym +"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menüü +"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Otsige …"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Päringu tühistamine"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Otsingupäring"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Otsing"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Päringu esitamine"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Häälotsing"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Jaga:"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Jagamine rakendusega <ns1:g id="APPLICATION_NAME">%s</ns1:g>"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Ahendamine"</string>
<string name="bottomsheet_action_collapse">Alumise lehe ahendamine</string>
<string name="bottomsheet_action_expand">Alumise lehe laiendamine</string>
<string name="bottomsheet_action_expand_halfway">Laiendamine poolenisti</string>
<string name="bottomsheet_drag_handle_clicked">Lohistamispidet topeltpuudutati</string>
<string name="bottomsheet_drag_handle_content_description">Lohistamispide</string>
<string name="character_counter_content_description">Sisestatud tähemärgid: %1$d/%2$d</string>
<string name="character_counter_overflowed_content_description">Tähemärgipiirang on ületatud: %1$d/%2$d</string>
<string name="clear_text_end_icon_content_description">Kustuta tekst</string>
<string name="error_icon_content_description">Viga</string>
<string name="exposed_dropdown_menu_content_description">Kuva rippmenüü</string>
<string name="icon_content_description">Dialoogi ikoon</string>
<string name="item_view_role_description">Vaheleht</string>
<string name="material_clock_toggle_content_description">Valige AM või PM</string>
<string name="material_hour_24h_suffix">%1$s tundi</string>
<string name="material_hour_selection">Valige tund</string>
<string name="material_hour_suffix">Kell %1$s</string>
<string name="material_minute_selection">Minutite valimine</string>
<string name="material_minute_suffix">%1$s minutit</string>
<string name="material_timepicker_am">AM</string>
<string name="material_timepicker_clock_mode_description">Aktiveerige kellaaja sisestamiseks kellarežiim.</string>
<string name="material_timepicker_hour">Tunnid</string>
<string name="material_timepicker_minute">Minut</string>
<string name="material_timepicker_pm">PM</string>
<string name="material_timepicker_select_time">Aja valimine</string>
<string name="material_timepicker_text_input_mode_description">Aktiveerige kellaaja sisestamiseks tekstisisestusrežiim.</string>
<string name="mtrl_badge_numberless_content_description">Uus märguanne</string>
<string name="mtrl_chip_close_icon_content_description">Üksuse %1$s eemaldamine</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">Rohkem kui %1$d uut märguannet</string>
<string name="mtrl_picker_a11y_next_month">Vaheta järgmisele kuule</string>
<string name="mtrl_picker_a11y_prev_month">Vaheta eelmisele kuule</string>
<string name="mtrl_picker_announce_current_range_selection">Alguskuupäeva valik: %1$s. Lõppkuupäeva valik: %2$s.</string>
<string name="mtrl_picker_announce_current_selection">Praegune valik: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">puudub</string>
<string name="mtrl_picker_cancel">Tühista</string>
<string name="mtrl_picker_confirm">OK</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Valige kuupäev</string>
<string name="mtrl_picker_date_header_unselected">Valitud kuupäev</string>
<string name="mtrl_picker_day_of_week_column_header">Päevade veerg: %1$s</string>
<string name="mtrl_picker_end_date_description">Lõppkuupäev: %1$s</string>
<string name="mtrl_picker_invalid_format">Sobimatu vorming.</string>
<string name="mtrl_picker_invalid_format_example">Näide: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Kasutage: %1$s</string>
<string name="mtrl_picker_invalid_range">Sobimatu vahemik.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Navigeerige praegusele aastale %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">Mine aastasse %1$d</string>
<string name="mtrl_picker_out_of_range">Vahemikust väljas: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Alguskuupäev %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s lõppkuupäev</string>
<string name="mtrl_picker_range_header_selected">%1$s%2$s</string>
<string name="mtrl_picker_range_header_title">Valige vahemik</string>
<string name="mtrl_picker_range_header_unselected">Alguskuupäev lõppkuupäev</string>
<string name="mtrl_picker_save">Salvesta</string>
<string name="mtrl_picker_start_date_description">Alguskuupäev: %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Kuupäev</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Lõppkuupäev</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Alguskuupäev</string>
<string name="mtrl_picker_text_input_day_abbr">p</string>
<string name="mtrl_picker_text_input_month_abbr">k</string>
<string name="mtrl_picker_text_input_year_abbr">a</string>
<string name="mtrl_picker_today_description">Täna %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Lülitu kalendrisisestusrežiimile</string>
<string name="mtrl_picker_toggle_to_day_selection">Puudutage kalendrivaatele lülitumiseks</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Lülitu tekstisisestusrežiimile</string>
<string name="mtrl_picker_toggle_to_year_selection">Puudutage aastavaatele lülitumiseks</string>
<string name="mtrl_timepicker_cancel">Tühista</string>
<string name="mtrl_timepicker_confirm">OK</string>
<string name="password_toggle_content_description">Parooli kuvamine</string>
<string msgid="6264217191555673260" name="search_menu_title">"Otsing"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

@ -0,0 +1,104 @@
<?xml version="1.0" encoding="utf-8"?>
<resources xmlns:ns1="urn:oasis:names:tc:xliff:document:1.2" xmlns:ns2="http://schemas.android.com/tools">
<plurals name="mtrl_badge_content_description">
<item quantity="one">%d jakinarazpen berri</item>
<item quantity="other">%d jakinarazpen berri</item>
</plurals>
<string msgid="5976598919945601918" name="abc_action_bar_home_description">"Joan orri nagusira"</string>
<string msgid="8388173803310557296" name="abc_action_bar_up_description">"Joan gora"</string>
<string msgid="3937310113216875497" name="abc_action_menu_overflow_description">"Aukera gehiago"</string>
<string msgid="4692188335987374352" name="abc_action_mode_done">"Eginda"</string>
<string msgid="1189761859438369441" name="abc_activity_chooser_view_see_all">"Ikusi guztiak"</string>
<string msgid="2165779757652331008" name="abc_activitychooserview_choose_application">"Aukeratu aplikazio bat"</string>
<string msgid="4215997306490295099" name="abc_capital_off">"DESAKTIBATU"</string>
<string msgid="884982626291842264" name="abc_capital_on">"AKTIBATU"</string>
<string msgid="8833365367933412986" name="abc_menu_alt_shortcut_label">"Alt +"</string>
<string msgid="2223301931652355242" name="abc_menu_ctrl_shortcut_label">"Ktrl +"</string>
<string msgid="838001238306846836" name="abc_menu_delete_shortcut_label">"ezabatu"</string>
<string msgid="7986526966204849475" name="abc_menu_enter_shortcut_label">"sartu"</string>
<string msgid="375214403600139847" name="abc_menu_function_shortcut_label">"Funtzioa +"</string>
<string msgid="4192209724446364286" name="abc_menu_meta_shortcut_label">"Meta +"</string>
<string msgid="4741552369836443843" name="abc_menu_shift_shortcut_label">"Maius +"</string>
<string msgid="5473865519181928982" name="abc_menu_space_shortcut_label">"zuriunea"</string>
<string msgid="6180552449598693998" name="abc_menu_sym_shortcut_label">"Sym +"</string>
<string msgid="5520303668377388990" name="abc_prepend_shortcut_label">"Menua +"</string>
<string msgid="7208076849092622260" name="abc_search_hint">"Bilatu…"</string>
<string msgid="3741173234950517107" name="abc_searchview_description_clear">"Garbitu kontsulta"</string>
<string msgid="693312494995508443" name="abc_searchview_description_query">"Bilaketa-kontsulta"</string>
<string msgid="3417662926640357176" name="abc_searchview_description_search">"Bilatu"</string>
<string msgid="1486535517437947103" name="abc_searchview_description_submit">"Bidali kontsulta"</string>
<string msgid="2293578557972875415" name="abc_searchview_description_voice">"Ahozko bilaketa"</string>
<string msgid="8875138169939072951" name="abc_shareactionprovider_share_with">"Partekatu honekin"</string>
<string msgid="9055268688411532828" name="abc_shareactionprovider_share_with_application">"Partekatu <ns1:g id="APPLICATION_NAME">%s</ns1:g> aplikazioarekin"</string>
<string msgid="1656852541809559762" name="abc_toolbar_collapse_description">"Tolestu"</string>
<string name="bottomsheet_action_collapse">Tolestu pantailaren behealdean ainguratutako orria</string>
<string name="bottomsheet_action_expand">Zabaldu pantailaren behealdean ainguratutako orria</string>
<string name="bottomsheet_action_expand_halfway">Zabaldu erdiraino</string>
<string name="bottomsheet_drag_handle_clicked">Birritan sakatu da arrastatzeko kontrol-puntua</string>
<string name="bottomsheet_drag_handle_content_description">Arrastatzeko kontrol-puntua</string>
<string name="character_counter_content_description">%1$d/%2$d karaktere idatzi dira</string>
<string name="character_counter_overflowed_content_description">Karaktere-muga gainditu da: %1$d/%2$d</string>
<string name="clear_text_end_icon_content_description">Garbitu testua</string>
<string name="error_icon_content_description">Errorea</string>
<string name="exposed_dropdown_menu_content_description">Erakutsi goitibeherako menua</string>
<string name="icon_content_description">Leihoko ikonoa</string>
<string name="item_view_role_description">Fitxa</string>
<string name="material_clock_toggle_content_description">Hautatu AM edo PM</string>
<string name="material_hour_24h_suffix">%1$s ordu</string>
<string name="material_hour_selection">Hautatu ordua</string>
<string name="material_hour_suffix">%1$s(r)ak dira</string>
<string name="material_minute_selection">Hautatu minutuak</string>
<string name="material_minute_suffix">%1$s minutu</string>
<string name="material_timepicker_am">AM</string>
<string name="material_timepicker_clock_mode_description">Aldatu erloju modura ordua zehazteko.</string>
<string name="material_timepicker_hour">Ordua</string>
<string name="material_timepicker_minute">Minutua</string>
<string name="material_timepicker_pm">PM</string>
<string name="material_timepicker_select_time">Hautatu ordua</string>
<string name="material_timepicker_text_input_mode_description">Ordua idazteko, aldatu testua idazteko metodora.</string>
<string name="mtrl_badge_numberless_content_description">Jakinarazpen berria</string>
<string name="mtrl_chip_close_icon_content_description">Kendu %1$s</string>
<string name="mtrl_exceed_max_badge_number_content_description" ns2:ignore="PluralsCandidate">%1$d jakinarazpen berri baino gehiago</string>
<string name="mtrl_picker_a11y_next_month">Aldatu hurrengo hilabetera</string>
<string name="mtrl_picker_a11y_prev_month">Aldatu aurreko hilabetera</string>
<string name="mtrl_picker_announce_current_range_selection">Hasiera-dataren hautapena: %1$s, amaiera-dataren hautapena: %2$s</string>
<string name="mtrl_picker_announce_current_selection">Oraingo hautapena: %1$s</string>
<string name="mtrl_picker_announce_current_selection_none">bat ere ez</string>
<string name="mtrl_picker_cancel">Utzi</string>
<string name="mtrl_picker_confirm">Ados</string>
<string name="mtrl_picker_date_header_selected">%1$s</string>
<string name="mtrl_picker_date_header_title">Hautatu data</string>
<string name="mtrl_picker_date_header_unselected">Hautatutako data</string>
<string name="mtrl_picker_day_of_week_column_header">Egunen zutabea:%1$s</string>
<string name="mtrl_picker_end_date_description">Amaiera-data: %1$s</string>
<string name="mtrl_picker_invalid_format">Formatuak ez du balio.</string>
<string name="mtrl_picker_invalid_format_example">Adibidea: %1$s</string>
<string name="mtrl_picker_invalid_format_use">Erabili: %1$s</string>
<string name="mtrl_picker_invalid_range">Tarteak ez du balio.</string>
<string name="mtrl_picker_navigate_to_current_year_description">Joan aurtengo ikuspegira %1$d</string>
<string name="mtrl_picker_navigate_to_year_description">Joan %1$d. urtera</string>
<string name="mtrl_picker_out_of_range">Onartutako barrutitik kanpo: %1$s</string>
<string name="mtrl_picker_range_header_only_end_selected">Hasiera-data %1$s</string>
<string name="mtrl_picker_range_header_only_start_selected">%1$s Amaiera-data</string>
<string name="mtrl_picker_range_header_selected">%1$s-%2$s</string>
<string name="mtrl_picker_range_header_title">Hautatu barrutia</string>
<string name="mtrl_picker_range_header_unselected">Hasiera-data - Amaiera-data</string>
<string name="mtrl_picker_save">Gorde</string>
<string name="mtrl_picker_start_date_description">Hasiera-data: %1$s</string>
<string name="mtrl_picker_text_input_date_hint">Data</string>
<string name="mtrl_picker_text_input_date_range_end_hint">Amaiera-data</string>
<string name="mtrl_picker_text_input_date_range_start_hint">Hasiera-data</string>
<string name="mtrl_picker_text_input_day_abbr">e</string>
<string name="mtrl_picker_text_input_month_abbr">h</string>
<string name="mtrl_picker_text_input_year_abbr">u</string>
<string name="mtrl_picker_today_description">Gaur %1$s</string>
<string name="mtrl_picker_toggle_to_calendar_input_mode">Aldatu egutegiaren idazketa-metodora</string>
<string name="mtrl_picker_toggle_to_day_selection">Calendar-en ikuspegira aldatzeko, sakatu hau</string>
<string name="mtrl_picker_toggle_to_text_input_mode">Aldatu testua idazteko modura</string>
<string name="mtrl_picker_toggle_to_year_selection">Urteko ikuspegira aldatzeko, sakatu hau</string>
<string name="mtrl_timepicker_cancel">Utzi</string>
<string name="mtrl_timepicker_confirm">Ados</string>
<string name="password_toggle_content_description">Erakutsi pasahitza</string>
<string msgid="6264217191555673260" name="search_menu_title">"Bilatu"</string>
<string msgid="6277540029070332960" name="status_bar_notification_info_overflow">"999+"</string>
</resources>

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save