Compare commits

..

13 Commits

Author SHA1 Message Date
Lappland333 4f9344714e update
8 months ago
Lappland333 e467f7acb3 update
8 months ago
Lappland333 6ef591ada7 电子文档
8 months ago
Lappland333 d1a8854d42 1
9 months ago
Lappland333 9057a4b2f7 1
9 months ago
Lappland333 6e2b7708f3 111
9 months ago
Lappland333 8a2651cd0d 111
9 months ago
Lappland333 33da0ec510 temp
10 months ago
Lappland333 1fea7b131b import project
10 months ago
Lappland333 c6ed3be8ef Create readme.md
10 months ago
Lappland333 bcdd09f6ee Delete README.md
10 months ago
Lappland333 5726dfa73a 整理main分支文件结构
11 months ago
p9fzr4vik 05695faca7 Add nothing.md
12 months ago

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

@ -1,307 +0,0 @@
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"); }
}
}

@ -1,371 +0,0 @@
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"); }
}
}

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

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

Binary file not shown.

@ -1,18 +1,32 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<<<<<<< Updated upstream
<<<<<<< Updated upstream
<component name="GradleMigrationSettings" migrationVersion="1" />
=======
>>>>>>> Stashed changes
=======
<component name="GradleMigrationSettings" migrationVersion="1" />
>>>>>>> Stashed changes
<component name="GradleSettings">
<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>
<option name="testRunner" value="CHOOSE_PER_TEST" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="gradleJvm" value="#GRADLE_LOCAL_JAVA_HOME" />
<option name="gradleJvm" value="jbr-21" />
<<<<<<< Updated upstream
<option name="modules">
<set>
<option value="$PROJECT_DIR$" />
<option value="$PROJECT_DIR$/app" />
</set>
</option>
<<<<<<< Updated upstream
=======
>>>>>>> Stashed changes
=======
>>>>>>> Stashed changes
<option name="resolveExternalAnnotations" value="false" />
</GradleProjectSettings>
</option>
</component>

@ -1,6 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ExternalStorageConfigurationManager" enabled="true" />
<<<<<<< Updated upstream
<<<<<<< Updated upstream
<<<<<<< Updated upstream
<component name="ProjectInspectionProfilesVisibleTreeState">
<entry key="Project Default">
<profile-state>
@ -18,4 +20,10 @@
<component name="ProjectType">
<option name="id" value="Android" />
</component>
=======
>>>>>>> Stashed changes
=======
>>>>>>> Stashed changes
=======
>>>>>>> Stashed changes
</project>

@ -5,10 +5,7 @@
</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" />
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
@ -18,12 +15,29 @@
<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="ExecutionTargetManager" SELECTED_TARGET="device_and_snapshot_combo_box_target[]" />
<component name="ExternalProjectsData">
<projectState path="$PROJECT_DIR$">
<ProjectState />
</projectState>
</component>
<component name="ExternalProjectsManager">
<system id="GRADLE">
<state>
<projects_view>
<tree_state>
<expand>
<path>
<item name="" type="6a2764b6:ExternalProjectsStructure$RootNode" />
<item name="My Application" type="f1a62948:ProjectNode" />
</path>
</expand>
<select />
</tree_state>
</projects_view>
</state>
</system>
</component>
<component name="Git.Settings">
<option name="RECENT_GIT_ROOT_PATH" value="$PROJECT_DIR$" />
</component>
@ -35,26 +49,43 @@
<option name="hideEmptyMiddlePackages" value="true" />
<option name="showLibraryContents" value="true" />
</component>
<<<<<<< Updated upstream
<component name="PropertiesComponent">{
&quot;keyToString&quot;: {
&quot;Android App.app.executor&quot;: &quot;Run&quot;,
&quot;RunOnceActivity.ShowReadmeOnStart&quot;: &quot;true&quot;,
&quot;RunOnceActivity.cidr.known.project.marker&quot;: &quot;true&quot;,
&quot;RunOnceActivity.readMode.enableVisualFormatting&quot;: &quot;true&quot;,
&quot;android.gradle.sync.needed&quot;: &quot;true&quot;,
&quot;cf.first.check.clang-format&quot;: &quot;false&quot;,
&quot;cidr.known.project.marker&quot;: &quot;true&quot;,
&quot;git-widget-placeholder&quot;: &quot;cxy__branch&quot;,
&quot;ignore.virus.scanning.warn.message&quot;: &quot;true&quot;,
&quot;kotlin-language-version-configured&quot;: &quot;true&quot;,
&quot;last_opened_file_path&quot;: &quot;E:/temp&quot;,
&quot;settings.editor.selected.configurable&quot;: &quot;com.intellij.platform.ide.impl.presentationAssistant.PresentationAssistantConfigurable&quot;
=======
<component name="PropertiesComponent"><![CDATA[{
"keyToString": {
"Android App.app.executor": "Run",
"RunOnceActivity.ShowReadmeOnStart": "true",
"RunOnceActivity.cidr.known.project.marker": "true",
"RunOnceActivity.readMode.enableVisualFormatting": "true",
"android.gradle.sync.needed": "true",
"cf.first.check.clang-format": "false",
"cidr.known.project.marker": "true",
"git-widget-placeholder": "cxy__branch",
"git-widget-placeholder": "main",
"ignore.virus.scanning.warn.message": "true",
"kotlin-language-version-configured": "true",
"last_opened_file_path": "E:/temp"
>>>>>>> Stashed changes
}
}]]></component>
}</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_APK_FROM_BUNDLE" value="true" />
<option name="DEPLOY_AS_INSTANT" value="false" />
<option name="ARTIFACT_NAME" value="" />
<option name="PM_INSTALL_OPTIONS" value="" />
@ -133,4 +164,15 @@
</task>
<servers />
</component>
<component name="Vcs.Log.Tabs.Properties">
<option name="TAB_STATES">
<map>
<entry key="MAIN">
<value>
<State />
</value>
</entry>
</map>
</option>
</component>
</project>

@ -1,384 +0,0 @@
/*
* Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.micode.notes.tool;
import android.content.ContentProviderOperation;
import android.content.ContentProviderResult;
import android.content.ContentResolver;
import android.content.ContentUris;
import android.content.ContentValues;
import android.content.OperationApplicationException;
import android.database.Cursor;
import android.os.RemoteException;
import android.util.Log;
import net.micode.notes.data.Notes;
import net.micode.notes.data.Notes.CallNote;
import net.micode.notes.data.Notes.NoteColumns;
import net.micode.notes.ui.NotesListAdapter.AppWidgetAttribute;
import java.util.ArrayList;
import java.util.HashSet;
/**
*
*
*/
public class DataUtils {
public static final String TAG = "DataUtils";
/**
*
* @param resolver
* @param ids ID
* @return
*/
public static boolean batchDeleteNotes(ContentResolver resolver, HashSet<Long> ids) {
if (ids == null) {
Log.d(TAG, "the ids is null");
return true;
}
if (ids.size() == 0) {
Log.d(TAG, "no id is in the hashset");
return true;
}
ArrayList<ContentProviderOperation> operationList = new ArrayList<ContentProviderOperation>();
for (long id : ids) {
// 跳过系统根文件夹,防止删除系统数据
if(id == Notes.ID_ROOT_FOLDER) {
Log.e(TAG, "Don't delete system folder root");
continue;
}
// 构建删除操作
ContentProviderOperation.Builder builder = ContentProviderOperation
.newDelete(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, id));
operationList.add(builder.build());
}
// 执行批量操作
try {
ContentProviderResult[] results = resolver.applyBatch(Notes.AUTHORITY, operationList);
if (results == null || results.length == 0 || results[0] == null) {
Log.d(TAG, "delete notes failed, ids:" + ids.toString());
return false;
}
return true;
} catch (RemoteException e) {
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
} catch (OperationApplicationException e) {
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
}
return false;
}
/**
*
* @param resolver
* @param id ID
* @param srcFolderId ID
* @param desFolderId ID
*/
public static void moveNoteToFoler(ContentResolver resolver, long id, long srcFolderId, long desFolderId) {
ContentValues values = new ContentValues();
values.put(NoteColumns.PARENT_ID, desFolderId); // 设置新父文件夹ID
values.put(NoteColumns.ORIGIN_PARENT_ID, srcFolderId); // 记录原始父文件夹ID
values.put(NoteColumns.LOCAL_MODIFIED, 1); // 标记为本地修改
resolver.update(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, id), values, null, null);
}
/**
*
* @param resolver
* @param ids ID
* @param folderId ID
* @return
*/
public static boolean batchMoveToFolder(ContentResolver resolver, HashSet<Long> ids,
long folderId) {
if (ids == null) {
Log.d(TAG, "the ids is null");
return true;
}
ArrayList<ContentProviderOperation> operationList = new ArrayList<ContentProviderOperation>();
for (long id : ids) {
// 构建更新操作修改父文件夹ID
ContentProviderOperation.Builder builder = ContentProviderOperation
.newUpdate(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, id));
builder.withValue(NoteColumns.PARENT_ID, folderId);
builder.withValue(NoteColumns.LOCAL_MODIFIED, 1);
operationList.add(builder.build());
}
// 执行批量操作
try {
ContentProviderResult[] results = resolver.applyBatch(Notes.AUTHORITY, operationList);
if (results == null || results.length == 0 || results[0] == null) {
Log.d(TAG, "delete notes failed, ids:" + ids.toString());
return false;
}
return true;
} catch (RemoteException e) {
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
} catch (OperationApplicationException e) {
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
}
return false;
}
/**
*
* @param resolver
* @return
*/
public static int getUserFolderCount(ContentResolver resolver) {
// 查询类型为文件夹且非垃圾桶的记录数
Cursor cursor =resolver.query(Notes.CONTENT_NOTE_URI,
new String[] { "COUNT(*)" },
NoteColumns.TYPE + "=? AND " + NoteColumns.PARENT_ID + "<>?",
new String[] { String.valueOf(Notes.TYPE_FOLDER), String.valueOf(Notes.ID_TRASH_FOLER)},
null);
int count = 0;
if(cursor != null) {
if(cursor.moveToFirst()) {
try {
count = cursor.getInt(0);
} catch (IndexOutOfBoundsException e) {
Log.e(TAG, "get folder count failed:" + e.toString());
} finally {
cursor.close();
}
}
}
return count;
}
/**
*
* @param resolver
* @param noteId ID
* @param type
* @return
*/
public static boolean visibleInNoteDatabase(ContentResolver resolver, long noteId, int type) {
Cursor cursor = resolver.query(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, noteId),
null,
NoteColumns.TYPE + "=? AND " + NoteColumns.PARENT_ID + "<>" + Notes.ID_TRASH_FOLER,
new String [] {String.valueOf(type)},
null);
boolean exist = false;
if (cursor != null) {
if (cursor.getCount() > 0) {
exist = true;
}
cursor.close();
}
return exist;
}
/**
*
* @param resolver
* @param noteId ID
* @return
*/
public static boolean existInNoteDatabase(ContentResolver resolver, long noteId) {
Cursor cursor = resolver.query(ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, noteId),
null, null, null, null);
boolean exist = false;
if (cursor != null) {
if (cursor.getCount() > 0) {
exist = true;
}
cursor.close();
}
return exist;
}
/**
*
* @param resolver
* @param dataId ID
* @return
*/
public static boolean existInDataDatabase(ContentResolver resolver, long dataId) {
Cursor cursor = resolver.query(ContentUris.withAppendedId(Notes.CONTENT_DATA_URI, dataId),
null, null, null, null);
boolean exist = false;
if (cursor != null) {
if (cursor.getCount() > 0) {
exist = true;
}
cursor.close();
}
return exist;
}
/**
*
* @param resolver
* @param name
* @return
*/
public static boolean checkVisibleFolderName(ContentResolver resolver, String name) {
Cursor cursor = resolver.query(Notes.CONTENT_NOTE_URI, null,
NoteColumns.TYPE + "=" + Notes.TYPE_FOLDER +
" AND " + NoteColumns.PARENT_ID + "<>" + Notes.ID_TRASH_FOLER +
" AND " + NoteColumns.SNIPPET + "=?",
new String[] { name }, null);
boolean exist = false;
if(cursor != null) {
if(cursor.getCount() > 0) {
exist = true;
}
cursor.close();
}
return exist;
}
/**
* Widget
* @param resolver
* @param folderId ID
* @return Widget
*/
public static HashSet<AppWidgetAttribute> getFolderNoteWidget(ContentResolver resolver, long folderId) {
Cursor c = resolver.query(Notes.CONTENT_NOTE_URI,
new String[] { NoteColumns.WIDGET_ID, NoteColumns.WIDGET_TYPE },
NoteColumns.PARENT_ID + "=?",
new String[] { String.valueOf(folderId) },
null);
HashSet<AppWidgetAttribute> set = null;
if (c != null) {
if (c.moveToFirst()) {
set = new HashSet<AppWidgetAttribute>();
do {
try {
AppWidgetAttribute widget = new AppWidgetAttribute();
widget.widgetId = c.getInt(0);
widget.widgetType = c.getInt(1);
set.add(widget);
} catch (IndexOutOfBoundsException e) {
Log.e(TAG, e.toString());
}
} while (c.moveToNext());
}
c.close();
}
return set;
}
/**
* ID
* @param resolver
* @param noteId ID
* @return
*/
public static String getCallNumberByNoteId(ContentResolver resolver, long noteId) {
Cursor cursor = resolver.query(Notes.CONTENT_DATA_URI,
new String [] { CallNote.PHONE_NUMBER },
CallNote.NOTE_ID + "=? AND " + CallNote.MIME_TYPE + "=?",
new String [] { String.valueOf(noteId), CallNote.CONTENT_ITEM_TYPE },
null);
if (cursor != null && cursor.moveToFirst()) {
try {
return cursor.getString(0);
} catch (IndexOutOfBoundsException e) {
Log.e(TAG, "Get call number fails " + e.toString());
} finally {
cursor.close();
}
}
return "";
}
/**
* ID
* @param resolver
* @param phoneNumber
* @param callDate
* @return ID
*/
public static long getNoteIdByPhoneNumberAndCallDate(ContentResolver resolver, String phoneNumber, long callDate) {
Cursor cursor = resolver.query(Notes.CONTENT_DATA_URI,
new String [] { CallNote.NOTE_ID },
CallNote.CALL_DATE + "=? AND " + CallNote.MIME_TYPE + "=? AND PHONE_NUMBERS_EQUAL("
+ CallNote.PHONE_NUMBER + ",?)",
new String [] { String.valueOf(callDate), CallNote.CONTENT_ITEM_TYPE, phoneNumber },
null);
if (cursor != null) {
if (cursor.moveToFirst()) {
try {
return cursor.getLong(0);
} catch (IndexOutOfBoundsException e) {
Log.e(TAG, "Get call note id fails " + e.toString());
}
}
cursor.close();
}
return 0;
}
/**
* ID
* @param resolver
* @param noteId ID
* @return
*/
public static String getSnippetById(ContentResolver resolver, long noteId) {
Cursor cursor = resolver.query(Notes.CONTENT_NOTE_URI,
new String [] { NoteColumns.SNIPPET },
NoteColumns.ID + "=?",
new String [] { String.valueOf(noteId)},
null);
if (cursor != null) {
String snippet = "";
if (cursor.moveToFirst()) {
snippet = cursor.getString(0);
}
cursor.close();
return snippet;
}
throw new IllegalArgumentException("Note is not found with id: " + noteId);
}
/**
*
* @param snippet
* @return
*/
public static String getFormattedSnippet(String snippet) {
if (snippet != null) {
snippet = snippet.trim();
int index = snippet.indexOf('\n');
if (index != -1) {
snippet = snippet.substring(0, index);
}
}
return snippet;
}
}

@ -1,558 +0,0 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
=========================================================================
This project includes Public Suffix List copied from
<https://publicsuffix.org/list/effective_tld_names.dat>
licensed under the terms of the Mozilla Public License, v. 2.0
Full license text: <http://mozilla.org/MPL/2.0/>
Mozilla Public License Version 2.0
==================================
1. Definitions
--------------
1.1. "Contributor"
means each individual or legal entity that creates, contributes to
the creation of, or owns Covered Software.
1.2. "Contributor Version"
means the combination of the Contributions of others (if any) used
by a Contributor and that particular Contributor's Contribution.
1.3. "Contribution"
means Covered Software of a particular Contributor.
1.4. "Covered Software"
means Source Code Form to which the initial Contributor has attached
the notice in Exhibit A, the Executable Form of such Source Code
Form, and Modifications of such Source Code Form, in each case
including portions thereof.
1.5. "Incompatible With Secondary Licenses"
means
(a) that the initial Contributor has attached the notice described
in Exhibit B to the Covered Software; or
(b) that the Covered Software was made available under the terms of
version 1.1 or earlier of the License, but not also under the
terms of a Secondary License.
1.6. "Executable Form"
means any form of the work other than Source Code Form.
1.7. "Larger Work"
means a work that combines Covered Software with other material, in
a separate file or files, that is not Covered Software.
1.8. "License"
means this document.
1.9. "Licensable"
means having the right to grant, to the maximum extent possible,
whether at the time of the initial grant or subsequently, any and
all of the rights conveyed by this License.
1.10. "Modifications"
means any of the following:
(a) any file in Source Code Form that results from an addition to,
deletion from, or modification of the contents of Covered
Software; or
(b) any new file in Source Code Form that contains any Covered
Software.
1.11. "Patent Claims" of a Contributor
means any patent claim(s), including without limitation, method,
process, and apparatus claims, in any patent Licensable by such
Contributor that would be infringed, but for the grant of the
License, by the making, using, selling, offering for sale, having
made, import, or transfer of either its Contributions or its
Contributor Version.
1.12. "Secondary License"
means either the GNU General Public License, Version 2.0, the GNU
Lesser General Public License, Version 2.1, the GNU Affero General
Public License, Version 3.0, or any later versions of those
licenses.
1.13. "Source Code Form"
means the form of the work preferred for making modifications.
1.14. "You" (or "Your")
means an individual or a legal entity exercising rights under this
License. For legal entities, "You" includes any entity that
controls, is controlled by, or is under common control with You. For
purposes of this definition, "control" means (a) the power, direct
or indirect, to cause the direction or management of such entity,
whether by contract or otherwise, or (b) ownership of more than
fifty percent (50%) of the outstanding shares or beneficial
ownership of such entity.
2. License Grants and Conditions
--------------------------------
2.1. Grants
Each Contributor hereby grants You a world-wide, royalty-free,
non-exclusive license:
(a) under intellectual property rights (other than patent or trademark)
Licensable by such Contributor to use, reproduce, make available,
modify, display, perform, distribute, and otherwise exploit its
Contributions, either on an unmodified basis, with Modifications, or
as part of a Larger Work; and
(b) under Patent Claims of such Contributor to make, use, sell, offer
for sale, have made, import, and otherwise transfer either its
Contributions or its Contributor Version.
2.2. Effective Date
The licenses granted in Section 2.1 with respect to any Contribution
become effective for each Contribution on the date the Contributor first
distributes such Contribution.
2.3. Limitations on Grant Scope
The licenses granted in this Section 2 are the only rights granted under
this License. No additional rights or licenses will be implied from the
distribution or licensing of Covered Software under this License.
Notwithstanding Section 2.1(b) above, no patent license is granted by a
Contributor:
(a) for any code that a Contributor has removed from Covered Software;
or
(b) for infringements caused by: (i) Your and any other third party's
modifications of Covered Software, or (ii) the combination of its
Contributions with other software (except as part of its Contributor
Version); or
(c) under Patent Claims infringed by Covered Software in the absence of
its Contributions.
This License does not grant any rights in the trademarks, service marks,
or logos of any Contributor (except as may be necessary to comply with
the notice requirements in Section 3.4).
2.4. Subsequent Licenses
No Contributor makes additional grants as a result of Your choice to
distribute the Covered Software under a subsequent version of this
License (see Section 10.2) or under the terms of a Secondary License (if
permitted under the terms of Section 3.3).
2.5. Representation
Each Contributor represents that the Contributor believes its
Contributions are its original creation(s) or it has sufficient rights
to grant the rights to its Contributions conveyed by this License.
2.6. Fair Use
This License is not intended to limit any rights You have under
applicable copyright doctrines of fair use, fair dealing, or other
equivalents.
2.7. Conditions
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
in Section 2.1.
3. Responsibilities
-------------------
3.1. Distribution of Source Form
All distribution of Covered Software in Source Code Form, including any
Modifications that You create or to which You contribute, must be under
the terms of this License. You must inform recipients that the Source
Code Form of the Covered Software is governed by the terms of this
License, and how they can obtain a copy of this License. You may not
attempt to alter or restrict the recipients' rights in the Source Code
Form.
3.2. Distribution of Executable Form
If You distribute Covered Software in Executable Form then:
(a) such Covered Software must also be made available in Source Code
Form, as described in Section 3.1, and You must inform recipients of
the Executable Form how they can obtain a copy of such Source Code
Form by reasonable means in a timely manner, at a charge no more
than the cost of distribution to the recipient; and
(b) You may distribute such Executable Form under the terms of this
License, or sublicense it under different terms, provided that the
license for the Executable Form does not attempt to limit or alter
the recipients' rights in the Source Code Form under this License.
3.3. Distribution of a Larger Work
You may create and distribute a Larger Work under terms of Your choice,
provided that You also comply with the requirements of this License for
the Covered Software. If the Larger Work is a combination of Covered
Software with a work governed by one or more Secondary Licenses, and the
Covered Software is not Incompatible With Secondary Licenses, this
License permits You to additionally distribute such Covered Software
under the terms of such Secondary License(s), so that the recipient of
the Larger Work may, at their option, further distribute the Covered
Software under the terms of either this License or such Secondary
License(s).
3.4. Notices
You may not remove or alter the substance of any license notices
(including copyright notices, patent notices, disclaimers of warranty,
or limitations of liability) contained within the Source Code Form of
the Covered Software, except that You may alter any license notices to
the extent required to remedy known factual inaccuracies.
3.5. Application of Additional Terms
You may choose to offer, and to charge a fee for, warranty, support,
indemnity or liability obligations to one or more recipients of Covered
Software. However, You may do so only on Your own behalf, and not on
behalf of any Contributor. You must make it absolutely clear that any
such warranty, support, indemnity, or liability obligation is offered by
You alone, and You hereby agree to indemnify every Contributor for any
liability incurred by such Contributor as a result of warranty, support,
indemnity or liability terms You offer. You may include additional
disclaimers of warranty and limitations of liability specific to any
jurisdiction.
4. Inability to Comply Due to Statute or Regulation
---------------------------------------------------
If it is impossible for You to comply with any of the terms of this
License with respect to some or all of the Covered Software due to
statute, judicial order, or regulation then You must: (a) comply with
the terms of this License to the maximum extent possible; and (b)
describe the limitations and the code they affect. Such description must
be placed in a text file included with all distributions of the Covered
Software under this License. Except to the extent prohibited by statute
or regulation, such description must be sufficiently detailed for a
recipient of ordinary skill to be able to understand it.
5. Termination
--------------
5.1. The rights granted under this License will terminate automatically
if You fail to comply with any of its terms. However, if You become
compliant, then the rights granted under this License from a particular
Contributor are reinstated (a) provisionally, unless and until such
Contributor explicitly and finally terminates Your grants, and (b) on an
ongoing basis, if such Contributor fails to notify You of the
non-compliance by some reasonable means prior to 60 days after You have
come back into compliance. Moreover, Your grants from a particular
Contributor are reinstated on an ongoing basis if such Contributor
notifies You of the non-compliance by some reasonable means, this is the
first time You have received notice of non-compliance with this License
from such Contributor, and You become compliant prior to 30 days after
Your receipt of the notice.
5.2. If You initiate litigation against any entity by asserting a patent
infringement claim (excluding declaratory judgment actions,
counter-claims, and cross-claims) alleging that a Contributor Version
directly or indirectly infringes any patent, then the rights granted to
You by any and all Contributors for the Covered Software under Section
2.1 of this License shall terminate.
5.3. In the event of termination under Sections 5.1 or 5.2 above, all
end user license agreements (excluding distributors and resellers) which
have been validly granted by You or Your distributors under this License
prior to termination shall survive termination.
************************************************************************
* *
* 6. Disclaimer of Warranty *
* ------------------------- *
* *
* Covered Software is provided under this License on an "as is" *
* basis, without warranty of any kind, either expressed, implied, or *
* statutory, including, without limitation, warranties that the *
* Covered Software is free of defects, merchantable, fit for a *
* particular purpose or non-infringing. The entire risk as to the *
* quality and performance of the Covered Software is with You. *
* Should any Covered Software prove defective in any respect, You *
* (not any Contributor) assume the cost of any necessary servicing, *
* repair, or correction. This disclaimer of warranty constitutes an *
* essential part of this License. No use of any Covered Software is *
* authorized under this License except under this disclaimer. *
* *
************************************************************************
************************************************************************
* *
* 7. Limitation of Liability *
* -------------------------- *
* *
* Under no circumstances and under no legal theory, whether tort *
* (including negligence), contract, or otherwise, shall any *
* Contributor, or anyone who distributes Covered Software as *
* permitted above, be liable to You for any direct, indirect, *
* special, incidental, or consequential damages of any character *
* including, without limitation, damages for lost profits, loss of *
* goodwill, work stoppage, computer failure or malfunction, or any *
* and all other commercial damages or losses, even if such party *
* shall have been informed of the possibility of such damages. This *
* limitation of liability shall not apply to liability for death or *
* personal injury resulting from such party's negligence to the *
* extent applicable law prohibits such limitation. Some *
* jurisdictions do not allow the exclusion or limitation of *
* incidental or consequential damages, so this exclusion and *
* limitation may not apply to You. *
* *
************************************************************************
8. Litigation
-------------
Any litigation relating to this License may be brought only in the
courts of a jurisdiction where the defendant maintains its principal
place of business and such litigation shall be governed by laws of that
jurisdiction, without reference to its conflict-of-law provisions.
Nothing in this Section shall prevent a party's ability to bring
cross-claims or counter-claims.
9. Miscellaneous
----------------
This License represents the complete agreement concerning the subject
matter hereof. If any provision of this License is held to be
unenforceable, such provision shall be reformed only to the extent
necessary to make it enforceable. Any law or regulation which provides
that the language of a contract shall be construed against the drafter
shall not be used to construe this License against a Contributor.
10. Versions of the License
---------------------------
10.1. New Versions
Mozilla Foundation is the license steward. Except as provided in Section
10.3, no one other than the license steward has the right to modify or
publish new versions of this License. Each version will be given a
distinguishing version number.
10.2. Effect of New Versions
You may distribute the Covered Software under the terms of the version
of the License under which You originally received the Covered Software,
or under the terms of any subsequent version published by the license
steward.
10.3. Modified Versions
If you create software not governed by this License, and you want to
create a new license for such software, you may create and use a
modified version of this License if you rename the license and remove
any references to the name of the license steward (except to note that
such modified license differs from this License).
10.4. Distributing Source Code Form that is Incompatible With Secondary
Licenses
If You choose to distribute Source Code Form that is Incompatible With
Secondary Licenses under the terms of this version of the License, the
notice described in Exhibit B of this License must be attached.
Exhibit A - Source Code Form License Notice
-------------------------------------------
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
If it is not possible or desirable to put the notice in a particular
file, then You may include the notice in a location (such as a LICENSE
file in a relevant directory) where a recipient would be likely to look
for such a notice.
You may add additional accurate notices of copyright ownership.
Exhibit B - "Incompatible With Secondary Licenses" Notice
---------------------------------------------------------
This Source Code Form is "Incompatible With Secondary Licenses", as
defined by the Mozilla Public License, v. 2.0.

@ -1,6 +0,0 @@
Apache HttpComponents Client
Copyright 1999-2021 The Apache Software Foundation
This product includes software developed at
The Apache Software Foundation (http://www.apache.org/).

@ -1,316 +0,0 @@
/*
* Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.micode.notes.model;
import android.content.ContentProviderOperation;
import android.content.ContentProviderResult;
import android.content.ContentValues;
import android.content.Context;
import android.content.OperationApplicationException;
import android.net.Uri;
import android.os.RemoteException;
import android.util.Log;
import net.micode.notes.data.Notes;
import net.micode.notes.data.Notes.CallNote;
import net.micode.notes.data.Notes.DataColumns;
import net.micode.notes.data.Notes.NoteColumns;
import net.micode.notes.data.Notes.TextNote;
import java.util.ArrayList;
/**
*
* /
*/
public class Note {
// 存储笔记属性变更的内容值
private ContentValues mNoteDiffValues;
// 存储笔记关联的详细数据(文本/通话)
private NoteData mNoteData;
private static final String TAG = "Note";
/**
* ID
* @param context
* @param folderId ID
* @return ID
*/
public static synchronized long getNewNoteId(Context context, long folderId) {
// 初始化笔记基础属性
ContentValues values = new ContentValues();
long createdTime = System.currentTimeMillis();
values.put(NoteColumns.CREATED_DATE, createdTime);
values.put(NoteColumns.MODIFIED_DATE, createdTime);
values.put(NoteColumns.TYPE, Notes.TYPE_NOTE); // 普通笔记类型
values.put(NoteColumns.LOCAL_MODIFIED, 1); // 标记为本地修改
values.put(NoteColumns.PARENT_ID, folderId); // 所属文件夹ID
// 插入数据库获取URI
Uri uri = context.getContentResolver().insert(Notes.CONTENT_NOTE_URI, values);
// 从URI中解析笔记ID
long noteId = 0;
try {
noteId = Long.valueOf(uri.getPathSegments().get(1));
} catch (NumberFormatException e) {
Log.e(TAG, "Get note id error :" + e.toString());
noteId = 0;
}
if (noteId == -1) {
throw new IllegalStateException("Wrong note id:" + noteId);
}
return noteId;
}
/**
*
*/
public Note() {
mNoteDiffValues = new ContentValues();
mNoteData = new NoteData();
}
/**
*
* @param key
* @param value
*/
public void setNoteValue(String key, String value) {
mNoteDiffValues.put(key, value);
// 标记为本地修改并更新修改时间
mNoteDiffValues.put(NoteColumns.LOCAL_MODIFIED, 1);
mNoteDiffValues.put(NoteColumns.MODIFIED_DATE, System.currentTimeMillis());
}
/**
*
* @param key
* @param value
*/
public void setTextData(String key, String value) {
mNoteData.setTextData(key, value);
}
// 以下为文本/通话数据ID的设置与获取方法
public void setTextDataId(long id) {
mNoteData.setTextDataId(id);
}
public long getTextDataId() {
return mNoteData.mTextDataId;
}
public void setCallDataId(long id) {
mNoteData.setCallDataId(id);
}
public void setCallData(String key, String value) {
mNoteData.setCallData(key, value);
}
/**
*
* @return true
*/
public boolean isLocalModified() {
return mNoteDiffValues.size() > 0 || mNoteData.isLocalModified();
}
/**
*
* @param context
* @param noteId ID
* @return
*/
public boolean syncNote(Context context, long noteId) {
if (noteId <= 0) {
throw new IllegalArgumentException("Wrong note id:" + noteId);
}
// 无修改时直接返回成功
if (!isLocalModified()) {
return true;
}
/**
*
* 使
*/
if (context.getContentResolver().update(
ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, noteId), mNoteDiffValues, null,
null) == 0) {
Log.e(TAG, "Update note error, should not happen");
}
mNoteDiffValues.clear(); // 清空已同步的修改
// 同步关联的文本/通话数据
if (mNoteData.isLocalModified()
&& (mNoteData.pushIntoContentResolver(context, noteId) == null)) {
return false;
}
return true;
}
/**
* /
*
*/
private class NoteData {
private long mTextDataId; // 文本数据ID
private ContentValues mTextDataValues; // 文本数据值
private long mCallDataId; // 通话数据ID
private ContentValues mCallDataValues; // 通话数据值
private static final String TAG = "NoteData";
/**
*
*/
public NoteData() {
mTextDataValues = new ContentValues();
mCallDataValues = new ContentValues();
mTextDataId = 0;
mCallDataId = 0;
}
/**
*
*/
boolean isLocalModified() {
return mTextDataValues.size() > 0 || mCallDataValues.size() > 0;
}
// 以下为数据ID和数据值的设置方法带参数校验
void setTextDataId(long id) {
if(id <= 0) {
throw new IllegalArgumentException("Text data id should larger than 0");
}
mTextDataId = id;
}
void setCallDataId(long id) {
if (id <= 0) {
throw new IllegalArgumentException("Call data id should larger than 0");
}
mCallDataId = id;
}
void setCallData(String key, String value) {
mCallDataValues.put(key, value);
// 同时更新笔记的修改状态和时间
mNoteDiffValues.put(NoteColumns.LOCAL_MODIFIED, 1);
mNoteDiffValues.put(NoteColumns.MODIFIED_DATE, System.currentTimeMillis());
}
void setTextData(String key, String value) {
mTextDataValues.put(key, value);
// 同时更新笔记的修改状态和时间
mNoteDiffValues.put(NoteColumns.LOCAL_MODIFIED, 1);
mNoteDiffValues.put(NoteColumns.MODIFIED_DATE, System.currentTimeMillis());
}
/**
*
* @param context
* @param noteId ID
* @return URI
*/
Uri pushIntoContentResolver(Context context, long noteId) {
/**
*
*/
if (noteId <= 0) {
throw new IllegalArgumentException("Wrong note id:" + noteId);
}
ArrayList<ContentProviderOperation> operationList = new ArrayList<ContentProviderOperation>();
ContentProviderOperation.Builder builder = null;
/**
*
*/
if(mTextDataValues.size() > 0) {
mTextDataValues.put(DataColumns.NOTE_ID, noteId); // 关联笔记ID
if (mTextDataId == 0) {
// 新增文本数据
mTextDataValues.put(DataColumns.MIME_TYPE, TextNote.CONTENT_ITEM_TYPE);
Uri uri = context.getContentResolver().insert(Notes.CONTENT_DATA_URI,
mTextDataValues);
try {
setTextDataId(Long.valueOf(uri.getPathSegments().get(1)));
} catch (NumberFormatException e) {
Log.e(TAG, "Insert new text data fail with noteId" + noteId);
mTextDataValues.clear();
return null;
}
} else {
// 更新现有文本数据
builder = ContentProviderOperation.newUpdate(ContentUris.withAppendedId(
Notes.CONTENT_DATA_URI, mTextDataId));
builder.withValues(mTextDataValues);
operationList.add(builder.build());
}
mTextDataValues.clear();
}
/**
*
*/
if(mCallDataValues.size() > 0) {
mCallDataValues.put(DataColumns.NOTE_ID, noteId);
if (mCallDataId == 0) {
mCallDataValues.put(DataColumns.MIME_TYPE, CallNote.CONTENT_ITEM_TYPE);
Uri uri = context.getContentResolver().insert(Notes.CONTENT_DATA_URI,
mCallDataValues);
try {
setCallDataId(Long.valueOf(uri.getPathSegments().get(1)));
} catch (NumberFormatException e) {
Log.e(TAG, "Insert new call data fail with noteId" + noteId);
mCallDataValues.clear();
return null;
}
} else {
builder = ContentProviderOperation.newUpdate(ContentUris.withAppendedId(
Notes.CONTENT_DATA_URI, mCallDataId));
builder.withValues(mCallDataValues);
operationList.add(builder.build());
}
mCallDataValues.clear();
}
/**
*
*/
if (operationList.size() > 0) {
try {
ContentProviderResult[] results = context.getContentResolver().applyBatch(
Notes.AUTHORITY, operationList);
return (results == null || results.length == 0 || results[0] == null) ? null
: ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, noteId);
} catch (RemoteException e) {
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
return null;
} catch (OperationApplicationException e) {
Log.e(TAG, String.format("%s: %s", e.toString(), e.getMessage()));
return null;
}
}
return null;
}
}
}

@ -1,63 +0,0 @@
### 一、项目目录结构
### 二、分支管理策略
1. **master分支**:存储稳定版本代码,仅合并经过测试的`develop`分支内容。
2. **develop分支**:作为日常开发主分支,集成所有成员功能开发分支代码。
3. **成员分支**:每位成员独立开发、注释代码的分支,命名为`member-name-feature`。
| 任务类型 | 具体内容 | 交付物 |
| -------- | -------- | ------ |
| **代码获取与环境搭建** | 从开源渠道获取小米便签代码配置Android开发环境JDK、Android Studio | 可运行的项目工程 |
| **代码注释** | 对核心代码模块添加详细注释,说明功能逻辑、参数含义及关键流程 | `src/java/`下带注释的Java文件 |
| **UML图绘制** | 绘制用例图(用户功能需求)、类图(代码结构),确保准确反映系统架构 | `doc/reading-report/*.uml`文件 |
| **泛读报告撰写** | 分析系统架构、核心功能模块、技术实现结合UML图说明设计思路 | `doc/reading-report/report.md` |
| **质量分析报告** | 从代码规范性、可维护性、性能等维度评估,提出优化建议 | `doc/quality-report/report.md` |
| **最终整合与提交** | 合并所有分支代码与文档,检查格式规范,提交至平台 | 完整的`mi-note-project`目录 |
### 三、项目功能模块概述
便签操作
文件夹
菜单
闹钟提醒
打电话
发短信
超链接
### 四、文档
#### 模型模板
gradle8.11.1
- 软件设计需求
- 软件需求模型
#### 文档模板
- 开源代码质量分析报告
- 开源软件维护方案及成果
- 软件设计规格说明书
- 软件需求构思及描述
- 软件需求规格说明书
### 五、协作流程
- **初始化阶段**:克隆代码至`master`分支,搭建环境后推送到`develop`。
- **开发阶段**:成员从`develop`拉取分支开发完成后提交Pull Request至`develop`。
- **评审阶段**:小组共同审查代码注释与报告,修正问题。
- **合并与提交**:将`develop`分支合并至`master`,打包`src`和`doc`目录提交作业。
### 六、工具使用
- **开发工具**Android studio
- **UML图绘制**EdrawMax矢量绘图软件
- **版本管理**通过Git命令行GitHub desktop和头歌平台管理分支与提交记录

File diff suppressed because it is too large Load Diff

@ -1,430 +0,0 @@
/*
* Copyright (c) 2010-2011, The MiCode Open Source Community (www.micode.net)
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package net.micode.notes.model;
import android.appwidget.AppWidgetManager;
import android.content.ContentUris;
import android.content.Context;
import android.database.Cursor;
import android.text.TextUtils;
import android.util.Log;
import net.micode.notes.data.Notes;
import net.micode.notes.data.Notes.CallNote;
import net.micode.notes.data.Notes.DataColumns;
import net.micode.notes.data.Notes.DataConstants;
import net.micode.notes.data.Notes.NoteColumns;
import net.micode.notes.data.Notes.TextNote;
import net.micode.notes.tool.ResourceParser.NoteBgResources;
/**
*
* Widget
*/
public class WorkingNote {
// 关联的基础笔记模型
private Note mNote;
// 笔记ID
private long mNoteId;
// 笔记内容
private String mContent;
// 笔记模式(普通/待办清单)
private int mMode;
// 提醒时间
private long mAlertDate;
// 最后修改时间
private long mModifiedDate;
// 背景颜色ID
private int mBgColorId;
// Widget ID
private int mWidgetId;
// Widget类型
private int mWidgetType;
// 所属文件夹ID
private long mFolderId;
// 应用上下文
private Context mContext;
// 日志标签
private static final String TAG = "WorkingNote";
// 标记是否已删除
private boolean mIsDeleted;
// 笔记设置变更监听器
private NoteSettingChangedListener mNoteSettingStatusListener;
// 数据查询投影(指定查询的列)
public static final String[] DATA_PROJECTION = new String[] {
DataColumns.ID,
DataColumns.CONTENT,
DataColumns.MIME_TYPE,
DataColumns.DATA1,
DataColumns.DATA2,
DataColumns.DATA3,
DataColumns.DATA4,
};
// 笔记查询投影
public static final String[] NOTE_PROJECTION = new String[] {
NoteColumns.PARENT_ID, // 所属文件夹ID
NoteColumns.ALERTED_DATE, // 提醒时间
NoteColumns.BG_COLOR_ID, // 背景颜色ID
NoteColumns.WIDGET_ID, // Widget ID
NoteColumns.WIDGET_TYPE, // Widget类型
NoteColumns.MODIFIED_DATE // 最后修改时间
};
// 列索引常量(提高代码可读性)
private static final int DATA_ID_COLUMN = 0;
private static final int DATA_CONTENT_COLUMN = 1;
private static final int DATA_MIME_TYPE_COLUMN = 2;
private static final int DATA_MODE_COLUMN = 3;
private static final int NOTE_PARENT_ID_COLUMN = 0;
private static final int NOTE_ALERTED_DATE_COLUMN = 1;
private static final int NOTE_BG_COLOR_ID_COLUMN = 2;
private static final int NOTE_WIDGET_ID_COLUMN = 3;
private static final int NOTE_WIDGET_TYPE_COLUMN = 4;
private static final int NOTE_MODIFIED_DATE_COLUMN = 5;
/**
*
* @param context
* @param folderId ID
*/
private WorkingNote(Context context, long folderId) {
mContext = context;
mAlertDate = 0;
mModifiedDate = System.currentTimeMillis();
mFolderId = folderId;
mNote = new Note();
mNoteId = 0;
mIsDeleted = false;
mMode = 0;
mWidgetType = Notes.TYPE_WIDGET_INVALIDE;
}
/**
*
* @param context
* @param noteId ID
* @param folderId ID
*/
private WorkingNote(Context context, long noteId, long folderId) {
mContext = context;
mNoteId = noteId;
mFolderId = folderId;
mIsDeleted = false;
mNote = new Note();
loadNote(); // 加载笔记基础信息
}
/**
*
*/
private void loadNote() {
// 查询笔记基础信息
Cursor cursor = mContext.getContentResolver().query(
ContentUris.withAppendedId(Notes.CONTENT_NOTE_URI, mNoteId), NOTE_PROJECTION, null,
null, null);
if (cursor != null) {
if (cursor.moveToFirst()) {
// 解析查询结果并赋值给成员变量
mFolderId = cursor.getLong(NOTE_PARENT_ID_COLUMN);
mBgColorId = cursor.getInt(NOTE_BG_COLOR_ID_COLUMN);
mWidgetId = cursor.getInt(NOTE_WIDGET_ID_COLUMN);
mWidgetType = cursor.getInt(NOTE_WIDGET_TYPE_COLUMN);
mAlertDate = cursor.getLong(NOTE_ALERTED_DATE_COLUMN);
mModifiedDate = cursor.getLong(NOTE_MODIFIED_DATE_COLUMN);
}
cursor.close();
} else {
Log.e(TAG, "No note with id:" + mNoteId);
throw new IllegalArgumentException("Unable to find note with id " + mNoteId);
}
loadNoteData(); // 加载笔记详细数据
}
/**
*
*/
private void loadNoteData() {
// 查询笔记关联的数据
Cursor cursor = mContext.getContentResolver().query(Notes.CONTENT_DATA_URI, DATA_PROJECTION,
DataColumns.NOTE_ID + "=?", new String[] {
String.valueOf(mNoteId)
}, null);
if (cursor != null) {
if (cursor.moveToFirst()) {
do {
String type = cursor.getString(DATA_MIME_TYPE_COLUMN);
if (DataConstants.NOTE.equals(type)) {
// 普通文本笔记
mContent = cursor.getString(DATA_CONTENT_COLUMN);
mMode = cursor.getInt(DATA_MODE_COLUMN);
mNote.setTextDataId(cursor.getLong(DATA_ID_COLUMN));
} else if (DataConstants.CALL_NOTE.equals(type)) {
// 通话笔记
mNote.setCallDataId(cursor.getLong(DATA_ID_COLUMN));
} else {
Log.d(TAG, "Wrong note type with type:" + type);
}
} while (cursor.moveToNext());
}
cursor.close();
} else {
Log.e(TAG, "No data with id:" + mNoteId);
throw new IllegalArgumentException("Unable to find note's data with id " + mNoteId);
}
}
/**
*
* @param context
* @param folderId ID
* @param widgetId Widget ID
* @param widgetType Widget
* @param defaultBgColorId ID
* @return WorkingNote
*/
public static WorkingNote createEmptyNote(Context context, long folderId, int widgetId,
int widgetType, int defaultBgColorId) {
WorkingNote note = new WorkingNote(context, folderId);
note.setBgColorId(defaultBgColorId);
note.setWidgetId(widgetId);
note.setWidgetType(widgetType);
return note;
}
/**
*
* @param context
* @param id ID
* @return WorkingNote
*/
public static WorkingNote load(Context context, long id) {
return new WorkingNote(context, id, 0);
}
/**
*
* @return
*/
public synchronized boolean saveNote() {
if (isWorthSaving()) { // 判断是否需要保存
if (!existInDatabase()) { // 新建笔记场景
if ((mNoteId = Note.getNewNoteId(mContext, mFolderId)) == 0) {
Log.e(TAG, "Create new note fail with id:" + mNoteId);
return false;
}
}
mNote.syncNote(mContext, mNoteId); // 同步笔记数据
/**
* Widget
*/
if (mWidgetId != AppWidgetManager.INVALID_APPWIDGET_ID
&& mWidgetType != Notes.TYPE_WIDGET_INVALIDE
&& mNoteSettingStatusListener != null) {
mNoteSettingStatusListener.onWidgetChanged();
}
return true;
} else {
return false;
}
}
/**
*
*/
public boolean existInDatabase() {
return mNoteId > 0;
}
/**
*
*/
private boolean isWorthSaving() {
if (mIsDeleted || (!existInDatabase() && TextUtils.isEmpty(mContent))
|| (existInDatabase() && !mNote.isLocalModified())) {
return false;
} else {
return true;
}
}
/**
*
*/
public void setOnSettingStatusChangedListener(NoteSettingChangedListener l) {
mNoteSettingStatusListener = l;
}
/**
*
* @param date
* @param set
*/
public void setAlertDate(long date, boolean set) {
if (date != mAlertDate) {
mAlertDate = date;
mNote.setNoteValue(NoteColumns.ALERTED_DATE, String.valueOf(mAlertDate));
}
// 通知监听器提醒时间已变更
if (mNoteSettingStatusListener != null) {
mNoteSettingStatusListener.onClockAlertChanged(date, set);
}
}
// 以下为各种属性的设置方法(带变更检测和通知)
public void markDeleted(boolean mark) {
mIsDeleted = mark;
if (mWidgetId != AppWidgetManager.INVALID_APPWIDGET_ID
&& mWidgetType != Notes.TYPE_WIDGET_INVALIDE && mNoteSettingStatusListener != null) {
mNoteSettingStatusListener.onWidgetChanged();
}
}
public void setBgColorId(int id) {
if (id != mBgColorId) {
mBgColorId = id;
if (mNoteSettingStatusListener != null) {
mNoteSettingStatusListener.onBackgroundColorChanged();
}
mNote.setNoteValue(NoteColumns.BG_COLOR_ID, String.valueOf(id));
}
}
public void setCheckListMode(int mode) {
if (mMode != mode) {
if (mNoteSettingStatusListener != null) {
mNoteSettingStatusListener.onCheckListModeChanged(mMode, mode);
}
mMode = mode;
mNote.setTextData(TextNote.MODE, String.valueOf(mMode));
}
}
public void setWidgetType(int type) {
if (type != mWidgetType) {
mWidgetType = type;
mNote.setNoteValue(NoteColumns.WIDGET_TYPE, String.valueOf(mWidgetType));
}
}
public void setWidgetId(int id) {
if (id != mWidgetId) {
mWidgetId = id;
mNote.setNoteValue(NoteColumns.WIDGET_ID, String.valueOf(mWidgetId));
}
}
public void setWorkingText(String text) {
if (!TextUtils.equals(mContent, text)) {
mContent = text;
mNote.setTextData(DataColumns.CONTENT, mContent);
}
}
/**
*
* @param phoneNumber
* @param callDate
*/
public void convertToCallNote(String phoneNumber, long callDate) {
mNote.setCallData(CallNote.CALL_DATE, String.valueOf(callDate));
mNote.setCallData(CallNote.PHONE_NUMBER, phoneNumber);
// 更改所属文件夹为通话记录文件夹
mNote.setNoteValue(NoteColumns.PARENT_ID, String.valueOf(Notes.ID_CALL_RECORD_FOLDER));
}
// 以下为各种属性的获取方法
public boolean hasClockAlert() {
return (mAlertDate > 0 ? true : false);
}
public String getContent() {
return mContent;
}
public long getAlertDate() {
return mAlertDate;
}
public long getModifiedDate() {
return mModifiedDate;
}
public int getBgColorResId() {
return NoteBgResources.getNoteBgResource(mBgColorId);
}
public int getBgColorId() {
return mBgColorId;
}
public int getTitleBgResId() {
return NoteBgResources.getNoteTitleBgResource(mBgColorId);
}
public int getCheckListMode() {
return mMode;
}
public long getNoteId() {
return mNoteId;
}
public long getFolderId() {
return mFolderId;
}
public int getWidgetId() {
return mWidgetId;
}
public int getWidgetType() {
return mWidgetType;
}
/**
*
*
*/
public interface NoteSettingChangedListener {
/**
*
*/
void onBackgroundColorChanged();
/**
*
*/
void onClockAlertChanged(long date, boolean set);
/**
* Widget
*/
void onWidgetChanged();
/**
*
*/
void onCheckListModeChanged(int oldMode, int newMode);
}
}

@ -1,80 +0,0 @@
// 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));
}
}

@ -1,52 +0,0 @@
// 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);
}
}

@ -1,80 +0,0 @@
// 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));
}
}

@ -1,80 +0,0 @@
// 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));
}
}

@ -1,21 +0,0 @@
{
"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
}

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

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

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

@ -1,120 +0,0 @@
#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

@ -1,104 +0,0 @@
<?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>

@ -1,104 +0,0 @@
<?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>

@ -1,108 +0,0 @@
<?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>

@ -1,104 +0,0 @@
<?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>

@ -1,104 +0,0 @@
<?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>

@ -1,75 +0,0 @@
<?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>

@ -1,105 +0,0 @@
<?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>

@ -1,106 +0,0 @@
<?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>

@ -1,104 +0,0 @@
<?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>

@ -1,104 +0,0 @@
<?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>

@ -1,105 +0,0 @@
<?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>

@ -1,104 +0,0 @@
<?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>

@ -1,106 +0,0 @@
<?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>

@ -1,104 +0,0 @@
<?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>

@ -1,104 +0,0 @@
<?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>

@ -1,104 +0,0 @@
<?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>

@ -1,32 +0,0 @@
<?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>

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

Loading…
Cancel
Save