Merge remote-tracking branch 'origin/master'

This commit is contained in:
Weblate 2017-01-06 22:55:32 +01:00
commit c78d36ccaa
56 changed files with 0 additions and 773 deletions

View file

@ -1,21 +0,0 @@
# This file is used to override default values used by the Ant build system.
#
# This file must be checked in Version Control Systems, as it is
# integral to the build system of your project.
# This file is only used by the Ant script.
# You can use this to override default values such as
# 'source.dir' for the location of your java source folder and
# 'out.dir' for the location of your output folder.
# You can also use it define how the release builds are signed by declaring
# the following properties:
# 'key.store' for the location of your keystore and
# 'key.alias' for the name of the key to use.
# The password will be asked during the build when you use the 'release' target.
key.alias=osmand
key.store=../../../../osmand_key
jar.libs.dir=lib
java.compilerargs=-Xlint

View file

@ -1,10 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<Module>
<ModulePrefs title="hello world example" />
<Content type="html">
<![CDATA[
<iframe src="http://www.bidforfix.com/p/osmand.net/ads/iframe/"
scrolling="no" frameborder="0" style="border:none; width:600px; height:100px" />
]]>
</Content>
</Module>

View file

@ -1,396 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project name="OsmAnd" default="help">
<property file="local.properties" />
<property file="ant.properties" />
<loadproperties srcFile="project.properties" />
<!-- quick check on sdk.dir -->
<fail
message="sdk.dir is missing. Make sure to generate local.properties using 'android update project' or to inject it through an env var"
unless="sdk.dir" />
<property name="use.dir" value="../OsmAnd-java/src" />
<property name="use.absolute.dir" location="${use.dir}" />
<property name="src.absolute.dir" location="src" />
<property name="base.dir" location="." />
<target name="download_resources">
<get src="http://builder.osmand.net/binaries/android/OsmAndCore_wrapper.jar"
dest="libs/OsmAndCore_wrapper.jar" usetimestamp="true"/>
<get src="http://builder.osmand.net/ivy/net.osmand/OsmAndCore_android/0.1-SNAPSHOT/OsmAndCore_android-0.1-SNAPSHOT.aar"
dest="OsmAndCore_android.aar" usetimestamp="true"/>
<get src="http://builder.osmand.net/ivy/net.osmand/OsmAndCore_androidNativeRelease/0.1-SNAPSHOT/OsmAndCore_androidNativeRelease-0.1-SNAPSHOT.aar"
dest="OsmAndCore_androidNativeRelease.aar" usetimestamp="true"/>
</target>
<target name="use_qt_core" depends="download_resources">
<unzip src="OsmAndCore_androidNativeRelease.aar" dest="libs">
<patternset>
<include name="jni/armeabi-v7a/*"/>
</patternset>
<cutdirsmapper dirs="1"/>
</unzip>
<unzip src="OsmAndCore_android.aar" dest="libs">
<patternset>
<include name="jni/armeabi-v7a/*"/>
</patternset>
<cutdirsmapper dirs="1"/>
</unzip>
<unzip src="OsmAndCore_android.aar" dest=".">
<patternset>
<include name="assets/**/*"/>
<exclude name="assets/OsmAndCore_ResourcesBundle/map/fonts/**/*"/>
</patternset>
</unzip>
<unzip src="OsmAndCore_android.aar" dest=".">
<patternset>
<include name="assets/**/map/fonts/OpenSans/*"/>
<include name="assets/**/map/fonts/NotoSans/*"/>
</patternset>
</unzip>
</target>
<target name="fix_apostrophe_issues">
<replace token="version='1.0'" value="version=&quot;1.0&quot;" encoding="UTF-8">
<fileset dir="res" includes="**/strings.xml" />
</replace>
<replace token="encoding='utf-8'" value="encoding=&quot;utf-8&quot;" encoding="UTF-8">
<fileset dir="res" includes="**/strings.xml" />
</replace>
<replaceregexp match="([^\\])'" replace="\1\\\\'" flags="-g" byline="off" encoding="UTF-8">
<fileset dir="res" includes="**/strings.xml" />
</replaceregexp>
</target>
<target name="copy_sherpafy">
<copy todir="gen/net/osmand/plus">
<fileset dir="gen/net/osmand/sherpafy">
<include name="R.java" />
</fileset>
</copy>
<replaceregexp file="gen/net/osmand/plus/R.java" match='package (.*);' replace='package net.osmand.plus;' byline="true" />
</target>
<target name="copy_resources">
<copy todir="assets">
<fileset dir="../../resources/">
<include name="voice/**/*.p" />
</fileset>
</copy>
<copy todir="assets/fonts">
<fileset dir="../../resources/fonts">
<include name="*.ttf" />
</fileset>
<fileset dir="../../resources/rendering_styles/fonts/OpenSans">
<include name="*.ttf" />
</fileset>
</copy>
<copy todir="res/">
<fileset dir="../../resources/rendering_styles/style-icons/" >
<include name="**/*" />
</fileset>
</copy>
<copy todir="${src.absolute.dir}/net/osmand/router/">
<fileset dir="../../resources/routing/">
<include name="*.xml" />
</fileset>
</copy>
<sync todir="assets/help/">
<fileset dir="../../help/website/help">
<include name="*.html" />
</fileset>
</sync>
<copy todir="assets/help">
<fileset dir="assets/">
<include name="style.css" />
</fileset>
</copy>
<copy todir="${src.absolute.dir}/net/osmand/render/">
<fileset dir="../../resources/rendering_styles/">
<include name="*.xml" />
</fileset>
</copy>
<copy todir="${src.absolute.dir}/net/osmand/osm/">
<fileset dir="../../resources/obf_creation/">
<include name="rendering_types.xml" />
</fileset>
<fileset dir="../../resources/poi/">
<include name="poi_types.xml" />
</fileset>
</copy>
<copy todir="${src.absolute.dir}/net/osmand/map/">
<fileset dir="../../resources/countries-info/">
<include name="regions.ocbf" />
</fileset>
</copy>
</target>
<!-- Import the actual build file.
To customize existing targets, there are two options:
- Customize only one target:
- copy/paste the target into this file, *before* the
<import> task.
- customize it to your needs.
- Customize the whole content of build.xml
- copy/paste the content of the rules files (minus the top node)
into this file, replacing the <import> task.
- customize to your needs.
***********************
****** IMPORTANT ******
***********************
In all cases you must update the value of version-tag below to read 'custom' instead of an integer,
in order to avoid having your file be overridden by tools such as "android update project"
-->
<!-- version-tag: custom -->
<import file="${sdk.dir}/tools/ant/build.xml" />
<!-- ******************** -->
<!-- OVERRIDE TARGET prepare resources -->
<!-- Extra target -->
<target name="-pre-build" depends="download_resources,copy_resources,fix_apostrophe_issues">
<if>
<condition>
<isset property="versionFeatures" />
</condition>
<then>
<replaceregexp file="res/values/no_translate.xml" match='versionFeatures"&gt;(.*)&lt;' replace='versionFeatures"&gt;${versionFeatures}&lt;' byline="true" />
</then>
</if>
<if>
<condition>
<isset property="net.osmand.sherpafy" />
</condition>
<then>
<property name="package.name" value="net.osmand.sherpafy" />
<property name="app.name" value="Sherpafy" />
<replaceregexp file="AndroidManifest.xml" match='"@drawable/([^\s]*)"' replace='"@drawable/icon_sherpafy"' byline="true" />
</then>
</if>
<if>
<condition>
<isset property="net.osmand" />
</condition>
<then>
<property name="package.name" value="net.osmand" />
<property name="app.name" value="OsmAnd" />
<replaceregexp file="AndroidManifest.xml" match='"@drawable/([^\s]*)"' replace='"@drawable/icon_free"' byline="true" />
</then>
</if>
<if>
<condition>
<isset property="net.osmand.plus" />
</condition>
<then>
<property name="package.name" value="net.osmand.plus" />
<property name="app.name" value="OsmAnd+" />
<replaceregexp file="AndroidManifest.xml" match='"@drawable/([^\s]*)"' replace='"@drawable/icon"' byline="true" />
</then>
</if>
<if>
<condition>
<isset property="package.name" />
</condition>
<then>
<replaceregexp file="AndroidManifest.xml" match='package="(.*)"' replace='package="${package.name}"' byline="true" />
<replaceregexp file="AndroidManifest.xml" match='android:process="(.*)"' replace='android:process="${package.name}"' byline="true" />
<replaceregexp file="res/values/no_translate.xml" match='"app_name"&gt;(.*)&lt;' replace='"app_name"&gt;${app.name}&lt;' byline="true" />
<replaceregexp file="res/layout/search_address.xml" match='xmlns:custom="http://schemas.android.com/apk/res/(.*)"'
replace='xmlns:custom="http://schemas.android.com/apk/res/${package.name}"' byline="true" />
<replaceregexp file="res/layout/search_point.xml" match='xmlns:custom="http://schemas.android.com/apk/res/(.*)"'
replace='xmlns:custom="http://schemas.android.com/apk/res/${package.name}"' byline="true" />
</then>
</if>
<if>
<condition>
<isset property="build.version.code" />
</condition>
<then>
<replaceregexp file="AndroidManifest.xml" match='android:versionCode="(.*)"' replace='android:versionCode="${build.version.code}"' byline="true" />
<replaceregexp file="AndroidManifest.xml" match='android:debuggable="true"' replace='android:debuggable="false"' byline="true" />
</then>
</if>
<if>
<condition>
<isset property="build.version" />
</condition>
<then>
<!-- old expression with manual version input: replaceregexp file="res/values/no_translate.xml" match='"app_version"&gt;(.*)&lt;' replace='"app_version"&gt;2.0.0${build.version}&lt;' byline="true" / -->
<!-- From old dev apk version string, cut off old build number ("#old_build_number" and after) and compile new apk version from app_version and #new_build_number (=BUILD_NUMBER in builder) -->
<replaceregexp file="res/values/no_translate.xml" match='"app_version"&gt;([^#]+)(.*)&lt;' replace='"app_version"&gt;\1${build.version}&lt;' byline="true" />
</then>
</if>
<if>
<condition>
<isset property="app.edition" />
</condition>
<then>
<!-- Use BUILD_ID from builder to get precise apk Edition date -->
<replaceregexp file="res/values/no_translate.xml" match='"app_edition"&gt;(.*)&lt;' replace='"app_edition"&gt;${app.edition}&lt;' byline="true" />
</then>
</if>
</target>
<!-- ******************** -->
<!-- OVERRIDE TARGET to replace strings for compilation -->
<!-- Code Generation: compile resources (aapt -> R.java), aidl, renderscript -->
<!-- Compiles this project's .java files into .class files. -->
<target name="-compile" depends="-build-setup, -pre-build, -code-gen, -pre-compile">
<!-- osmchange : Osmand plus support -->
<mkdir dir="${gen.absolute.dir}/net/osmand/plus" />
<if>
<condition>
<isset property="net.osmand.sherpafy" />
</condition>
<then>
<copy todir="${gen.absolute.dir}/net/osmand/plus">
<fileset dir="${gen.absolute.dir}/net/osmand/sherpafy">
<include name="R.java" />
</fileset>
</copy>
</then>
</if>
<if>
<condition>
<isset property="net.osmand" />
</condition>
<then>
<copy todir="${gen.absolute.dir}/net/osmand/plus">
<fileset dir="${gen.absolute.dir}/net/osmand">
<include name="R.java" />
</fileset>
</copy>
</then>
</if>
<replaceregexp file="${gen.absolute.dir}/net/osmand/plus/R.java" match='package (.*);' replace='package net.osmand.plus;' byline="true" />
<!-- osmchange : Osmand plus support -->
<do-only-if-manifest-hasCode elseText="hasCode = false. Skipping...">
<!-- merge the project's own classpath and the tested project's classpath -->
<path id="project.javac.classpath">
<path refid="project.all.jars.path" />
<path refid="tested.project.classpath" />
</path>
<javac encoding="${java.encoding}" source="${java.source}" target="${java.target}" debug="true" extdirs="" includeantruntime="false" destdir="${out.classes.absolute.dir}" bootclasspathref="project.target.class.path" verbose="${verbose}" classpathref="project.javac.classpath" fork="${need.javac.fork}">
<src path="${source.absolute.dir}" />
<src path="${gen.absolute.dir}" />
<compilerarg line="${java.compilerargs}" />
<!-- osmchange -->
<src path="${use.absolute.dir}" />
<exclude name="**/PlatformUtil.java" />
<!-- osmchange -->
</javac>
<!-- if the project is instrumented, intrument the classes -->
<if condition="${build.is.instrumented}">
<then>
<echo level="info">Instrumenting classes from ${out.absolute.dir}/classes...</echo>
<!-- build the filter to remove R, Manifest, BuildConfig -->
<getemmafilter appPackage="${project.app.package}" libraryPackagesRefId="project.library.packages" filterOut="emma.default.filter" />
<!-- define where the .em file is going. This may have been
setup already if this is a library -->
<property name="emma.coverage.absolute.file" location="${out.absolute.dir}/coverage.em" />
<!-- It only instruments class files, not any external libs -->
<emma enabled="true">
<instr verbosity="${verbosity}" mode="overwrite" instrpath="${out.absolute.dir}/classes" outdir="${out.absolute.dir}/classes" metadatafile="${emma.coverage.absolute.file}">
<filter excludes="${emma.default.filter}" />
<filter value="${emma.filter}" />
</instr>
</emma>
</then>
</if>
<!-- if the project is a library then we generate a jar file -->
<if condition="${project.is.library}">
<then>
<echo level="info">Creating library output jar file...</echo>
<property name="out.library.jar.file" location="${out.absolute.dir}/classes.jar" />
<if>
<condition>
<length string="${android.package.excludes}" trim="true" when="greater" length="0" />
</condition>
<then>
<echo level="info">Custom jar packaging exclusion: ${android.package.excludes}</echo>
</then>
</if>
<propertybyreplace name="project.app.package.path" input="${project.app.package}" replace="." with="/" />
<jar destfile="${out.library.jar.file}">
<fileset dir="${out.classes.absolute.dir}" includes="**/*.class" excludes="${project.app.package.path}/R.class ${project.app.package.path}/R$*.class ${project.app.package.path}/Manifest.class ${project.app.package.path}/Manifest$*.class ${project.app.package.path}/BuildConfig.class" />
<fileset dir="${source.absolute.dir}" excludes="**/*.java ${android.package.excludes}" />
</jar>
</then>
</if>
</do-only-if-manifest-hasCode>
</target>
<!-- ******************** -->
<!-- OVERRIDE TARGET to not zip qz in aapt -->
<!-- Code Generation: compile resources (aapt -> R.java), aidl, renderscript -->
<target name="-code-gen">
<!-- always merge manifest -->
<mergemanifest
appManifest="${manifest.abs.file}"
outManifest="${out.manifest.abs.file}"
enabled="${manifestmerger.enabled}">
<library refid="project.library.manifest.file.path" />
</mergemanifest>
<do-only-if-manifest-hasCode
elseText="hasCode = false. Skipping aidl/renderscript/R.java">
<echo level="info">Handling aidl files...</echo>
<aidl executable="${aidl}"
framework="${project.target.framework.aidl}"
libraryBinAidlFolderPathRefid="project.library.bin.aidl.folder.path"
genFolder="${gen.absolute.dir}"
aidlOutFolder="${out.aidl.absolute.dir}">
<source path="${source.absolute.dir}"/>
</aidl>
<echo level="info">----------</echo>
<echo level="info">Handling Resources...</echo>
<aapt executable="${aapt}"
command="package"
verbose="${verbose}"
manifest="${out.manifest.abs.file}"
originalManifestPackage="${project.app.package}"
androidjar="${project.target.android.jar}"
rfolder="${gen.absolute.dir}"
nonConstantId="${android.library}"
libraryResFolderPathRefid="project.library.res.folder.path"
libraryPackagesRefid="project.library.packages"
libraryRFileRefid="project.library.bin.r.file.path"
ignoreAssets="${aapt.ignore.assets}"
binFolder="${out.absolute.dir}"
proguardFile="${out.absolute.dir}/proguard.txt">
<res path="${out.res.absolute.dir}" />
<res path="${resource.absolute.dir}" />
<nocompress extension="qz"/>
</aapt>
<echo level="info">----------</echo>
<echo level="info">Handling BuildConfig class...</echo>
<buildconfig
genFolder="${gen.absolute.dir}"
package="${project.app.package}"
buildType="${build.is.packaging.debug}"
previousBuildType="${build.last.is.packaging.debug}"/>
</do-only-if-manifest-hasCode>
</target>
</project>

View file

@ -1,60 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout android:id="@+id/bidforfixitemlayout"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/white">
<TextView
android:id="@+id/bffiText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginLeft="24dp"
android:layout_marginTop="8dp"
android:text="Large Text"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textColor="#72B123"/>
<View
android:id="@+id/ruler"
android:layout_width="wrap_content"
android:layout_height="1px"
android:layout_alignParentLeft="true"
android:layout_below="@+id/bffiText"
android:layout_marginLeft="15dp"
android:layout_marginRight="15dp"
android:layout_marginTop="6dp"
android:background="#B0B0B0"/>
<TextView
android:id="@+id/bffiSupport"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/bffiText"
android:layout_below="@+id/bffiText"
android:layout_marginTop="16dp"
android:textAppearance="?android:attr/textAppearanceSmall"
tools:text="18 supporters"/>
<TextView
android:id="@+id/bffiFunded"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/bffiSupport"
android:layout_below="@+id/bffiSupport"
android:textAppearance="?android:attr/textAppearanceSmall"
tools:text="Funded: 65%"/>
<ImageView
android:id="@+id/bffiGraph"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_alignTop="@+id/bffiSupport"
android:layout_marginRight="20dp"
android:src="@android:drawable/alert_dark_frame"/>
</RelativeLayout>

View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="bidforfix_loading">Besig om te laai</string>
<string name="bidforfix_supporters">%1$d Ondersteuners</string>
<string name="bidforfix_funded">Gefinansier: %d%%</string>
</resources>

View file

@ -1,5 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources><string name="bidforfix_loading">جاري التحميل</string>
<string name="bidforfix_supporters">%1$d بدعم من</string>
<string name="bidforfix_funded">ممول من: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="bidforfix_loading">Učitavanje</string>
<string name="bidforfix_supporters">%1$d podržali</string>
<string name="bidforfix_funded">Finansirano: %d%%</string>
</resources>

View file

@ -1,5 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources><string name="bidforfix_loading">Загрузка</string>
<string name="bidforfix_supporters">%1$d падтрымалі</string>
<string name="bidforfix_funded">сабрана: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="bidforfix_loading">Зареждане</string>
<string name="bidforfix_supporters">%1$d Поддръжници</string>
<string name="bidforfix_funded">събрани: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="bidforfix_loading">Učitavam</string>
<string name="bidforfix_supporters">%1$d iz podrške</string>
<string name="bidforfix_funded">finansiran: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="bidforfix_loading">S\'està carregant</string>
<string name="bidforfix_supporters">%1$d mecenes</string>
<string name="bidforfix_funded">finançat: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="bidforfix_loading">Nahrávám</string>
<string name="bidforfix_supporters">%1$d Příznivců</string>
<string name="bidforfix_funded">sponzorováno: %d%%</string>
</resources>

View file

@ -1,5 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources><string name="bidforfix_loading">Llwytho</string>
<string name="bidforfix_supporters">%1$d Cefnogwyr</string>
<string name="bidforfix_funded">a ariennir: %d%%</string>
</resources>

View file

@ -1,5 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources><string name="bidforfix_loading">Indlæser</string>
<string name="bidforfix_supporters">%1$d supportere</string>
<string name="bidforfix_funded">finansieret:%d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="bidforfix_loading">Lädt gerade</string>
<string name="bidforfix_supporters">%1$d Unterstützer</string>
<string name="bidforfix_funded">Bereits gespendet: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="bidforfix_loading">Φόρτωση</string>
<string name="bidforfix_supporters">%1$d Υποστηρικτές</string>
<string name="bidforfix_funded">Χρηματοδότηση: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="bidforfix_loading">Cargando</string>
<string name="bidforfix_supporters">%1$d colaboradores</string>
<string name="bidforfix_funded">financiado: %d%%</string>
</resources>

View file

@ -1,5 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources><string name="bidforfix_loading">Laaditakse</string>
<string name="bidforfix_supporters">%1$d toetajat</string>
<string name="bidforfix_funded">rahastatud: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version='1.0' encoding='UTF-8'?>
<resources>
<string name="bidforfix_loading">Kargatzen</string>
<string name="bidforfix_supporters">%1$d Kolaboratzaileak</string>
<string name="bidforfix_funded">finantzatuta: %d%%</string>
</resources>

View file

@ -1,5 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources><string name="bidforfix_loading">بارگزاری</string>
<string name="bidforfix_supporters">حمایت کنندگان %1$d</string>
<string name="bidforfix_funded">حمایت مالی: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="bidforfix_loading">Ladataan</string>
<string name="bidforfix_supporters">%1$d Tukijaa</string>
<string name="bidforfix_funded">rahoitettu: %d%%</string>
</resources>

View file

@ -1,5 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources><string name="bidforfix_loading">Chargement</string>
<string name="bidforfix_supporters">%1$d mécènes</string>
<string name="bidforfix_funded">financé : %d%%</string>
</resources>

View file

@ -1,5 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources><string name="bidforfix_loading">A cargar</string>
<string name="bidforfix_supporters">%1$d mecenas</string>
<string name="bidforfix_funded">financiado: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="bidforfix_loading">בטעינה</string>
<string name="bidforfix_supporters">%1$d תומכים</string>
<string name="bidforfix_funded">מומנו: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="bidforfix_loading">Loading</string>
<string name="bidforfix_supporters">%1$d Supporters</string>
<string name="bidforfix_funded">funded: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="bidforfix_loading">Učitavanje</string>
<string name="bidforfix_supporters">%1$d Podržali</string>
<string name="bidforfix_funded">financirao:%d%%</string>
</resources>

View file

@ -1,5 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources><string name="bidforfix_loading">Betöltés</string>
<string name="bidforfix_supporters">%1$d támogató</string>
<string name="bidforfix_funded">felajánlás: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="bidforfix_loading">"bidforfix - ը բեռնվում է"</string>
<string name="bidforfix_supporters">%1$d Կողմնակիցներ</string>
<string name="bidforfix_funded">%d%% ֆինանսավորված է</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="bidforfix_loading">Memuat</string>
<string name="bidforfix_supporters">%1$d Pendukung</string>
<string name="bidforfix_funded">didanai: %d%%</string>
</resources>

View file

@ -1,5 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources><string name="bidforfix_loading">Caricamento</string>
<string name="bidforfix_supporters">%1$d Sostenitori</string>
<string name="bidforfix_funded">finanziato: %d%%</string>
</resources>

View file

@ -1,5 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources><string name="bidforfix_loading">ロード中</string>
<string name="bidforfix_funded">発見: %d%%</string>
<string name="bidforfix_supporters">サポーター %1$d</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="bidforfix_loading">ჩატვირთვა</string>
<string name="bidforfix_supporters">%1$d-ის მხარდამჭერები</string>
<string name="bidforfix_funded">გადახდილია: %d%%</string>
</resources>

View file

@ -1,5 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources><string name="bidforfix_loading">로딩</string>
<string name="bidforfix_supporters">%1$d 서포터</string>
<string name="bidforfix_funded">펀디드 funded: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="bidforfix_loading">Kraunama</string>
<string name="bidforfix_supporters">%1$d Rėmėjai</string>
<string name="bidforfix_funded">finansuojama: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="bidforfix_loading">Ielādēju</string>
<string name="bidforfix_supporters">%1$d Atbalstītāji</string>
<string name="bidforfix_funded">finansēts: %d%%</string>
</resources>

View file

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="bidforfix_loading">लोड करत आहे</string>
<string name="bidforfix_supporters">%1$d सहाय्यकर्ते</string>
<string name="bidforfix_funded">आर्थिक सहाय्य: %d%%</string>
</resources>

View file

@ -1,5 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources><string name="bidforfix_loading">Laster</string>
<string name="bidforfix_supporters">%1$d støttespillere</string>
<string name="bidforfix_funded">finansiert: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="bidforfix_loading">Laden</string>
<string name="bidforfix_supporters">%1$d ondersteuners</string>
<string name="bidforfix_funded">gefinancierd: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="bidforfix_loading">Wczytywanie</string>
<string name="bidforfix_supporters">%1$d Wspierających</string>
<string name="bidforfix_funded">ufundowano: %d%%</string>
</resources>

View file

@ -1,5 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources><string name="bidforfix_loading">Carregando</string>
<string name="bidforfix_supporters">%1$d Apoiantes</string>
<string name="bidforfix_funded">arrecadado: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="bidforfix_loading">Se încarcă</string>
<string name="bidforfix_supporters">%1$d Susținători</string>
<string name="bidforfix_funded">finanțat: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="bidforfix_loading">Загружается</string>
<string name="bidforfix_supporters">%1$d поддержали</string>
<string name="bidforfix_funded">Собрано: %d%%</string>
</resources>

View file

@ -1,5 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources><string name="bidforfix_loading">Carrigamentu</string>
<string name="bidforfix_supporters">%1$d Sustenitores</string>
<string name="bidforfix_funded">finantziau: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="bidforfix_loading">Nahrávam</string>
<string name="bidforfix_supporters">%1$d Podporovateľov</string>
<string name="bidforfix_funded">podpora: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="bidforfix_loading">Nalaganje</string>
<string name="bidforfix_supporters">%1$d podpornikov</string>
<string name="bidforfix_funded">financirano: %d%%</string>
</resources>

View file

@ -1,5 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources><string name="bidforfix_loading">Duke u ngarkuar</string>
<string name="bidforfix_supporters">%1$d Mbështetës</string>
<string name="bidforfix_funded">mbledhur: %d%%</string>
</resources>

View file

@ -1,5 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources><string name="bidforfix_loading">Учитавање</string>
<string name="bidforfix_supporters">%1$d подржали</string>
<string name="bidforfix_funded">Финансирано: %d%%</string>
</resources>

View file

@ -1,5 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources><string name="bidforfix_loading">Laddar</string>
<string name="bidforfix_supporters">%1$d anhängare</string>
<string name="bidforfix_funded">finansierade: %d%%</string>
</resources>

View file

@ -1,3 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
</resources>

View file

@ -1,5 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources><string name="bidforfix_loading">Yükleniyor</string>
<string name="bidforfix_supporters">%1$d Destekçi</string>
<string name="bidforfix_funded">Bağışlanan: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="bidforfix_loading">Завантаження</string>
<string name="bidforfix_supporters">%1$d підтримало</string>
<string name="bidforfix_funded">зібрано: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="bidforfix_loading">Đang tải</string>
<string name="bidforfix_supporters">%1$d Ủng hộ</string>
<string name="bidforfix_funded">bản chất: %d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="bidforfix_loading">下载</string>
<string name="bidforfix_supporters">%1$d 支持者</string>
<string name="bidforfix_funded">资助: %d%%</string>
</resources>

View file

@ -1,5 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources><string name="bidforfix_loading">載入中</string>
<string name="bidforfix_supporters">%1$d 支援者</string>
<string name="bidforfix_funded">已找到:%d%%</string>
</resources>

View file

@ -1,6 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<string name="bidforfix_loading">Loading</string>
<string name="bidforfix_supporters">%1$d Supporters</string>
<string name="bidforfix_funded">funded: %d%%</string>
</resources>