diff options
89 files changed, 1599 insertions, 370 deletions
diff --git a/core/java/android/widget/Editor.java b/core/java/android/widget/Editor.java index 2b9028111dc8..9dab7b4b8c41 100644 --- a/core/java/android/widget/Editor.java +++ b/core/java/android/widget/Editor.java @@ -800,6 +800,8 @@ public class Editor { private boolean isOffsetVisible(int offset) { Layout layout = mTextView.getLayout(); + if (layout == null) return false; + final int line = layout.getLineForOffset(offset); final int lineBottom = layout.getLineBottom(line); final int primaryHorizontal = (int) layout.getPrimaryHorizontal(offset); diff --git a/docs/html/design/patterns/new.jd b/docs/html/design/patterns/new.jd index 1fc49878839d..23e3e10dbe7e 100644 --- a/docs/html/design/patterns/new.jd +++ b/docs/html/design/patterns/new.jd @@ -56,7 +56,7 @@ page.title=New in Android <li>Trying it out yourself</li> </ul> - <p>You can supply separate landscape and portrait layouts for your widgets, which the system inflates as appropriate when the screen orientation changes. The [Application Widgets] (should be link) has useful details about widget types, limitations, and design considerations.</p> + <p>You can supply separate landscape and portrait layouts for your widgets, which the system inflates as appropriate when the screen orientation changes. The <a href="{@docRoot}design/patterns/widgets.html">Widgets</a> page has useful details about widget types, limitations, and design considerations.</p> </div> <div class="layout-content-col span-2"> <img src="{@docRoot}design/media/new_accessibility.png"> diff --git a/docs/html/images/tools/mat-histogram@2x.png b/docs/html/images/tools/mat-histogram@2x.png Binary files differnew file mode 100644 index 000000000000..feb9654ce3a6 --- /dev/null +++ b/docs/html/images/tools/mat-histogram@2x.png diff --git a/docs/html/images/tools/monitor-hprof@2x.png b/docs/html/images/tools/monitor-hprof@2x.png Binary files differnew file mode 100644 index 000000000000..7afb9c795ea4 --- /dev/null +++ b/docs/html/images/tools/monitor-hprof@2x.png diff --git a/docs/html/images/tools/monitor-tracker@2x.png b/docs/html/images/tools/monitor-tracker@2x.png Binary files differnew file mode 100644 index 000000000000..a0bc329edbac --- /dev/null +++ b/docs/html/images/tools/monitor-tracker@2x.png diff --git a/docs/html/images/tools/monitor-vmheap@2x.png b/docs/html/images/tools/monitor-vmheap@2x.png Binary files differnew file mode 100644 index 000000000000..ef4b9c29d74f --- /dev/null +++ b/docs/html/images/tools/monitor-vmheap@2x.png diff --git a/docs/html/tools/debugging/debugging-memory.jd b/docs/html/tools/debugging/debugging-memory.jd new file mode 100644 index 000000000000..0454293e2d44 --- /dev/null +++ b/docs/html/tools/debugging/debugging-memory.jd @@ -0,0 +1,494 @@ +page.title=Investigating Your RAM Usage +page.tags="memory","OutOfMemoryError" +@jd:body + + <div id="qv-wrapper"> + <div id="qv"> + <h2>In this document</h2> +<ol> + <li><a href="#LogMessages">Interpreting Log Messages</a></li> + <li><a href="#ViewHeap">Viewing Heap Updates</a></li> + <li><a href="#TrackAllocations">Tracking Allocations</a></li> + <li><a href="#ViewingAllocations">Viewing Overall Memory Allocations</a></li> + <li><a href="#HeapDump">Capturing a Heap Dump</a></li> + <li><a href="#TriggerLeaks">Triggering Memory Leaks</a></li> +</ol> + <h2>See Also</h2> + <ul> + <li><a href="{@docRoot}training/articles/memory.html">Managing Your App's Memory</a></li> + </ul> + </div> + </div> + + + + +<p>Because Android is designed for mobile devices, you should always be careful about how much +random-access memory (RAM) your app uses. Although Android’s Dalvik virtual machine performs +routine garbage collection, this doesn’t mean you can ignore when and where your app allocates and +releases memory. In order to provide a stable user experience that allows the system to quickly +switch between apps, it’s important that your app does not needlessly consume memory when the user +is not interacting with it.</p> + +<p>Even if you follow all the best practices for <a href="{@docRoot}training/articles/memory.html" +>Managing Your App Memory</a> during +development (which you should), you still might leak objects or introduce other memory bugs. The +only way to be certain your app is using as little memory as possible is to analyze your app’s +memory usage with tools. This guide shows you how to do that.</p> + + +<h2 id="LogMessages">Interpreting Log Messages</h2> + +<p>The simplest place to begin investigating your apps memory usage is the Dalvik log messages. You'll +find these log messages in <a href="{@docRoot}tools/help/logcat.html">logcat</a> (the output is +available in the Device Monitor or directly in IDEs such as Eclipse and Android Studio).</p> + +<p>Every time a garbage collection occurs, logcat prints a message with the following information:</p> + +<pre class="no-pretty-print"> +D/dalvikvm: <GC_Reason> <Amount_freed>, <Heap_stats>, <External_memory_stats>, <Pause_time> +</pre> + +<dl> +<dt>GC Reason</dt> +<dd> +What triggered the garbage collection and what kind of collection it is. Reasons that may appear +include: +<dl> +<dt><code>GC_CONCURRENT</code></dt> +<dd>A concurrent garbage collection that frees up memory as your heap begins to fill up.</dd> + +<dt><code>GC_FOR_MALLOC</code></dt> +<dd>A garbage collection caused because your app attempted to allocate memory when your heap was +already full, so the system had to stop your app and reclaim memory.</dd> + +<dt><code>GC_HPROF_DUMP_HEAP</code></dt> +<dd>A garbage collection that occurs when you create an HPROF file to analyze your heap.</dd> + +<dt><code>GC_EXPLICIT</code> +<dd>An explicit garbage collection, such as when you call {@link java.lang.System#gc()} (which you +should avoid calling and instead trust the garbage collector to run when needed).</dd> + +<dt><code>GC_EXTERNAL_ALLOC</code></dt> +<dd>This happens only on API level 10 and lower (newer versions allocate everything in the Dalvik +heap). A garbage collection for externally allocated memory (such as the pixel data stored in +native memory or NIO byte buffers).</dd> +</dl> +</dd> + +<dt>Amount freed</dt> +<dd>The amount of memory reclaimed from this garbage collection.</dd> + +<dt>Heap stats</dt> +<dd>Percentage free and (number of live objects)/(total heap size).</dd> + +<dt>External memory stats</dt> +<dd>Externally allocated memory on API level 10 and lower (amount of allocated memory) / (limit at +which collection will occur).</dd> + +<dt>Pause time</dt> +<dd>Larger heaps will have larger pause times. Concurrent pause times show two pauses: one at the +beginning of the collection and another near the end.</dd> +</dl> + +<p>For example:</p> + +<pre class="no-pretty-print"> +D/dalvikvm( 9050): GC_CONCURRENT freed 2049K, 65% free 3571K/9991K, external 4703K/5261K, paused 2ms+2ms +</pre> + +<p>As these log messages stack up, look out for increases in the heap stats (the +{@code 3571K/9991K} value in the above example). If this value +continues to increase and doesn't ever seem to get smaller, you could have a memory leak.</p> + + +<h2 id="ViewHeap">Viewing Heap Updates</h2> + +<p>To get a little information about what kind of memory your app is using and when, you can view +real-time updates to your app's heap in the Device Monitor:</p> + +<ol> +<li>Open the Device Monitor. +<p>From your <code><sdk>/tools/</code> directory, launch the <code>monitor</code> tool.</p> +</li> +<li>In the Debug Monitor window, select your app's process from the list on the left.</li> +<li>Click <strong>Update Heap</strong> above the process list.</li> +<li>In the right-side panel, select the <strong>Heap</strong> tab.</li> +</ol> + +<p>The Heap view shows some basic stats about your heap memory usage, updated after every +garbage collection. To see the first update, click the <strong>Cause GC</strong> button.</p> + +<img src="{@docRoot}images/tools/monitor-vmheap@2x.png" width="760" alt="" /> +<p class="img-caption"><strong>Figure 1.</strong> The Device Monitor tool, +showing the <strong>[1] Update Heap</strong> and <strong>[2] Cause GC</strong> buttons. +The Heap tab on the right shows the heap results.</p> + +<p>Continue interacting with your app to watch your heap allocation update with each garbage +collection. This can help you identify which actions in your app are likely causing too much +allocation and where you should try to reduce allocations and release +resources.</p> + + + +<h2 id="TrackAllocations">Tracking Allocations</h2> + +<p>As you start narrowing down memory issues, you should also use the Allocation Tracker to +get a better understanding of where your memory-hogging objects are allocated. The Allocation +Tracker can be useful not only for looking at specific uses of memory, but also to analyze critical +code paths in an app such as scrolling.</p> + +<p>For example, tracking allocations when flinging a list in your app allows you to see all the +allocations that need to be done for that behavior, what thread they are on, and where they came +from. This is extremely valuable for tightening up these paths to reduce the work they need and +improve the overall smoothness of the UI.</p> + +<p>To use Allocation Tracker:</p> +<ol> +<li>Open the Device Monitor. +<p>From your <code><sdk>/tools/</code> directory, launch the <code>monitor</code> tool.</p> +</li> +<li>In the DDMS window, select your app's process in the left-side panel.</li> +<li>In the right-side panel, select the <strong>Allocation Tracker</strong> tab.</li> +<li>Click <strong>Start Tracking</strong>.</li> +<li>Interact with your app to execute the code paths you want to analyze.</li> +<li>Click <strong>Get Allocations</strong> every time you want to update the +list of allocations.</li> + </ol> + +<p>The list shows all recent allocations, +currently limited by a 512-entry ring buffer. Click on a line to see the stack trace that led to +the allocation. The trace shows you not only what type of object was allocated, but also in which +thread, in which class, in which file and at which line.</p> + +<img src="{@docRoot}images/tools/monitor-tracker@2x.png" width="760" alt="" /> +<p class="img-caption"><strong>Figure 2.</strong> The Device Monitor tool, +showing recent app allocations and stack traces in the Allocation Tracker.</p> + + +<p class="note"><strong>Note:</strong> You will always see some allocations from {@code +DdmVmInternal} and else where that come from the allocation tracker itself.</p> + +<p>Although it's not necessary (nor possible) to remove all allocations for your performance +critical code paths, the allocation tracker can help you identify important issues in your code. +For instance, some apps might create a new {@link android.graphics.Paint} object on every draw. +Moving that object into a global member is a simple fix that helps improve performance.</p> + + + + + + +<h2 id="ViewingAllocations">Viewing Overall Memory Allocations</h2> + +<p>For further analysis, you may want to observe how that your app's memory is +divided between different categories, which you can do with the <code>adb meminfo</code> data.</p> + +<p>When talking about how much RAM your app is using with this data, the key metrics +discussed below are:</p> + +<dl> +<dt>Private (Clean and Dirty) RAM</dt> +<dd>This is memory that is being used by only your process. This is the bulk of the RAM that the system +can reclaim when your app’s process is destroyed. Generally, the most important portion of this is +“private dirty” RAM, which is the most expensive because it is used by only your process and its +contents exist only in RAM so can’t be paged to storage (because Android does not use swap). All +Dalvik and native heap allocations you make will be private dirty RAM; Dalvik and native +allocations you share with the Zygote process are shared dirty RAM.</dd> + +<dt>Proportional Set Size (PSS)</dt> +<dd>This is a measurement of your app’s RAM use that takes into account sharing pages across processes. +Any RAM pages that are unique to your process directly contribute to its PSS value, while pages +that are shared with other processes contribute to the PSS value only in proportion to the amount +of sharing. For example, a page that is shared between two processes will contribute half of its +size to the PSS of each process.</dd> +</dl> + + +<p>A nice characteristic of the PSS measurement is that you can add up the PSS across all processes to +determine the actual memory being used by all processes. This means PSS is a good measure for the +actual RAM weight of a process and for comparison against the RAM use of other processes and the +total available RAM.</p> + +<p>You can look at the memory use of your app (measured in kilobytes) with the +following adb command:</p> + +<pre class="no-pretty-print"> +adb shell dumpsys meminfo <package_name> +</pre> + +<p>For example, below is the the output for Gmail’s process on a tablet device. There is a lot of +information here, but key points for discussion are highlighted in different colors.</p> + +<p class="note"><strong>Note:</strong> The information you see may vary slightly from what is shown +here, as some details of the output differ across platform versions.</p> + +<pre class="no-pretty-print"> +** MEMINFO in pid 9953 [com.google.android.gm] ** + Pss Pss Shared Private Shared Private Heap Heap Heap + Total Clean Dirty Dirty Clean Clean Size Alloc Free + ------ ------ ------ ------ ------ ------ ------ ------ ------ + Native Heap 0 0 0 0 0 0 7800 7637(6) 126 + Dalvik Heap 5110(3) 0 4136 4988(3) 0 0 9168 8958(6) 210 + Dalvik Other 2850 0 2684 2772 0 0 + Stack 36 0 8 36 0 0 + Cursor 136 0 0 136 0 0 + Ashmem 12 0 28 0 0 0 + Other dev 380 0 24 376 0 4 + .so mmap 5443(5) 1996 2584 2664(5) 5788 1996(5) + .apk mmap 235 32 0 0 1252 32 + .ttf mmap 36 12 0 0 88 12 + .dex mmap 3019(5) 2148 0 0 8936 2148(5) + Other mmap 107 0 8 8 324 68 + Unknown 6994(4) 0 252 6992(4) 0 0 + TOTAL 24358(1) 4188 9724 17972(2)16388 4260(2)16968 16595 336 + + Objects + Views: 426 ViewRootImpl: 3(8) + AppContexts: 6(7) Activities: 2(7) + Assets: 2 AssetManagers: 2 + Local Binders: 64 Proxy Binders: 34 + Death Recipients: 0 + OpenSSL Sockets: 1 + + SQL + MEMORY_USED: 1739 + PAGECACHE_OVERFLOW: 1164 MALLOC_SIZE: 62 +</pre> + +<p>Generally, you should be concerned with only the <code>Pss Total</code> and <code>Private Dirty</code> +columns. In some cases, the <code>Private Clean</code> and <code>Heap Alloc</code> columns also offer +interesting data. Here is some more information about the different memory allocations (the rows) +you should observe: + +<dl> +<dt><code>Dalvik Heap</code></dt> +<dd>The RAM used by Dalvik allocations in your app. The <code>Pss Total</code> includes all Zygote +allocations (weighted by their sharing across processes, as described in the PSS definition above). +The <code>Private Dirty</code> number is the actual RAM committed to only your app’s heap, composed of +your own allocations and any Zygote allocation pages that have been modified since forking your +app’s process from Zygote. + +<p class="note"><strong>Note:</strong> On newer platform versions that have the <code>Dalvik +Other</code> section, the <code>Pss Total</code> and <code>Private Dirty</code> numbers for Dalvik Heap do +not include Dalvik overhead such as the just-in-time compilation (JIT) and garbage collection (GC) +bookkeeping, whereas older versions list it all combined under <code>Dalvik</code>.</p> + +<p>The <code>Heap Alloc</code> is the amount of memory that the Dalvik and native heap allocators keep +track of for your app. This value is larger than <code>Pss Total</code> and <code>Private Dirty</code> +because your process was forked from Zygote and it includes allocations that your process shares +with all the others.</p> +</dd> + +<dt><code>.so mmap</code> and <code>.dex mmap</code></dt> +<dd>The RAM being used for mmapped <code>.so</code> (native) and <code>.dex</code> (Dalvik) code. The +<code>Pss Total</code> number includes platform code shared across apps; the <code>Private Clean</code> is +your app’s own code. Generally, the actual mapped size will be much larger—the RAM here is only +what currently needs to be in RAM for code that has been executed by the app. However, the .so mmap +has a large private dirty, which is due to fix-ups to the native code when it was loaded into its +final address. +</dd> + +<dt><code>Unknown</code></dt> +<dd>Any RAM pages that the system could not classify into one of the other more specific items. +Currently, this contains mostly native allocations, which cannot be identified by the tool when +collecting this data due to Address Space Layout Randomization (ASLR). As with the Dalvik heap, the +<code>Pss Total</code> for Unknown takes into account sharing with Zygote, and <code>Private Dirty</code> +is unknown RAM dedicated to only your app. +</dd> + +<dt><code>TOTAL</code></dt> +<dd>The total Proportional Set Size (PSS) RAM used by your process. This is the sum of all PSS fields +above it. It indicates the overall memory weight of your process, which can be directly compared +with other processes and the total available RAM. + +<p>The <code>Private Dirty</code> and <code>Private Clean</code> are the total allocations within your +process, which are not shared with other processes. Together (especially <code>Private Dirty</code>), +this is the amount of RAM that will be released back to the system when your process is destroyed. +Dirty RAM is pages that have been modified and so must stay committed to RAM (because there is no +swap); clean RAM is pages that have been mapped from a persistent file (such as code being +executed) and so can be paged out if not used for a while.</p> + +</dd> + +<dt><code>ViewRootImpl</code></dt> +<dd>The number of root views that are active in your process. Each root view is associated with a +window, so this can help you identify memory leaks involving dialogs or other windows. +</dd> + +<dt><code>AppContexts</code> and <code>Activities</code></dt> +<dd>The number of app {@link android.content.Context} and {@link android.app.Activity} objects that +currently live in your process. This can be useful to quickly identify leaked {@link +android.app.Activity} objects that can’t be garbage collected due to static references on them, +which is common. These objects often have a lot of other allocations associated with them and so +are a good way to track large memory leaks.</dd> + +<p class="note"><strong>Note:</strong> A {@link android.view.View} or {@link +android.graphics.drawable.Drawable} object also holds a reference to the {@link +android.app.Activity} that it's from, so holding a {@link android.view.View} or {@link +android.graphics.drawable.Drawable} object can also lead to your app leaking an {@link +android.app.Activity}.</p> + +</dd> +</dl> + + + + + + + + + +<h2 id="HeapDump">Capturing a Heap Dump</h2> + +<p>A heap dump is a snapshot of all the objects in your app's heap, stored in a binary format called +HPROF. Your app's heap dump provides information about the overall state of your app's heap so you +can track down problems you might have identified while viewing heap updates.</p> + +<p>To retrieve your heap dump:</p> +<ol> +<li>Open the Device Monitor. +<p>From your <code><sdk>/tools/</code> directory, launch the <code>monitor</code> tool.</p> +</li> +<li>In the DDMS window, select your app's process in the left-side panel.</li> +<li>Click <strong>Dump HPROF file</strong>, shown in figure 3.</li> +<li>In the window that appears, name your HPROF file, select the save location, +then click <strong>Save</strong>.</li> +</ol> + +<img src="{@docRoot}images/tools/monitor-hprof@2x.png" width="760" alt="" /> +<p class="img-caption"><strong>Figure 3.</strong> The Device Monitor tool, +showing the <strong>[1] Dump HPROF file</strong> button.</p> + +<p>If you need to be more precise about when the dump is created, you can also create a heap dump +at the critical point in your app code by calling {@link android.os.Debug#dumpHprofData +dumpHprofData()}.</p> + +<p>The heap dump is provided in a format that's similar to, but not identical to one from the Java +HPROF tool. The major difference in an Android heap dump is due to the fact that there are a large +number of allocations in the Zygote process. But because the Zygote allocations are shared across +all app processes, they don’t matter very much to your own heap analysis.</p> + +<p>To analyze your heap dump, you can use a standard tool like jhat or the <a href= +"http://www.eclipse.org/mat/downloads.php">Eclipse Memory Analyzer Tool</a> (MAT). However, first +you'll need to convert the HPROF file from Android's format to the J2SE HPROF format. You can do +this using the <code>hprof-conv</code> tool provided in the <code><sdk>/tools/</code> +directory. Simply run the <code>hprof-conv</code> command with two arguments: the original HPROF +file and the location to write the converted HPROF file. For example:</p> + +<pre class="no-pretty-print"> +hprof-conv heap-original.hprof heap-converted.hprof +</pre> + +<p class="note"><strong>Note:</strong> If you're using the version of DDMS that's integrated into +Eclipse, you do not need to perform the HPROF converstion—it performs the conversion by +default.</p> + +<p>You can now load the converted file in MAT or another heap analysis tool that understands +the J2SE HPROF format.</p> + +<p>When analyzing your heap, you should look for memory leaks caused by:</p> +<ul> +<li>Long-lived references to an Activity, Context, View, Drawable, and other objects that may hold a +reference to the container Activity or Context.</li> +<li>Non-static inner classes (such as a Runnable, which can hold the Activity instance).</li> +<li>Caches that hold objects longer than necessary.</li> +</ul> + + +<h3 id="EclipseMat">Using the Eclipse Memory Analyzer Tool</h3> + +<p>The <a href= +"http://www.eclipse.org/mat/downloads.php">Eclipse Memory Analyzer Tool</a> (MAT) is just one +tool that you can use to analyze your heap dump. It's also quite powerful so most of its +capabilities are beyond the scope of this document, but here are a few tips to get you started. + +<p>Once you open your converted HPROF file in MAT, you'll see a pie chart in the Overview, +showing what your largest objects are. Below this chart, are links to couple of useful features:</p> + +<ul> + <li>The <strong>Histogram view</strong> shows a list of all classes and how many instances + there are of each. + <p>You might want to use this view to find extra instances of classes for which you know there + should be only a certain number. For example, a common source of leaks is additional instance of + your {@link android.app.Activity} class, for which you should usually have only one instance + at a time. To find a specific class instance, type the class name into the <em><Regex></em> + field at the top of the list. + <p>When you find a class with too many instances, right-click it and select + <strong>List objects</strong> > <strong>with incoming references</strong>. In the list that + appears, you can determine where an instance is retained by right-clicking it and selecting + <strong>Path To GC Roots</strong> > <strong>exclude weak references</strong>.</p> + </li> + + <li>The <strong>Dominator tree</strong> shows a list of objects organized by the amount + of retained heap. + <p>What you should look for is anything that's retaining a portion of heap that's roughly + equivalent to the memory size you observed leaking from the <a href="#LogMessages">GC logs</a>, + <a href="#ViewHeap">heap updates</a>, or <a href="#TrackAllocations">allocation + tracker</a>. + <p>When you see something suspicious, right-click on the item and select + <strong>Path To GC Roots</strong> > <strong>exclude weak references</strong>. This opens a + new tab that traces the references to that object which is causing the alleged leak.</p> + + <p class="note"><strong>Note:</strong> Most apps will show an instance of + {@link android.content.res.Resources} near the top with a good chunk of heap, but this is + usually expected when your app uses lots of resources from your {@code res/} directory.</p> + </li> +</ul> + + +<img src="{@docRoot}images/tools/mat-histogram@2x.png" width="760" alt="" /> +<p class="img-caption"><strong>Figure 4.</strong> The Eclipse Memory Analyzer Tool (MAT), +showing the Histogram view and a search for "MainActivity".</p> + +<p>For more information about MAT, watch the Google I/O 2011 presentation, +<a href="http://www.youtube.com/watch?v=_CruQY55HOk">Memory management for Android apps</a>, +which includes a walkthrough using MAT beginning at about <a href= +"http://www.youtube.com/watch?v=_CruQY55HOk&feature=player_detailpage#t=1270">21:10</a>. +Also refer to the <a href="http://wiki.eclipse.org/index.php/MemoryAnalyzer">Eclipse Memory +Analyzer documentation</a>.</p> + +<h4 id="MatCompare">Comparing heap dumps</h4> + +<p>You may find it useful to compare your app's heap state at two different points in time in order +to inspect the changes in memory allocation. To compare two heap dumps using MAT:</p> + +<ol> + <li>Create two HPROF files as described above, in <a href="#HeapDump">Capturing a Heap Dump</a>. + <li>Open the first HPROF file in MAT (<strong>File</strong> > <strong>Open Heap Dump</strong>). + <li>In the Navigation History view (if not visible, select <strong>Window</strong> > + <strong>Navigation History</strong>), right-click on <strong>Histogram</strong> and select + <strong>Add to Compare Basket</strong>. + <li>Open the second HPROF file and repeat steps 2 and 3. + <li>Switch to the <em>Compare Basket</em> view and click <strong>Compare the Results</strong> + (the red "!" icon in the top-right corner of the view). +</ol> + + + + + + +<h2 id="TriggerLeaks">Triggering Memory Leaks</h2> + +<p>While using the tools described above, you should aggressively stress your app code and try +forcing memory leaks. One way to provoke memory leaks in your app is to let it +run for a while before inspecting the heap. Leaks will trickle up to the top of the allocations in +the heap. However, the smaller the leak, the longer you need to run the app in order to see it.</p> + +<p>You can also trigger a memory leak in one of the following ways:</p> +<ol> +<li>Rotate the device from portrait to landscape and back again multiple times while in different +activity states. Rotating the device can often cause an app to leak an {@link android.app.Activity}, +{@link android.content.Context}, or {@link android.view.View} object because the system +recreates the {@link android.app.Activity} and if your app holds a reference +to one of those objects somewhere else, the system can't garbage collect it.</li> +<li>Switch between your app and another app while in different activity states (navigate to +the Home screen, then return to your app).</li> +</ol> + +<p class="note"><strong>Tip:</strong> You can also perform the above steps by using the "monkey" +test framework. For more information on running the monkey test framework, read the <a href= +"{@docRoot}tools/help/monkeyrunner_concepts.html">monkeyrunner</a> +documentation.</p>
\ No newline at end of file diff --git a/docs/html/tools/help/monitor.jd b/docs/html/tools/help/monitor.jd index 18fb49a3b3f0..e1fe7721a136 100644 --- a/docs/html/tools/help/monitor.jd +++ b/docs/html/tools/help/monitor.jd @@ -1,6 +1,18 @@ page.title=Device Monitor @jd:body + <div id="qv-wrapper"> + <div id="qv"> + <h2>See also</h2> + + <ol> + <li><a href="{@docRoot}tools/debugging/debugging-memory.html" + >Investigating Your RAM Usage</a></li> + </ol> + </div> + </div> + + <p>Android Device Monitor is a stand-alone tool that provides a graphical user interface for several Android application debugging and analysis tools. The Monitor tool does not require installation of a integrated development environment, such as Eclipse, and encapsulates the @@ -14,6 +26,7 @@ following tools:</p> <li>Pixel Perfect magnification viewer</li> </ul> + <h2 id="usage">Usage</h2> <p>To start Device Monitor, enter the following command from the SDK <code>tools/</code> @@ -22,3 +35,7 @@ directory:</p> <p>Start an Android emulator or connect an Android device via USB cable, and connect Device Monitor to the device by selecting it in the <strong>Devices</strong> window.</p> + +<p class="note"><strong>Note:</strong> Only one debugger can be connected to your device at a time. +If you're using ADT, you may need to close the debugging tool before launching the Device Monitor +in order for the device to be fully debuggable.</p> diff --git a/docs/html/tools/tools_toc.cs b/docs/html/tools/tools_toc.cs index 8ad61ec20f53..39eecf81ad0c 100644 --- a/docs/html/tools/tools_toc.cs +++ b/docs/html/tools/tools_toc.cs @@ -139,6 +139,7 @@ <li><a href="<?cs var:toroot ?>tools/debugging/debugging-ui.html"><span class="en">Optimizing your UI</span></a></li> <li><a href="<?cs var:toroot ?>tools/debugging/debugging-tracing.html"><span class="en">Profiling with Traceview and dmtracedump</span></a></li> <li><a href="<?cs var:toroot ?>tools/debugging/systrace.html"><span class="en">Analysing Display and Performance with Systrace</span></a></li> + <li><a href="<?cs var:toroot ?>tools/debugging/debugging-memory.html">Investigating Your RAM Usage</a></li> <li><a href="<?cs var:toroot ?>tools/debugging/debugging-devtools.html"><span class="en">Using the Dev Tools App</span></a></li> </ul> </li> diff --git a/docs/html/training/articles/memory.jd b/docs/html/training/articles/memory.jd new file mode 100644 index 000000000000..cdc0cd42d21b --- /dev/null +++ b/docs/html/training/articles/memory.jd @@ -0,0 +1,740 @@ +page.title=Managing Your App's Memory +page.tags="ram","low memory","OutOfMemoryError","onTrimMemory" +page.article=true +@jd:body + + +<div id="tb-wrapper"> +<div id="tb"> + +<h2>In this document</h2> +<ol class="nolist"> + <li><a href="#Android">How Android Manages Memory</a> + <ol> + <li><a href="#SharingRAM">Sharing Memory</a></li> + <li><a href="#AllocatingRAM">Allocating and Reclaiming App Memory</a></li> + <li><a href="#RestrictingMemory">Restricting App Memory</a></li> + <li><a href="#SwitchingApps">Switching Apps</a></li> + </ol> + </li> + <li><a href="#YourApp">How Your App Should Manage Memory</a> + <ol> + <li><a href="#Services">Use services sparingly</a></li> + <li><a href="#ReleaseMemoryAsUiGone">Release memory when your user interface becomes hidden</a></li> + <li><a href="#ReleaseMemoryAsTight">Release memory as memory becomes tight</a></li> + <li><a href="#CheckHowMuchMemory">Check how much memory you should use</a></li> + <li><a href="#Bitmaps">Avoid wasting memory with bitmaps</a></li> + <li><a href="#DataContainers">Use optimized data containers</a></li> + <li><a href="#Overhead">Be aware of memory overhead</a></li> + <li><a href="#Abstractions">Be careful with code abstractions</a></li> + <li><a href="#NanoProto">Use nano protobufs for serialized data</a></li> + <li><a href="#DependencyInjection">Avoid dependency injection frameworks</a></li> + <li><a href="#ExternalLibs">Be careful about using external libraries</a></li> + <li><a href="#OverallPerf">Optimize overall performance</a></li> + <li><a href="#Proguard">Use ProGuard to strip out any unneeded code</a></li> + <li><a href="#Zipalign">Use zipalign on your final APK</a></li> + <li><a href="#AnalyzeRam">Analyze your RAM usage</a></li> + <li><a href="#MultipleProcesses">Use multiple processes</a></li> + </ol> + </li> +</ol> +<h2>See Also</h2> +<ul> + <li><a href="{@docRoot}tools/debugging/debugging-memory.html">Investigating Your RAM Usage</a> + </li> +</ul> + +</div> +</div> + + +<p>Random-access memory (RAM) is a valuable resource in any software development environment, but +it's even more valuable on a mobile operating system where physical memory is often constrained. +Although Android's Dalvik virtual machine performs routine garbage collection, this doesn't allow +you to ignore when and where your app allocates and releases memory.</p> + +<p>In order for the garbage collector to reclaim memory from your app, you need to avoid +introducing memory leaks (usually caused by holding onto object references in global members) and +release any {@link java.lang.ref.Reference} objects at the appropriate time (as defined by +lifecycle callbacks discussed further below). For most apps, the Dalvik garbage collector takes +care of the rest: the system reclaims your memory allocations when the corresponding objects leave +the scope of your app's active threads.</p> + +<p>This document explains how Android manages app processes and memory allocation, and how you can +proactively reduce memory usage while developing for Android. For more information about general +practices to clean up your resources when programming in Java, refer to other books or online +documentation about managing resource references. If you’re looking for information about how to +analyze your app’s memory once you’ve already built it, read <a +href="{@docRoot}tools/debugging/debugging-memory.html">Investigating Your RAM Usage</a>.</p> + + + + +<h2 id="Android">How Android Manages Memory</h2> + +<p>Android does not offer swap space for memory, but it does use <a href= +"http://en.wikipedia.org/wiki/Paging" class="external-link">paging</a> and <a href= +"http://en.wikipedia.org/wiki/Memory-mapped_files" class="external-link">memory-mapping</a> +(mmapping) to manage memory. This means that any memory you modify—whether by allocating +new objects or touching mmapped pages—remains resident in RAM and cannot be paged out. +So the only way to completely release memory from your app is to release object references you may +be holding, making the memory available to the garbage collector. That is with one exception: +any files mmapped in without modification, such as code, can be paged out of RAM if the system +wants to use that memory elsewhere.</p> + + +<h3 id="SharingRAM">Sharing Memory</h3> + +<p>In order to fit everything it needs in RAM, Android tries to share RAM pages across processes. It +can do so in the following ways:</p> +<ul> +<li>Each app process is forked from an existing process called Zygote. +The Zygote process starts when the system boots and loads common framework code and resources +(such as activity themes). To start a new app process, the system forks the Zygote process then +loads and runs the app's code in the new process. This allows most of the RAM pages allocated for +framework code and resources to be shared across all app processes.</li> + +<li>Most static data is mmapped into a process. This not only allows that same data to be shared +between processes but also allows it to be paged out when needed. Example static data include: +Dalvik code (by placing it in a pre-linked {@code .odex} file for direct mmapping), app resources +(by designing the resource table to be a structure that can be mmapped and by aligning the zip +entries of the APK), and traditional project elements like native code in {@code .so} files.</li> + +<li>In many places, Android shares the same dynamic RAM across processes using explicitly allocated +shared memory regions (either with ashmem or gralloc). For example, window surfaces use shared +memory between the app and screen compositor, and cursor buffers use shared memory between the +content provider and client.</li> +</ul> + +<p>Due to the extensive use of shared memory, determining how much memory your app is using requires +care. Techniques to properly determine your app's memory use are discussed in <a +href="{@docRoot}tools/debugging/debugging-memory.html">Investigating Your RAM Usage</a>.</p> + + +<h3 id="AllocatingRAM">Allocating and Reclaiming App Memory</h3> + +<p>Here are some facts about how Android allocates then reclaims memory from your app:</p> + +<ul> +<li>The Dalvik heap for each process is constrained to a single virtual memory range. This defines +the logical heap size, which can grow as it needs to (but only up to a limit that the system defines +for each app).</li> + +<li>The logical size of the heap is not the same as the amount of physical memory used by the heap. +When inspecting your app's heap, Android computes a value called the Proportional Set Size (PSS), +which accounts for both dirty and clean pages that are shared with other processes—but only in an +amount that's proportional to how many apps share that RAM. This (PSS) total is what the system +considers to be your physical memory footprint. For more information about PSS, see the <a +href="{@docRoot}tools/debugging/debugging-memory.html#ViewingAllocations">Investigating Your +RAM Usage</a> guide.</li> + +<li>The Dalvik heap does not compact the logical size of the heap, meaning that Android does not +defragment the heap to close up space. Android can only shrink the logical heap size when there +is unused space at the end of the heap. But this doesn't mean the physical memory used by the heap +can't shrink. After garbage collection, Dalvik walks the heap and finds unused pages, then returns +those pages to the kernel using madvise. So, paired allocations and deallocations of large +chunks should result in reclaiming all (or nearly all) the physical memory used. However, +reclaiming memory from small allocations can be much less efficient because the page used +for a small allocation may still be shared with something else that has not yet been freed.</li> +</ul> + + +<h3 id="RestrictingMemory">Restricting App Memory</h3> + +<p>To maintain a functional multi-tasking environment, Android sets a hard limit on the heap size +for each app. The exact heap size limit varies between devices based on how much RAM the device +has available overall. If your app has reached the heap capacity and tries to allocate more +memory, it will receive an {@link java.lang.OutOfMemoryError}.</p> + +<p>In some cases, you might want to query the system to determine exactly how much heap space you +have available on the current device—for example, to determine how much data is safe to keep in a +cache. You can query the system for this figure by calling {@link +android.app.ActivityManager#getMemoryClass()}. This returns an integer indicating the number of +megabytes available for your app's heap. This is discussed further below, under +<a href="#CheckHowMuchMemory">Check how much memory you should use</a>.</p> + + +<h3 id="SwitchingApps">Switching Apps</h3> + +<p>Instead of using swap space when the user switches between apps, Android keeps processes that +are not hosting a foreground ("user visible") app component in a least-recently used (LRU) cache. +For example, when the user first launches an app, a process is created for it, but when the user +leaves the app, that process does <em>not</em> quit. The system keeps the process cached, so if +the user later returns to the app, the process is reused for faster app switching.</p> + +<p>If your app has a cached process and it retains memory that it currently does not need, +then your app—even while the user is not using it—is constraining the system's +overall performance. So, as the system runs low on memory, it may kill processes in the LRU cache +beginning with the process least recently used, but also giving some consideration toward +which processes are most memory intensive. To keep your process cached as long as possible, follow +the advice in the following sections about when to release your references.</p> + +<p>More information about how processes are cached while not running in the foreground and how +Android decides which ones +can be killed is available in the <a href="{@docRoot}guide/components/processes-and-threads.html" +>Processes and Threads</a> guide.</p> + + + + +<h2 id="YourApp">How Your App Should Manage Memory</h2> + +<p>You should consider RAM constraints throughout all phases of development, including during app +design (before you begin development). There are many +ways you can design and write code that lead to more efficient results, through aggregation of the +same techniques applied over and over.</p> + +<p>You should apply the following techniques while designing and implementing your app to make it +more memory efficient.</p> + + +<h3 id="Services">Use services sparingly</h3> + +<p>If your app needs a <a href="{@docRoot}guide/components/services.html">service</a> +to perform work in the background, do not keep it running unless +it's actively performing a job. Also be careful to never leak your service by failing to stop it +when its work is done.</p> + +<p>When you start a service, the system prefers to always keep the process for that service +running. This makes the process very expensive because the RAM used by the service can’t be used by +anything else or paged out. This reduces the number of cached processes that the system can keep in +the LRU cache, making app switching less efficient. It can even lead to thrashing in the system +when memory is tight and the system can’t maintain enough processes to host all the services +currently running.</p> + +<p>The best way to limit the lifespan of your service is to use an {@link +android.app.IntentService}, which finishes +itself as soon as it's done handling the intent that started it. For more information, read +<a href="{@docRoot}training/run-background-service/index.html">Running in a Background Service</a> +.</p> + +<p>Leaving a service running when it’s not needed is <strong>one of the worst memory-management +mistakes</strong> an Android app can make. So don’t be greedy by keeping a service for your app +running. Not only will it increase the risk of your app performing poorly due to RAM constraints, +but users will discover such misbehaving apps and uninstall them.</p> + + +<h3 id="ReleaseMemoryAsUiGone">Release memory when your user interface becomes hidden</h3> + +<p>When the user navigates to a different app and your UI is no longer visible, you should +release any resources that are used by only your UI. Releasing UI resources at this time can +significantly increase the system's capacity for cached processes, which has a direct impact on the +quality of the user experience.</p> + +<p>To be notified when the user exits your UI, implement the {@link +android.content.ComponentCallbacks2#onTrimMemory onTrimMemory()} callback in your {@link +android.app.Activity} classes. You should use this +method to listen for the {@link android.content.ComponentCallbacks2#TRIM_MEMORY_UI_HIDDEN} level, +which indicates your UI is now hidden from view and you should free resources that only your UI +uses.</p> + + +<p>Notice that your app receives the {@link android.content.ComponentCallbacks2#onTrimMemory +onTrimMemory()} callback with {@link android.content.ComponentCallbacks2#TRIM_MEMORY_UI_HIDDEN} +only when <em>all the UI components</em> of your app process become hidden from the user. +This is distinct +from the {@link android.app.Activity#onStop onStop()} callback, which is called when an {@link +android.app.Activity} instance becomes hidden, which occurs even when the user moves to +another activity in your app. So although you should implement {@link android.app.Activity#onStop +onStop()} to release activity resources such as a network connection or to unregister broadcast +receivers, you usually should not release your UI resources until you receive {@link +android.content.ComponentCallbacks2#onTrimMemory onTrimMemory(TRIM_MEMORY_UI_HIDDEN)}. This ensures +that if the user navigates <em>back</em> from another activity in your app, your UI resources are +still available to resume the activity quickly.</p> + + + +<h3 id="ReleaseMemoryAsTight">Release memory as memory becomes tight</h3> + +<p>During any stage of your app's lifecycle, the {@link +android.content.ComponentCallbacks2#onTrimMemory onTrimMemory()} callback also tells you when +the overall device memory is getting low. You should respond by further releasing resources based +on the following memory levels delivered by {@link android.content.ComponentCallbacks2#onTrimMemory +onTrimMemory()}:</p> + +<ul> +<li>{@link android.content.ComponentCallbacks2#TRIM_MEMORY_RUNNING_MODERATE} +<p>Your app is running and not considered killable, but the device is running low on memory and the +system is actively killing processes in the LRU cache.</p> +</li> + +<li>{@link android.content.ComponentCallbacks2#TRIM_MEMORY_RUNNING_LOW} +<p>Your app is running and not considered killable, but the device is running much lower on +memory so you should release unused resources to improve system performance (which directly +impacts your app's performance).</p> +</li> + +<li>{@link android.content.ComponentCallbacks2#TRIM_MEMORY_RUNNING_CRITICAL} +<p>Your app is still running, but the system has already killed most of the processes in the +LRU cache, so you should release all non-critical resources now. If the system cannot reclaim +sufficient amounts of RAM, it will clear all of the LRU cache and begin killing processes that +the system prefers to keep alive, such as those hosting a running service.</p> +</li> +</ul> + +<p>Also, when your app process is currently cached, you may receive one of the following +levels from {@link android.content.ComponentCallbacks2#onTrimMemory onTrimMemory()}:</p> +<ul> +<li>{@link android.content.ComponentCallbacks2#TRIM_MEMORY_BACKGROUND} +<p>The system is running low on memory and your process is near the beginning of the LRU list. +Although your app process is not at a high risk of being killed, the system may already be killing +processes in the LRU cache. You should release resources that are easy to recover so your process +will remain in the list and resume quickly when the user returns to your app.</p> +</li> + +<li>{@link android.content.ComponentCallbacks2#TRIM_MEMORY_MODERATE} +<p>The system is running low on memory and your process is near the middle of the LRU list. If the +system becomes further constrained for memory, there's a chance your process will be killed.</p> +</li> + +<li>{@link android.content.ComponentCallbacks2#TRIM_MEMORY_COMPLETE} +<p>The system is running low on memory and your process is one of the first to be killed if the +system does not recover memory now. You should release everything that's not critical to +resuming your app state.</p> + +</li> +</ul> + +<p>Because the {@link android.content.ComponentCallbacks2#onTrimMemory onTrimMemory()} callback was +added in API level 14, you can use the {@link android.content.ComponentCallbacks#onLowMemory()} +callback as a fallback for older versions, which is roughly equivalent to the {@link +android.content.ComponentCallbacks2#TRIM_MEMORY_COMPLETE} event.</p> + +<p class="note"><strong>Note:</strong> When the system begins killing processes in the LRU cache, +although it primarily works bottom-up, it does give some consideration to which processes are +consuming more memory and will thus provide the system more memory gain if killed. +So the less memory you consume while in the LRU list overall, the better your chances are +to remain in the list and be able to quickly resume.</p> + + + +<h3 id="CheckHowMuchMemory">Check how much memory you should use</h3> + +<p>As mentioned earlier, each Android-powered device has a different amount of RAM available to the +system and thus provides a different heap limit for each app. You can call {@link +android.app.ActivityManager#getMemoryClass()} to get an estimate of your app's available heap in +megabytes. If your app tries to allocate more memory than is available here, it will receive an +{@link java.lang.OutOfMemoryError}.</p> + +<p>In very special situations, you can request a larger heap size by setting the <a +href="{@docRoot}guide/topics/manifest/application-element.html#largeHeap">{@code largeHeap}</a> +attribute to "true" in the manifest <a +href="{@docRoot}guide/topics/manifest/application-element.html">{@code <application>}</a> +tag. If you do so, you can call {@link +android.app.ActivityManager#getLargeMemoryClass()} to get an estimate of the large heap size.</p> + +<p>However, the ability to request a large heap is intended only for a small set of apps that can +justify the need to consume more RAM (such as a large photo editing app). <strong>Never request a +large heap simply because you've run out of memory</strong> and you need a quick fix—you +should use it only when you know exactly where all your memory is being allocated and why it must +be retained. Yet, even when you're confident your app can justify the large heap, you should avoid +requesting it to whatever extent possible. Using the extra memory will increasingly be to the +detriment of the overall user experience because garbage collection will take longer and system +performance may be slower when task switching or performing other common operations.</p> + +<p>Additionally, the large heap size is not the same on all devices and, when running on +devices that have limited RAM, the large heap size may be exactly the same as the regular heap +size. So even if you do request the large heap size, you should call {@link +android.app.ActivityManager#getMemoryClass()} to check the regular heap size and strive to always +stay below that limit.</p> + + +<h3 id="Bitmaps">Avoid wasting memory with bitmaps</h3> + +<p>When you load a bitmap, keep it in RAM only at the resolution you need for the current device's +screen, scaling it down if the original bitmap is a higher resolution. Keep in mind that an +increase in bitmap resolution results in a corresponding (increase<sup>2</sup>) in memory needed, +because both the X and Y dimensions increase.</p> + +<p class="note"><strong>Note:</strong> On Android 2.3.x (API level 10) and below, bitmap objects +always appear as the same size in your app heap regardless of the image resolution (the actual +pixel data is stored separately in native memory). This makes it more difficult to debug the bitmap +memory allocation because most heap analysis tools do not see the native allocation. However, +beginning in Android 3.0 (API level 11), the bitmap pixel data is allocated in your app's Dalvik +heap, improving garbage collection and debuggability. So if your app uses bitmaps and you're having +trouble discovering why your app is using some memory on an older device, switch to a device +running Android 3.0 or higher to debug it.</p> + +<p>For more tips about working with bitmaps, read <a +href="{@docRoot}training/displaying-bitmaps/manage-memory.html">Managing Bitmap Memory</a>.</p> + + +<h3 id="DataContainers">Use optimized data containers</h3> + +<p>Take advantage of optimized containers in the Android framework, such as {@link +android.util.SparseArray}, {@link android.util.SparseBooleanArray}, and {@link +android.support.v4.util.LongSparseArray}. The generic {@link java.util.HashMap} +implementation can be quite memory +inefficient because it needs a separate entry object for every mapping. Additionally, the {@link +android.util.SparseArray} classes are more efficient because they avoid the system's need +to <acronym title= +"Automatic conversion from primitive types to object classes (such as int to Integer)" +>autobox</acronym> +the key and sometimes value (which creates yet another object or two per entry). And don't be +afraid of dropping down to raw arrays when that makes sense.</p> + + + +<h3 id="Overhead">Be aware of memory overhead</h3> + +<p>Be knowledgeable about the cost and overhead of the language and libraries you are using, and +keep this information in mind when you design your app, from start to finish. Often, things on the +surface that look innocuous may in fact have a large amount of overhead. Examples include:</p> +<ul> +<li>Enums often require more than twice as much memory as static constants. You should strictly +avoid using enums on Android.</li> + +<li>Every class in Java (including anonymous inner classes) uses about 500 bytes of code.</li> + +<li>Every class instance has 12-16 bytes of RAM overhead.</li> + +<li>Putting a single entry into a {@link java.util.HashMap} requires the allocation of an +additional entry object that takes 32 bytes (see the previous section about <a +href="#DataContainers">optimized data containers</a>).</li> +</ul> + +<p>A few bytes here and there quickly add up—app designs that are class- or object-heavy will suffer +from this overhead. That can leave you in the difficult position of looking at a heap analysis and +realizing your problem is a lot of small objects using up your RAM.</p> + + +<h3 id="Abstractions">Be careful with code abstractions</h3> + +<p>Often, developers use abstractions simply as a "good programming practice," because abstractions +can improve code flexibility and maintenance. However, abstractions come at a significant cost: +generally they require a fair amount more code that needs to be executed, requiring more time and +more RAM for that code to be mapped into memory. So if your abstractions aren't supplying a +significant benefit, you should avoid them.</p> + + +<h3 id="NanoProto">Use nano protobufs for serialized data</h3> + +<p><a href="https://developers.google.com/protocol-buffers/docs/overview">Protocol +buffers</a> are a language-neutral, platform-neutral, extensible mechanism designed by Google for +serializing structured data—think XML, but smaller, faster, and simpler. If you decide to use +protobufs for your data, you should always use nano protobufs in your client-side code. Regular +protobufs generate extremely verbose code, which will cause many kinds of problems in your app: +increased RAM use, significant APK size increase, slower execution, and quickly hitting the DEX +symbol limit.</p> + +<p>For more information, see the "Nano version" section in the <a +href="https://android.googlesource.com/platform/external/protobuf/+/master/java/README.txt" +class="external-link">protobuf readme</a>.</p> + + + +<h3 id="DependencyInjection">Avoid dependency injection frameworks</h3> + +<p>Using a dependency injection framework such as <a +href="https://code.google.com/p/google-guice/" class="external-link">Guice</a> or +<a href="https://github.com/roboguice/roboguice" class="external-link">RoboGuice</a> may be +attractive because they can simplify the code you write and provide an adaptive environment +that's useful for testing and other configuration changes. However, these frameworks tend to perform +a lot of process initialization by scanning your code for annotations, which can require significant +amounts of your code to be mapped into RAM even though you don't need it. These mapped pages are +allocated into clean memory so Android can drop them, but that won't happen until the pages have +been left in memory for a long period of time.</p> + + +<h3 id="ExternalLibs">Be careful about using external libraries</h3> + +<p>External library code is often not written for mobile environments and can be inefficient when used +for work on a mobile client. At the very least, when you decide to use an external library, you +should assume you are taking on a significant porting and maintenance burden to optimize the +library for mobile. Plan for that work up-front and analyze the library in terms of code size and +RAM footprint before deciding to use it at all.</p> + +<p>Even libraries supposedly designed for use on Android are potentially dangerous because each +library may do things differently. For example, one library may use nano protobufs while another +uses micro protobufs. Now you have two different protobuf implementations in your app. This can and +will also happen with different implementations of logging, analytics, image loading frameworks, +caching, and all kinds of other things you don't expect. <a +href="{@docRoot}tools/help/proguard.html">ProGuard</a> won't save you here because these +will all be lower-level dependencies that are required by the features for which you want the +library. This becomes especially problematic when you use an {@link android.app.Activity} +subclass from a library (which +will tend to have wide swaths of dependencies), when libraries use reflection (which is common and +means you need to spend a lot of time manually tweaking ProGuard to get it to work), and so on.</p> + +<p>Also be careful not to fall into the trap of using a shared library for one or two features out of +dozens of other things it does; you don't want to pull in a large amount of code and overhead that +you don't even use. At the end of the day, if there isn't an existing implementation that is a +strong match for what you need to do, it may be best if you create your own implementation.</p> + + +<h3 id="OverallPerf">Optimize overall performance</h3> + +<p>A variety of information about optimizing your app's overall performance is available +in other documents listed in <a href="{@docRoot}training/best-performance.html">Best Practices +for Performance</a>. Many of these documents include optimizations tips for CPU performance, but +many of these tips also help optimize your app's memory use, such as by reducing the number of +layout objects required by your UI.</p> + +<p>You should also read about <a href="{@docRoot}tools/debugging/debugging-ui.html">optimizing +your UI</a> with the layout debugging tools and take advantage of +the optimization suggestions provided by the <a +href="{@docRoot}tools/debugging/improving-w-lint.html">lint tool</a>.</p> + + +<h3 id="Proguard">Use ProGuard to strip out any unneeded code</h3> + +<p>The <a href="{@docRoot}tools/help/proguard.html">ProGuard</a> tool shrinks, +optimizes, and obfuscates your code by removing unused code and renaming classes, fields, and +methods with semantically obscure names. Using ProGuard can make your code more compact, requiring +fewer RAM pages to be mapped.</p> + + +<h3 id="Zipalign">Use zipalign on your final APK</h3> + +<p>If you do any post-processing of an APK generated by a build system (including signing it +with your final production certificate), then you must run <a +href="{@docRoot}tools/help/zipalign.html">zipalign</a> on it to have it re-aligned. +Failing to do so can cause your app to require significantly more RAM, because things like +resources can no longer be mmapped from the APK.</p> + +<p class="note"><strong>Note:</strong> Google Play Store does not accept APK files that +are not zipaligned.</p> + + +<h3 id="AnalyzeRam">Analyze your RAM usage</h3> + +<p>Once you achieve a relatively stable build, begin analyzing how much RAM your app is using +throughout all stages of its lifecycle. For information about how to analyze your app, read <a +href="{@docRoot}tools/debugging/debugging-memory.html">Investigating Your RAM Usage</a>.</p> + + + + +<h3 id="MultipleProcesses">Use multiple processes</h3> + +<p>If it's appropriate for your app, an advanced technique that may help you manage your app's +memory is dividing components of your app into multiple processes. This technique must always be +used carefully and <strong>most apps should not run multiple processes</strong>, as it can easily +increase—rather than decrease—your RAM footprint if done incorrectly. It is primarily +useful to apps that may run significant work in the background as well as the foreground and can +manage those operations separately.</p> + + +<p>An example of when multiple processes may be appropriate is when building a music player that +plays music from a service for long period of time. If +the entire app runs in one process, then many of the allocations performed for its activity UI must +be kept around as long as it is playing music, even if the user is currently in another app and the +service is controlling the playback. An app like this may be split into two process: one for its +UI, and the other for the work that continues running in the background service.</p> + +<p>You can specify a separate process for each app component by declaring the <a href= +"{@docRoot}guide/topics/manifest/service-element.html#proc">{@code android:process}</a> attribute +for each component in the manifest file. For example, you can specify that your service should run +in a process separate from your app's main process by declaring a new process named "background" +(but you can name the process anything you like):</p> + +<pre> +<service android:name=".PlaybackService" + android:process=":background" /> +</pre> + +<p>Your process name should begin with a colon (':') to ensure that the process remains private to +your app.</p> + +<p>Before you decide to create a new process, you need to understand the memory implications. +To illustrate the consequences of each process, consider that an empty process doing basically +nothing has an extra memory footprint of about 1.4MB, as shown by the memory information +dump below.</p> + +<pre class="no-pretty-print"> +adb shell dumpsys meminfo com.example.android.apis:empty + +** MEMINFO in pid 10172 [com.example.android.apis:empty] ** + Pss Pss Shared Private Shared Private Heap Heap Heap + Total Clean Dirty Dirty Clean Clean Size Alloc Free + ------ ------ ------ ------ ------ ------ ------ ------ ------ + Native Heap 0 0 0 0 0 0 1864 1800 63 + Dalvik Heap 764 0 5228 316 0 0 5584 5499 85 + Dalvik Other 619 0 3784 448 0 0 + Stack 28 0 8 28 0 0 + Other dev 4 0 12 0 0 4 + .so mmap 287 0 2840 212 972 0 + .apk mmap 54 0 0 0 136 0 + .dex mmap 250 148 0 0 3704 148 + Other mmap 8 0 8 8 20 0 + Unknown 403 0 600 380 0 0 + TOTAL 2417 148 12480 1392 4832 152 7448 7299 148 +</pre> + +<p class="note"><strong>Note:</strong> More information about how to read this output is provided +in <a href="{@docRoot}tools/debugging/debugging-memory.html#ViewingAllocations">Investigating +Your RAM Usage</a>. The key data here is the <em>Private Dirty</em> and <em>Private +Clean</em> memory, which shows that this process is using almost 1.4MB of non-pageable RAM +(distributed across the Dalvik heap, native allocations, book-keeping, and library-loading), +and another 150K of RAM for code that has been mapped in to execute.</p> + +<p>This memory footprint for an empty process is fairly significant and it can quickly +grow as you start doing work in that process. For +example, here is the memory use of a process that is created only to show an activity with some +text in it:</p> + +<pre class="no-pretty-print"> +** MEMINFO in pid 10226 [com.example.android.helloactivity] ** + Pss Pss Shared Private Shared Private Heap Heap Heap + Total Clean Dirty Dirty Clean Clean Size Alloc Free + ------ ------ ------ ------ ------ ------ ------ ------ ------ + Native Heap 0 0 0 0 0 0 3000 2951 48 + Dalvik Heap 1074 0 4928 776 0 0 5744 5658 86 + Dalvik Other 802 0 3612 664 0 0 + Stack 28 0 8 28 0 0 + Ashmem 6 0 16 0 0 0 + Other dev 108 0 24 104 0 4 + .so mmap 2166 0 2824 1828 3756 0 + .apk mmap 48 0 0 0 632 0 + .ttf mmap 3 0 0 0 24 0 + .dex mmap 292 4 0 0 5672 4 + Other mmap 10 0 8 8 68 0 + Unknown 632 0 412 624 0 0 + TOTAL 5169 4 11832 4032 10152 8 8744 8609 134 +</pre> + +<p>The process has now almost tripled in size, to 4MB, simply by showing some text in the UI. This +leads to an important conclusion: If you are going to split your app into multiple processes, only +one process should be responsible for UI. Other processes should avoid any UI, as this will quickly +increase the RAM required by the process (especially once you start loading bitmap assets and other +resources). It may then be hard or impossible to reduce the memory usage once the UI is drawn.</p> + +<p>Additionally, when running more than one process, it's more important than ever that you keep your +code as lean as possible, because any unnecessary RAM overhead for common implementations are now +replicated in each process. For example, if you are using enums (though <a +href="#Overhead">you should not use enums</a>), all of +the RAM needed to create and initialize those constants is duplicated in each process, and any +abstractions you have with adapters and temporaries or other overhead will likewise be replicated.</p> + +<p>Another concern with multiple processes is the dependencies that exist between them. For example, +if your app has a content provider that you have running in the default process which also hosts +your UI, then code in a background process that uses that content provider will also require that +your UI process remain in RAM. If your goal is to have a background process that can run +independently of a heavy-weight UI process, it can't have dependencies on content providers or +services that execute in the UI process.</p> + + + + + + + + + + +<!-- THE FOLLOWING IS OVERWHELMING AND NOT NECESSARY FOR MOST APPS, LEAVING OUT FOR NOW + + +<p>You can examine the dependencies between your processes with the command:</p> + +<pre class="no-pretty-print"> +adb shell dumpsys activity +</pre> + +<p>This dumps various information about the Activity Manager's state, ending with a list of all +processes in their memory management order, including the reason each process is at its given +level. For example, below is a dump with the Music app in the foreground.</p> + +<pre class="no-pretty-print"> +ACTIVITY MANAGER RUNNING PROCESSES (dumpsys activity processes) + Process LRU list (sorted by oom_adj): + PERS # 4: adj=sys /F trm= 0 20674:system/1000 (fixed) + PERS #39: adj=pers /F trm= 0 20964:com.android.nfc/1027 (fixed) + PERS # 2: adj=pers /F trm= 0 20959:com.android.phone/1001 (fixed) + PERS # 1: adj=pers /F trm= 0 20779:com.android.systemui/u0a10057 (fixed) + Proc #11: adj=fore /FA trm= 0 8663:com.google.android.music:ui/u0a10043 (top-activity) + Proc #10: adj=fore /F trm= 0 30881:com.google.android.music:main/u0a10043 (provider) + com.google.android.music/.store.MusicContentProvider<=Proc{8663:com.google.android.music:ui/u0a10043} + Proc # 6: adj=fore /F trm= 0 21014:com.google.process.gapps/u0a10023 (provider) + com.google.android.gsf/.settings.GoogleSettingsProvider<=Proc{20935:com.google.process.location/u0a10023} + Proc #38: adj=vis /F trm= 0 21028:com.android.nfc:handover/1027 (service) + com.android.nfc/.handover.HandoverService<=Proc{20964:com.android.nfc/1027} + Proc # 7: adj=vis /B trm= 0 20935:com.google.process.location/u0a10023 (service) + com.google.android.location/.GeocodeService<=Proc{20674:system/1000} + Proc # 3: adj=vis /F trm= 0 21225:com.android.bluetooth/1002 (service) + com.android.bluetooth/.hfp.HeadsetService<=Proc{20674:system/1000} + Proc # 0: adj=vis /F trm= 0 20908:com.google.android.inputmethod.latin/u0a10035 (service) + com.google.android.inputmethod.latin/com.android.inputmethod.latin.LatinIME<=Proc{20674:system/1000} + Proc #34: adj=svc /B trm= 0 16765:com.google.android.apps.currents/u0a10012 (started-services) + Proc #14: adj=svc /B trm= 0 21148:com.google.android.gms/u0a10023 (started-services) + Proc #12: adj=home /B trm= 0 20989:com.android.launcher/u0a10036 (home) + Proc #37: adj=svcb /B trm= 0 15194:com.google.android.apps.googlevoice/u0a10089 (started-services) + Proc #17: adj=svcb /B trm= 0 24537:android.process.media/u0a10016 (started-services) + Proc #35: adj=bak /B trm= 0 16087:com.android.defcontainer/u0a10013 (service) + com.android.defcontainer/.DefaultContainerService<=Proc{16050:com.android.settings/1000} + Proc #16: adj=bak /B trm= 0 7334:com.google.android.gm/u0a10022 (bg-act) + Proc #15: adj=bak /B trm= 0 22499:com.google.android.googlequicksearchbox/u0a10060 (bg-act) + Proc # 9: adj=bak /B trm= 0 20856:com.google.android.gsf.login/u0a10023 (bg-empty) + Proc #26: adj=bak+1/B trm= 0 9923:com.android.mms/u0a10042 (bg-act) + Proc #23: adj=bak+1/B trm= 0 16721:com.android.chrome/u0a10010 (bg-act) + Proc #22: adj=bak+1/B trm= 0 17596:com.android.chrome:sandboxed_process0/u0a10010i33 (service) + com.android.chrome/org.chromium.content.app.SandboxedProcessService0<=Proc{16721:com.android.chrome/u0a10010} + Proc #19: adj=bak+1/B trm= 0 17442:com.google.android.youtube/u0a10067 (bg-services) + Proc #18: adj=bak+2/B trm= 0 16740:com.google.android.apps.plus/u0a10052 (bg-empty) + Proc #13: adj=bak+2/B trm= 0 7707:com.android.musicfx/u0a10044 (bg-empty) + Proc #36: adj=bak+3/B trm= 0 16050:com.android.settings/1000 (bg-act) + Proc #33: adj=bak+3/B trm= 0 16863:com.android.dialer/u0a10015 (bg-act) +</pre> + + +<p class="note"><strong>Note:</strong> The exact details of what is shown here will vary across +platform versions as process management policies are tweaked and improved.</p> + + +<p>Details on the highlighted sections are:</p> + +<ol> +<li>Foreground app: This is the current app running in the foreground -- it is in the "fore" memory +class because it is the top activity on the activity stack.</li> + +<li>Persistent processes: These are processes that are part of the core system that must always be +running.</li> + +<li>Dependent process: This shows how the Music app is using two processes. Its UI process has a +dependency on the "main" process (through a content provider). So while the UI process is in use, +the main process must also be kept around. This means the app's memory footprint is actually the +sum of both processes. You will have this kind of connection on a content provider any time you +have active calls into it or have unclosed cursors or file streams that came from it.</li> + +<li>Visible processes: These are processes that count in some way as "visible" to the user. This +generally means that it is either something the user can literally see (such as a process hosting a +paused but visible activity that is behind a non-full-screen dialog) or is something the user might +notice if the process disappeared (such as a foreground service playing music). You should be +certain that any process you have running at the "visible" level is indeed critical to the user, +because they are very expensive to the overall RAM load.</li> + +<li>Service processes: These are processes running long-term jobs in a service. This level of the +list is the start of less-critical processes, which the system has some freedom to kill if RAM is +needed elsewhere. These services are still quite expensive because they can be killed only +temporarily and the system tries to keep them running whenever possible.</li> + +<li>Home process: A special slot for the process that hosts the current Home activity, to try to +prevent it from being killed as much as possible. Killing this process is much more damaging to the +user experience than killing other cached processes, because so much user interaction goes through +home.</li> + +<li>Secondary service processes: These are services that have been running for a relatively long time +and so should be killed more aggressively when RAM is needed elsewhere.</li> + +<li>Cached processes: These are cached processes held in the LRU cache, which allow for fast app +switching and component launching. These processes are not required and the system will kill them +as needed to reclaim memory. You will often see a process hosting a running service here—this is +part of a platform policy of allowing very long-running services to drop down into the LRU list and +eventually be killed. If the service should continue running (as defined by the {@link +android.app.Service#onStartCommand onStartCommand()} return value, such as {@link +android.app.Service#START_STICKY}), the the system eventually restarts it. This avoids issues with +such services having memory leaks that over time reduce the number of regular cached processes that +can be kept.</li> + +</ol> + +<p>This numbered list of processes is essentially the LRU list of processes that the framework +provides to the kernel to help it determine which processes it should kill as it needs more RAM. +The kernel's out of memory killer will generally begin from the bottom of this list, killing the +last process and working its way up. It may not do it in exactly this order, as it can also take +into consideration other factors such as the relative RAM footprint of processes to some degree.</p> + +<p>There are many other options you can use with the activity command to analyze further details of +your app's state—use <code>adb shell dumpsys activity -h</code> for help on its use.</p> + +--> diff --git a/docs/html/training/articles/perf-anr.jd b/docs/html/training/articles/perf-anr.jd index d3b2318d56f0..87cfc1c985bd 100644 --- a/docs/html/training/articles/perf-anr.jd +++ b/docs/html/training/articles/perf-anr.jd @@ -8,7 +8,7 @@ page.article=true <div id="tb"> <h2>In this document</h2> -<ol> +<ol class="nolist"> <li><a href="#anr">What Triggers ANR?</a></li> <li><a href="#Avoiding">How to Avoid ANRs</a></li> <li><a href="#Reinforcing">Reinforcing Responsiveness</a></li> diff --git a/docs/html/training/articles/perf-jni.jd b/docs/html/training/articles/perf-jni.jd index 0d1f04e2e7b0..9f880ec557a0 100644 --- a/docs/html/training/articles/perf-jni.jd +++ b/docs/html/training/articles/perf-jni.jd @@ -8,7 +8,7 @@ page.article=true <div id="tb"> <h2>In this document</h2> -<ol> +<ol class="nolist"> <li><a href="#JavaVM_and_JNIEnv">JavaVM and JNIEnv</a></li> <li><a href="#threads">Threads</a></li> <li><a href="#jclass_jmethodID_and_jfieldID">jclass, jmethodID, and jfieldID</a></li> diff --git a/docs/html/training/articles/perf-tips.jd b/docs/html/training/articles/perf-tips.jd index f91ecd72e9c1..7ff6c5cf7163 100644 --- a/docs/html/training/articles/perf-tips.jd +++ b/docs/html/training/articles/perf-tips.jd @@ -6,7 +6,7 @@ page.article=true <div id="tb"> <h2>In this document</h2> -<ol> +<ol class="nolist"> <li><a href="#ObjectCreation">Avoid Creating Unnecessary Objects</a></li> <li><a href="#PreferStatic">Prefer Static Over Virtual</a></li> <li><a href="#UseFinal">Use Static Final For Constants</a></li> diff --git a/docs/html/training/training_toc.cs b/docs/html/training/training_toc.cs index a66b7731da5d..39386bc1cc66 100644 --- a/docs/html/training/training_toc.cs +++ b/docs/html/training/training_toc.cs @@ -1104,6 +1104,14 @@ include the action bar on devices running Android 2.1 or higher." <ul> <li> + <a href="<?cs var:toroot ?>training/articles/memory.html" + description= + "How to keep your app's memory footprint small in order to improve performance + on a variety of mobile devices." + >Managing Your App's Memory</a> + </li> + + <li> <a href="<?cs var:toroot ?>training/articles/perf-tips.html" description= "How to optimize your app's performance in various ways to improve its diff --git a/packages/FusedLocation/res/values-am/strings.xml b/packages/FusedLocation/res/values-am/strings.xml index 9c4d9d585530..0d2cccc66dc0 100644 --- a/packages/FusedLocation/res/values-am/strings.xml +++ b/packages/FusedLocation/res/values-am/strings.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="app_label" msgid="5379477904423203699">"ፍዩዥን አካባቢ"</string> + <string name="app_label" msgid="5379477904423203699">"Fused Location"</string> </resources> diff --git a/packages/FusedLocation/res/values-fr/strings.xml b/packages/FusedLocation/res/values-fr/strings.xml index 8604c394e8eb..0d2cccc66dc0 100644 --- a/packages/FusedLocation/res/values-fr/strings.xml +++ b/packages/FusedLocation/res/values-fr/strings.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="app_label" msgid="5379477904423203699">"Localisation via les tables de fusion"</string> + <string name="app_label" msgid="5379477904423203699">"Fused Location"</string> </resources> diff --git a/packages/FusedLocation/res/values-lt/strings.xml b/packages/FusedLocation/res/values-lt/strings.xml index 245c0b0087b0..0d2cccc66dc0 100644 --- a/packages/FusedLocation/res/values-lt/strings.xml +++ b/packages/FusedLocation/res/values-lt/strings.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="app_label" msgid="5379477904423203699">"Suderinta vietovė"</string> + <string name="app_label" msgid="5379477904423203699">"Fused Location"</string> </resources> diff --git a/packages/FusedLocation/res/values-zh-rCN/strings.xml b/packages/FusedLocation/res/values-zh-rCN/strings.xml index 0d2cccc66dc0..e6d7bc111587 100644 --- a/packages/FusedLocation/res/values-zh-rCN/strings.xml +++ b/packages/FusedLocation/res/values-zh-rCN/strings.xml @@ -1,5 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="app_label" msgid="5379477904423203699">"Fused Location"</string> + <string name="app_label" msgid="5379477904423203699">"一体化位置信息"</string> </resources> diff --git a/packages/InputDevices/res/values-af/strings.xml b/packages/InputDevices/res/values-af/strings.xml index 748bae03acd7..13fcbb4ed829 100644 --- a/packages/InputDevices/res/values-af/strings.xml +++ b/packages/InputDevices/res/values-af/strings.xml @@ -23,7 +23,7 @@ <string name="keyboard_layout_norwegian" msgid="9090097917011040937">"Noors"</string> <string name="keyboard_layout_swedish" msgid="732959109088479351">"Sweeds"</string> <string name="keyboard_layout_finnish" msgid="5585659438924315466">"Fins"</string> - <string name="keyboard_layout_croatian" msgid="4172229471079281138">"Kroasies"</string> + <string name="keyboard_layout_croatian" msgid="4172229471079281138">"Kroaties"</string> <string name="keyboard_layout_czech" msgid="1349256901452975343">"Tsjeggies"</string> <string name="keyboard_layout_estonian" msgid="8775830985185665274">"Estnies"</string> <string name="keyboard_layout_hungarian" msgid="4154963661406035109">"Hongaars"</string> diff --git a/packages/InputDevices/res/values-am/strings.xml b/packages/InputDevices/res/values-am/strings.xml index d4097f49c996..d475772501ea 100644 --- a/packages/InputDevices/res/values-am/strings.xml +++ b/packages/InputDevices/res/values-am/strings.xml @@ -16,22 +16,22 @@ <string name="keyboard_layout_spanish_label" msgid="7091555148131908240">"ስፓኒሽ"</string> <string name="keyboard_layout_swiss_french_label" msgid="4659191025396371684">"የስዊዝ ፈረንሳይኛ"</string> <string name="keyboard_layout_swiss_german_label" msgid="2305520941993314258">"የስዊዝ ጀርመን"</string> - <string name="keyboard_layout_belgian" msgid="2011984572838651558">"ቤልጂየምኛ"</string> - <string name="keyboard_layout_bulgarian" msgid="8951224309972028398">"ቡልጋሪኛ"</string> + <string name="keyboard_layout_belgian" msgid="2011984572838651558">"ቤልጂየም"</string> + <string name="keyboard_layout_bulgarian" msgid="8951224309972028398">"ቡልጋሪያ"</string> <string name="keyboard_layout_italian" msgid="6497079660449781213">"ጣሊያንኛ"</string> <string name="keyboard_layout_danish" msgid="8036432066627127851">"ዴኒሽ"</string> - <string name="keyboard_layout_norwegian" msgid="9090097917011040937">"ኖርዌጂያን"</string> + <string name="keyboard_layout_norwegian" msgid="9090097917011040937">"ኖርዌጂያ"</string> <string name="keyboard_layout_swedish" msgid="732959109088479351">"ስዊድንኛ"</string> <string name="keyboard_layout_finnish" msgid="5585659438924315466">"ፊኒሽ"</string> - <string name="keyboard_layout_croatian" msgid="4172229471079281138">"ክሮሽያንኛ"</string> + <string name="keyboard_layout_croatian" msgid="4172229471079281138">"ክሮሽያ"</string> <string name="keyboard_layout_czech" msgid="1349256901452975343">"ቼክ"</string> - <string name="keyboard_layout_estonian" msgid="8775830985185665274">"ኤስቶኒያኛ"</string> - <string name="keyboard_layout_hungarian" msgid="4154963661406035109">"ሀንጋሪያኛ"</string> - <string name="keyboard_layout_icelandic" msgid="5836645650912489642">"አይስላንድኛ"</string> - <string name="keyboard_layout_brazilian" msgid="5117896443147781939">"የብራዚል"</string> - <string name="keyboard_layout_portuguese" msgid="2888198587329660305">"ፖርቹጋልኛ"</string> - <string name="keyboard_layout_slovak" msgid="2469379934672837296">"ስሎቫክኛ"</string> - <string name="keyboard_layout_slovenian" msgid="1735933028924982368">"ስሎቪኛ"</string> + <string name="keyboard_layout_estonian" msgid="8775830985185665274">"ኤስቶኒያ"</string> + <string name="keyboard_layout_hungarian" msgid="4154963661406035109">"ሀንጋሪ"</string> + <string name="keyboard_layout_icelandic" msgid="5836645650912489642">"አይስላንድ"</string> + <string name="keyboard_layout_brazilian" msgid="5117896443147781939">"ብራዚል"</string> + <string name="keyboard_layout_portuguese" msgid="2888198587329660305">"ፖርቹጋል"</string> + <string name="keyboard_layout_slovak" msgid="2469379934672837296">"ስሎቫክ"</string> + <string name="keyboard_layout_slovenian" msgid="1735933028924982368">"ስሎቫኒያ"</string> <string name="keyboard_layout_turkish" msgid="7736163250907964898">"ቱርክኛ"</string> - <string name="keyboard_layout_ukrainian" msgid="8176637744389480417">"ዩክረኒኛ"</string> + <string name="keyboard_layout_ukrainian" msgid="8176637744389480417">"ዩክሬን"</string> </resources> diff --git a/packages/InputDevices/res/values-da/strings.xml b/packages/InputDevices/res/values-da/strings.xml index 5eb30b17dbfd..fc07db20d292 100644 --- a/packages/InputDevices/res/values-da/strings.xml +++ b/packages/InputDevices/res/values-da/strings.xml @@ -14,8 +14,8 @@ <string name="keyboard_layout_russian_label" msgid="8724879775815042968">"Russisk"</string> <string name="keyboard_layout_russian_mac_label" msgid="3795866869038264796">"Russisk, Mac-stil"</string> <string name="keyboard_layout_spanish_label" msgid="7091555148131908240">"Spansk"</string> - <string name="keyboard_layout_swiss_french_label" msgid="4659191025396371684">"schweizisk fransk"</string> - <string name="keyboard_layout_swiss_german_label" msgid="2305520941993314258">"schweizertysk"</string> + <string name="keyboard_layout_swiss_french_label" msgid="4659191025396371684">"Schweizisk fransk"</string> + <string name="keyboard_layout_swiss_german_label" msgid="2305520941993314258">"Schweizertysk"</string> <string name="keyboard_layout_belgian" msgid="2011984572838651558">"Belgisk"</string> <string name="keyboard_layout_bulgarian" msgid="8951224309972028398">"Bulgarsk"</string> <string name="keyboard_layout_italian" msgid="6497079660449781213">"Italiensk"</string> @@ -33,5 +33,5 @@ <string name="keyboard_layout_slovak" msgid="2469379934672837296">"Slovakisk"</string> <string name="keyboard_layout_slovenian" msgid="1735933028924982368">"Slovensk"</string> <string name="keyboard_layout_turkish" msgid="7736163250907964898">"Tyrkisk"</string> - <string name="keyboard_layout_ukrainian" msgid="8176637744389480417">"ukrainsk"</string> + <string name="keyboard_layout_ukrainian" msgid="8176637744389480417">"Ukrainsk"</string> </resources> diff --git a/packages/InputDevices/res/values-el/strings.xml b/packages/InputDevices/res/values-el/strings.xml index bcf7b86bf11e..f5d57a0be78c 100644 --- a/packages/InputDevices/res/values-el/strings.xml +++ b/packages/InputDevices/res/values-el/strings.xml @@ -3,20 +3,20 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="app_label" msgid="8016145283189546017">"Συσκευές εισόδου"</string> <string name="keyboard_layouts_label" msgid="6688773268302087545">"Πληκτρολόγιο Android"</string> - <string name="keyboard_layout_english_uk_label" msgid="6664258463319999632">"Αγγλικά (Η.Β.)"</string> - <string name="keyboard_layout_english_us_label" msgid="8994890249649106291">"Αγγλικά (Η.Π.Α.)"</string> - <string name="keyboard_layout_english_us_intl" msgid="3705168594034233583">"Αγγλικά (Η.Π.Α.), τύπου International"</string> - <string name="keyboard_layout_english_us_colemak_label" msgid="4194969610343455380">"Αγγλικά (Η.Π.Α.), τύπου Colemak"</string> - <string name="keyboard_layout_english_us_dvorak_label" msgid="793528923171145202">"Αγγλικά (Η.Π.Α.), τύπου Dvorak"</string> + <string name="keyboard_layout_english_uk_label" msgid="6664258463319999632">"Αγγλικά (ΗΒ)"</string> + <string name="keyboard_layout_english_us_label" msgid="8994890249649106291">"Αγγλικά (ΗΠΑ)"</string> + <string name="keyboard_layout_english_us_intl" msgid="3705168594034233583">"Αγγλικά (ΗΠΑ), τύπου International"</string> + <string name="keyboard_layout_english_us_colemak_label" msgid="4194969610343455380">"Αγγλικά (ΗΠΑ), τύπου Colemak"</string> + <string name="keyboard_layout_english_us_dvorak_label" msgid="793528923171145202">"Αγγλικά (ΗΠΑ), τύπου Dvorak"</string> <string name="keyboard_layout_german_label" msgid="8451565865467909999">"Γερμανικά"</string> <string name="keyboard_layout_french_label" msgid="813450119589383723">"Γαλλικά"</string> <string name="keyboard_layout_french_ca_label" msgid="365352601060604832">"Γαλλικά (Καναδά)"</string> <string name="keyboard_layout_russian_label" msgid="8724879775815042968">"Ρωσικά"</string> - <string name="keyboard_layout_russian_mac_label" msgid="3795866869038264796">"Russian, τύπου Mac"</string> + <string name="keyboard_layout_russian_mac_label" msgid="3795866869038264796">"Ρωσικά, τύπου Mac"</string> <string name="keyboard_layout_spanish_label" msgid="7091555148131908240">"Ισπανικά"</string> <string name="keyboard_layout_swiss_french_label" msgid="4659191025396371684">"Γαλλικά Ελβετίας"</string> <string name="keyboard_layout_swiss_german_label" msgid="2305520941993314258">"Γερμανικά Ελβετίας"</string> - <string name="keyboard_layout_belgian" msgid="2011984572838651558">"Βελγίου"</string> + <string name="keyboard_layout_belgian" msgid="2011984572838651558">"Βελγικά"</string> <string name="keyboard_layout_bulgarian" msgid="8951224309972028398">"Βουλγαρικά"</string> <string name="keyboard_layout_italian" msgid="6497079660449781213">"Ιταλικά"</string> <string name="keyboard_layout_danish" msgid="8036432066627127851">"Δανικά"</string> @@ -28,7 +28,7 @@ <string name="keyboard_layout_estonian" msgid="8775830985185665274">"Εσθονικά"</string> <string name="keyboard_layout_hungarian" msgid="4154963661406035109">"Ουγγρικά"</string> <string name="keyboard_layout_icelandic" msgid="5836645650912489642">"Ισλανδικά"</string> - <string name="keyboard_layout_brazilian" msgid="5117896443147781939">"Βραζιλίας"</string> + <string name="keyboard_layout_brazilian" msgid="5117896443147781939">"Βραζιλιάνικα"</string> <string name="keyboard_layout_portuguese" msgid="2888198587329660305">"Πορτογαλικά"</string> <string name="keyboard_layout_slovak" msgid="2469379934672837296">"Σλοβακικά"</string> <string name="keyboard_layout_slovenian" msgid="1735933028924982368">"Σλοβενικά"</string> diff --git a/packages/InputDevices/res/values-fr/strings.xml b/packages/InputDevices/res/values-fr/strings.xml index fa02e5f69d09..4ad4ffa8e630 100644 --- a/packages/InputDevices/res/values-fr/strings.xml +++ b/packages/InputDevices/res/values-fr/strings.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="app_label" msgid="8016145283189546017">"Périphériques d\'entrée"</string> + <string name="app_label" msgid="8016145283189546017">"Input Devices"</string> <string name="keyboard_layouts_label" msgid="6688773268302087545">"Clavier Android"</string> <string name="keyboard_layout_english_uk_label" msgid="6664258463319999632">"Anglais (Royaume-Uni)"</string> <string name="keyboard_layout_english_us_label" msgid="8994890249649106291">"Anglais (États-Unis)"</string> diff --git a/packages/InputDevices/res/values-hr/strings.xml b/packages/InputDevices/res/values-hr/strings.xml index fd3d59472b21..6217bf0d4a21 100644 --- a/packages/InputDevices/res/values-hr/strings.xml +++ b/packages/InputDevices/res/values-hr/strings.xml @@ -2,7 +2,7 @@ <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="app_label" msgid="8016145283189546017">"Uređaji za unos"</string> - <string name="keyboard_layouts_label" msgid="6688773268302087545">"Androidova tipkovnica"</string> + <string name="keyboard_layouts_label" msgid="6688773268302087545">"Android tipkovnica"</string> <string name="keyboard_layout_english_uk_label" msgid="6664258463319999632">"engleska (UK)"</string> <string name="keyboard_layout_english_us_label" msgid="8994890249649106291">"engleska (SAD)"</string> <string name="keyboard_layout_english_us_intl" msgid="3705168594034233583">"engleska (SAD), međunarodna"</string> diff --git a/packages/InputDevices/res/values-hy-rAM/strings.xml b/packages/InputDevices/res/values-hy-rAM/strings.xml index a73fb897fea3..bc5bbfc825f1 100644 --- a/packages/InputDevices/res/values-hy-rAM/strings.xml +++ b/packages/InputDevices/res/values-hy-rAM/strings.xml @@ -9,7 +9,7 @@ <string name="keyboard_layout_english_us_colemak_label" msgid="4194969610343455380">"Անգլերեն (ԱՄՆ), Colemak տեսակ"</string> <string name="keyboard_layout_english_us_dvorak_label" msgid="793528923171145202">"Անգլերեն (ԱՄՆ), Dvorak տեսակ"</string> <string name="keyboard_layout_german_label" msgid="8451565865467909999">"Գերմաներեն"</string> - <string name="keyboard_layout_french_label" msgid="813450119589383723">"ֆրանսերեն"</string> + <string name="keyboard_layout_french_label" msgid="813450119589383723">"Ֆրանսերեն"</string> <string name="keyboard_layout_french_ca_label" msgid="365352601060604832">"Ֆրանսերեն (Կանադա)"</string> <string name="keyboard_layout_russian_label" msgid="8724879775815042968">"Ռուսերեն"</string> <string name="keyboard_layout_russian_mac_label" msgid="3795866869038264796">"Ռուսերեն, Mac տեսակ"</string> diff --git a/packages/InputDevices/res/values-lt/strings.xml b/packages/InputDevices/res/values-lt/strings.xml index 177d4180d485..c0ed159d5c3c 100644 --- a/packages/InputDevices/res/values-lt/strings.xml +++ b/packages/InputDevices/res/values-lt/strings.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="app_label" msgid="8016145283189546017">"Įvesties įrenginiai"</string> + <string name="app_label" msgid="8016145283189546017">"Input Devices"</string> <string name="keyboard_layouts_label" msgid="6688773268302087545">"„Android“ klaviatūra"</string> <string name="keyboard_layout_english_uk_label" msgid="6664258463319999632">"Anglų k. (JK)"</string> <string name="keyboard_layout_english_us_label" msgid="8994890249649106291">"Anglų k. (JAV)"</string> diff --git a/packages/InputDevices/res/values-ms-rMY/strings.xml b/packages/InputDevices/res/values-ms-rMY/strings.xml index e08c39cf3b49..486f0487e27f 100644 --- a/packages/InputDevices/res/values-ms-rMY/strings.xml +++ b/packages/InputDevices/res/values-ms-rMY/strings.xml @@ -4,7 +4,7 @@ <string name="app_label" msgid="8016145283189546017">"Peranti Input"</string> <string name="keyboard_layouts_label" msgid="6688773268302087545">"Papan kekunci Android"</string> <string name="keyboard_layout_english_uk_label" msgid="6664258463319999632">"Bahasa Inggeris (UK)"</string> - <string name="keyboard_layout_english_us_label" msgid="8994890249649106291">"Bahasa Inggeris (Australia)"</string> + <string name="keyboard_layout_english_us_label" msgid="8994890249649106291">"Bahasa Inggeris (AS)"</string> <string name="keyboard_layout_english_us_intl" msgid="3705168594034233583">"Bahasa Inggeris (AS), gaya A/bangsa"</string> <string name="keyboard_layout_english_us_colemak_label" msgid="4194969610343455380">"Bahasa Inggeris (AS), gaya Colemak"</string> <string name="keyboard_layout_english_us_dvorak_label" msgid="793528923171145202">"Bahasa Inggeris (AS), gaya Dvorak"</string> diff --git a/packages/InputDevices/res/values-ro/strings.xml b/packages/InputDevices/res/values-ro/strings.xml index 6ec5b254efd9..895d8f6ce051 100644 --- a/packages/InputDevices/res/values-ro/strings.xml +++ b/packages/InputDevices/res/values-ro/strings.xml @@ -3,35 +3,35 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="app_label" msgid="8016145283189546017">"Dispozitive de introducere de date"</string> <string name="keyboard_layouts_label" msgid="6688773268302087545">"Tastatură Android"</string> - <string name="keyboard_layout_english_uk_label" msgid="6664258463319999632">"Englez (Regatul Unit)"</string> - <string name="keyboard_layout_english_us_label" msgid="8994890249649106291">"Englez (S.U.A.)"</string> - <string name="keyboard_layout_english_us_intl" msgid="3705168594034233583">"Englez (S.U.A.), stil internațional"</string> - <string name="keyboard_layout_english_us_colemak_label" msgid="4194969610343455380">"Englez (S.U.A.), stil Colemak"</string> - <string name="keyboard_layout_english_us_dvorak_label" msgid="793528923171145202">"Englez (S.U.A.), stil Dvorak"</string> - <string name="keyboard_layout_german_label" msgid="8451565865467909999">"German"</string> - <string name="keyboard_layout_french_label" msgid="813450119589383723">"Francez"</string> - <string name="keyboard_layout_french_ca_label" msgid="365352601060604832">"Francez (Canada)"</string> - <string name="keyboard_layout_russian_label" msgid="8724879775815042968">"Rus"</string> - <string name="keyboard_layout_russian_mac_label" msgid="3795866869038264796">"Rus, stil Mac"</string> - <string name="keyboard_layout_spanish_label" msgid="7091555148131908240">"Spaniol"</string> - <string name="keyboard_layout_swiss_french_label" msgid="4659191025396371684">"Francez (Elveția)"</string> - <string name="keyboard_layout_swiss_german_label" msgid="2305520941993314258">"German (Elveția)"</string> - <string name="keyboard_layout_belgian" msgid="2011984572838651558">"Belgian"</string> - <string name="keyboard_layout_bulgarian" msgid="8951224309972028398">"Bulgar"</string> - <string name="keyboard_layout_italian" msgid="6497079660449781213">"Italian"</string> - <string name="keyboard_layout_danish" msgid="8036432066627127851">"Danez"</string> - <string name="keyboard_layout_norwegian" msgid="9090097917011040937">"Norvegian"</string> - <string name="keyboard_layout_swedish" msgid="732959109088479351">"Suedez"</string> - <string name="keyboard_layout_finnish" msgid="5585659438924315466">"Finlandez"</string> - <string name="keyboard_layout_croatian" msgid="4172229471079281138">"Croat"</string> - <string name="keyboard_layout_czech" msgid="1349256901452975343">"Ceh"</string> - <string name="keyboard_layout_estonian" msgid="8775830985185665274">"Estonian"</string> - <string name="keyboard_layout_hungarian" msgid="4154963661406035109">"Maghiar"</string> - <string name="keyboard_layout_icelandic" msgid="5836645650912489642">"Islandez"</string> - <string name="keyboard_layout_brazilian" msgid="5117896443147781939">"Brazilian"</string> - <string name="keyboard_layout_portuguese" msgid="2888198587329660305">"Portughez"</string> - <string name="keyboard_layout_slovak" msgid="2469379934672837296">"Slovac"</string> - <string name="keyboard_layout_slovenian" msgid="1735933028924982368">"Sloven"</string> - <string name="keyboard_layout_turkish" msgid="7736163250907964898">"Turc"</string> - <string name="keyboard_layout_ukrainian" msgid="8176637744389480417">"Ucrainean"</string> + <string name="keyboard_layout_english_uk_label" msgid="6664258463319999632">"Engleză (Regatul Unit)"</string> + <string name="keyboard_layout_english_us_label" msgid="8994890249649106291">"Engleză (SUA)"</string> + <string name="keyboard_layout_english_us_intl" msgid="3705168594034233583">"Engleză (SUA), stil internațional"</string> + <string name="keyboard_layout_english_us_colemak_label" msgid="4194969610343455380">"Engleză (SUA), stil Colemak"</string> + <string name="keyboard_layout_english_us_dvorak_label" msgid="793528923171145202">"Engleză (SUA), stil Dvorak"</string> + <string name="keyboard_layout_german_label" msgid="8451565865467909999">"Germană"</string> + <string name="keyboard_layout_french_label" msgid="813450119589383723">"Franceză"</string> + <string name="keyboard_layout_french_ca_label" msgid="365352601060604832">"Franceză (Canada)"</string> + <string name="keyboard_layout_russian_label" msgid="8724879775815042968">"Rusă"</string> + <string name="keyboard_layout_russian_mac_label" msgid="3795866869038264796">"Rusă, stil Mac"</string> + <string name="keyboard_layout_spanish_label" msgid="7091555148131908240">"Spaniolă"</string> + <string name="keyboard_layout_swiss_french_label" msgid="4659191025396371684">"Franceză (Elveția)"</string> + <string name="keyboard_layout_swiss_german_label" msgid="2305520941993314258">"Germană (Elveția)"</string> + <string name="keyboard_layout_belgian" msgid="2011984572838651558">"Belgiană"</string> + <string name="keyboard_layout_bulgarian" msgid="8951224309972028398">"Bulgară"</string> + <string name="keyboard_layout_italian" msgid="6497079660449781213">"Italiană"</string> + <string name="keyboard_layout_danish" msgid="8036432066627127851">"Daneză"</string> + <string name="keyboard_layout_norwegian" msgid="9090097917011040937">"Norvegiană"</string> + <string name="keyboard_layout_swedish" msgid="732959109088479351">"Suedeză"</string> + <string name="keyboard_layout_finnish" msgid="5585659438924315466">"Finlandeză"</string> + <string name="keyboard_layout_croatian" msgid="4172229471079281138">"Croată"</string> + <string name="keyboard_layout_czech" msgid="1349256901452975343">"Cehă"</string> + <string name="keyboard_layout_estonian" msgid="8775830985185665274">"Estoniană"</string> + <string name="keyboard_layout_hungarian" msgid="4154963661406035109">"Maghiară"</string> + <string name="keyboard_layout_icelandic" msgid="5836645650912489642">"Islandeză"</string> + <string name="keyboard_layout_brazilian" msgid="5117896443147781939">"Braziliană"</string> + <string name="keyboard_layout_portuguese" msgid="2888198587329660305">"Portugheză"</string> + <string name="keyboard_layout_slovak" msgid="2469379934672837296">"Slovacă"</string> + <string name="keyboard_layout_slovenian" msgid="1735933028924982368">"Slovenă"</string> + <string name="keyboard_layout_turkish" msgid="7736163250907964898">"Turcă"</string> + <string name="keyboard_layout_ukrainian" msgid="8176637744389480417">"Ucraineană"</string> </resources> diff --git a/packages/InputDevices/res/values-sr/strings.xml b/packages/InputDevices/res/values-sr/strings.xml index 4b7910c52ce5..d23ac008a816 100644 --- a/packages/InputDevices/res/values-sr/strings.xml +++ b/packages/InputDevices/res/values-sr/strings.xml @@ -3,35 +3,35 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="app_label" msgid="8016145283189546017">"Улазни уређаји"</string> <string name="keyboard_layouts_label" msgid="6688773268302087545">"Android тастатура"</string> - <string name="keyboard_layout_english_uk_label" msgid="6664258463319999632">"енглески (Уједињено Краљевство)"</string> - <string name="keyboard_layout_english_us_label" msgid="8994890249649106291">"енглески (САД)"</string> - <string name="keyboard_layout_english_us_intl" msgid="3705168594034233583">"енглески (САД), међународни стил"</string> - <string name="keyboard_layout_english_us_colemak_label" msgid="4194969610343455380">"енглески (САД), Colemak стил"</string> - <string name="keyboard_layout_english_us_dvorak_label" msgid="793528923171145202">"енглески (САД), Dvorak стил"</string> - <string name="keyboard_layout_german_label" msgid="8451565865467909999">"немачки"</string> - <string name="keyboard_layout_french_label" msgid="813450119589383723">"француски"</string> - <string name="keyboard_layout_french_ca_label" msgid="365352601060604832">"француски (Канада)"</string> - <string name="keyboard_layout_russian_label" msgid="8724879775815042968">"руски"</string> - <string name="keyboard_layout_russian_mac_label" msgid="3795866869038264796">"руски, Mac стил"</string> - <string name="keyboard_layout_spanish_label" msgid="7091555148131908240">"шпански"</string> - <string name="keyboard_layout_swiss_french_label" msgid="4659191025396371684">"швајцарски француски"</string> - <string name="keyboard_layout_swiss_german_label" msgid="2305520941993314258">"швајцарски немачки"</string> - <string name="keyboard_layout_belgian" msgid="2011984572838651558">"белгијски"</string> - <string name="keyboard_layout_bulgarian" msgid="8951224309972028398">"бугарски"</string> - <string name="keyboard_layout_italian" msgid="6497079660449781213">"италијански"</string> - <string name="keyboard_layout_danish" msgid="8036432066627127851">"дански"</string> - <string name="keyboard_layout_norwegian" msgid="9090097917011040937">"норвешки"</string> - <string name="keyboard_layout_swedish" msgid="732959109088479351">"шведски"</string> - <string name="keyboard_layout_finnish" msgid="5585659438924315466">"фински"</string> - <string name="keyboard_layout_croatian" msgid="4172229471079281138">"хрватски"</string> - <string name="keyboard_layout_czech" msgid="1349256901452975343">"чешки"</string> - <string name="keyboard_layout_estonian" msgid="8775830985185665274">"естонски"</string> - <string name="keyboard_layout_hungarian" msgid="4154963661406035109">"мађарски"</string> - <string name="keyboard_layout_icelandic" msgid="5836645650912489642">"исландски"</string> - <string name="keyboard_layout_brazilian" msgid="5117896443147781939">"бразилски"</string> - <string name="keyboard_layout_portuguese" msgid="2888198587329660305">"португалски"</string> - <string name="keyboard_layout_slovak" msgid="2469379934672837296">"словачки"</string> - <string name="keyboard_layout_slovenian" msgid="1735933028924982368">"словеначки"</string> - <string name="keyboard_layout_turkish" msgid="7736163250907964898">"турски"</string> - <string name="keyboard_layout_ukrainian" msgid="8176637744389480417">"украјински"</string> + <string name="keyboard_layout_english_uk_label" msgid="6664258463319999632">"енглеска (УК)"</string> + <string name="keyboard_layout_english_us_label" msgid="8994890249649106291">"енглеска (САД)"</string> + <string name="keyboard_layout_english_us_intl" msgid="3705168594034233583">"енглеска (САД), међународни стил"</string> + <string name="keyboard_layout_english_us_colemak_label" msgid="4194969610343455380">"енглеска (САД), Colemak стил"</string> + <string name="keyboard_layout_english_us_dvorak_label" msgid="793528923171145202">"енглеска (САД), Dvorak стил"</string> + <string name="keyboard_layout_german_label" msgid="8451565865467909999">"немачка"</string> + <string name="keyboard_layout_french_label" msgid="813450119589383723">"француска"</string> + <string name="keyboard_layout_french_ca_label" msgid="365352601060604832">"француска (Канада)"</string> + <string name="keyboard_layout_russian_label" msgid="8724879775815042968">"руска"</string> + <string name="keyboard_layout_russian_mac_label" msgid="3795866869038264796">"руска, Mac стил"</string> + <string name="keyboard_layout_spanish_label" msgid="7091555148131908240">"шпанска"</string> + <string name="keyboard_layout_swiss_french_label" msgid="4659191025396371684">"швајцарско француска"</string> + <string name="keyboard_layout_swiss_german_label" msgid="2305520941993314258">"швајцарско немачка"</string> + <string name="keyboard_layout_belgian" msgid="2011984572838651558">"белгијска"</string> + <string name="keyboard_layout_bulgarian" msgid="8951224309972028398">"бугарска"</string> + <string name="keyboard_layout_italian" msgid="6497079660449781213">"италијанска"</string> + <string name="keyboard_layout_danish" msgid="8036432066627127851">"данска"</string> + <string name="keyboard_layout_norwegian" msgid="9090097917011040937">"норвешка"</string> + <string name="keyboard_layout_swedish" msgid="732959109088479351">"шведска"</string> + <string name="keyboard_layout_finnish" msgid="5585659438924315466">"финска"</string> + <string name="keyboard_layout_croatian" msgid="4172229471079281138">"хрватска"</string> + <string name="keyboard_layout_czech" msgid="1349256901452975343">"чешка"</string> + <string name="keyboard_layout_estonian" msgid="8775830985185665274">"естонска"</string> + <string name="keyboard_layout_hungarian" msgid="4154963661406035109">"мађарска"</string> + <string name="keyboard_layout_icelandic" msgid="5836645650912489642">"исландска"</string> + <string name="keyboard_layout_brazilian" msgid="5117896443147781939">"бразилска"</string> + <string name="keyboard_layout_portuguese" msgid="2888198587329660305">"португалска"</string> + <string name="keyboard_layout_slovak" msgid="2469379934672837296">"словачка"</string> + <string name="keyboard_layout_slovenian" msgid="1735933028924982368">"словеначка"</string> + <string name="keyboard_layout_turkish" msgid="7736163250907964898">"турска"</string> + <string name="keyboard_layout_ukrainian" msgid="8176637744389480417">"украјинска"</string> </resources> diff --git a/packages/InputDevices/res/values-sw/strings.xml b/packages/InputDevices/res/values-sw/strings.xml index 65c9f59e7637..65ab96a18da4 100644 --- a/packages/InputDevices/res/values-sw/strings.xml +++ b/packages/InputDevices/res/values-sw/strings.xml @@ -4,7 +4,7 @@ <string name="app_label" msgid="8016145283189546017">"Vifaa Ingizi"</string> <string name="keyboard_layouts_label" msgid="6688773268302087545">"Kibodi ya Android"</string> <string name="keyboard_layout_english_uk_label" msgid="6664258463319999632">"Kiingereza (Uingereza)"</string> - <string name="keyboard_layout_english_us_label" msgid="8994890249649106291">"Kingereza (Marekani)"</string> + <string name="keyboard_layout_english_us_label" msgid="8994890249649106291">"Kiingereza (Marekani)"</string> <string name="keyboard_layout_english_us_intl" msgid="3705168594034233583">"Kiingereza (Marekani), Muundo wa Kimataifa"</string> <string name="keyboard_layout_english_us_colemak_label" msgid="4194969610343455380">"Kiingereza (Marekani), Muundo wa Colemak"</string> <string name="keyboard_layout_english_us_dvorak_label" msgid="793528923171145202">"Kiingereza (Marekani), Muundo wa Dvorak"</string> diff --git a/packages/InputDevices/res/values-tr/strings.xml b/packages/InputDevices/res/values-tr/strings.xml index d146b3552713..f7c12626eae2 100644 --- a/packages/InputDevices/res/values-tr/strings.xml +++ b/packages/InputDevices/res/values-tr/strings.xml @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <resources xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> - <string name="app_label" msgid="8016145283189546017">"Giriş Cihazları"</string> + <string name="app_label" msgid="8016145283189546017">"Input Devices"</string> <string name="keyboard_layouts_label" msgid="6688773268302087545">"Android klavyesi"</string> <string name="keyboard_layout_english_uk_label" msgid="6664258463319999632">"İngilizce (İngiltere)"</string> <string name="keyboard_layout_english_us_label" msgid="8994890249649106291">"İngilizce (ABD)"</string> diff --git a/packages/InputDevices/res/values-zh-rCN/strings.xml b/packages/InputDevices/res/values-zh-rCN/strings.xml index 2e18180bf661..85b1c84844d0 100644 --- a/packages/InputDevices/res/values-zh-rCN/strings.xml +++ b/packages/InputDevices/res/values-zh-rCN/strings.xml @@ -3,11 +3,11 @@ xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2"> <string name="app_label" msgid="8016145283189546017">"输入设备"</string> <string name="keyboard_layouts_label" msgid="6688773268302087545">"Android 键盘"</string> - <string name="keyboard_layout_english_uk_label" msgid="6664258463319999632">"英语(英式)"</string> - <string name="keyboard_layout_english_us_label" msgid="8994890249649106291">"英语(美式)"</string> - <string name="keyboard_layout_english_us_intl" msgid="3705168594034233583">"英语(美式),国际风格"</string> - <string name="keyboard_layout_english_us_colemak_label" msgid="4194969610343455380">"英语(美式),Colemak 风格"</string> - <string name="keyboard_layout_english_us_dvorak_label" msgid="793528923171145202">"英语(美式),Dvorak 风格"</string> + <string name="keyboard_layout_english_uk_label" msgid="6664258463319999632">"英语(英国)"</string> + <string name="keyboard_layout_english_us_label" msgid="8994890249649106291">"英语(美国)"</string> + <string name="keyboard_layout_english_us_intl" msgid="3705168594034233583">"英语(美国),国际风格"</string> + <string name="keyboard_layout_english_us_colemak_label" msgid="4194969610343455380">"英语(美国),Colemak 风格"</string> + <string name="keyboard_layout_english_us_dvorak_label" msgid="793528923171145202">"英语(美国),Dvorak 风格"</string> <string name="keyboard_layout_german_label" msgid="8451565865467909999">"德语"</string> <string name="keyboard_layout_french_label" msgid="813450119589383723">"法语"</string> <string name="keyboard_layout_french_ca_label" msgid="365352601060604832">"法语(加拿大)"</string> diff --git a/packages/PrintSpooler/res/values-af/strings.xml b/packages/PrintSpooler/res/values-af/strings.xml index 409089304dc3..76666fcdc21e 100644 --- a/packages/PrintSpooler/res/values-af/strings.xml +++ b/packages/PrintSpooler/res/values-af/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Kleur"</string> <string name="label_orientation" msgid="2853142581990496477">"Oriëntasie"</string> <string name="label_pages" msgid="6300874667546617333">"Bladsye (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"bv. 1—5,8,11—13"</string> <string name="print_preview" msgid="8010217796057763343">"Drukvoorskou"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Installeer PDF-bekyker vir voorskou"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Drukkerprogram het omgeval"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"Geen verbinding met drukker nie"</string> <string name="reason_unknown" msgid="5507940196503246139">"onbekend"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – nie beskikbaar nie"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Kon nie druktaak genereer nie"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Swart en wit"</item> <item msgid="2762241247228983754">"Kleur"</item> diff --git a/packages/PrintSpooler/res/values-am/strings.xml b/packages/PrintSpooler/res/values-am/strings.xml index 6569cf4e008b..6e5c00ffe3c8 100644 --- a/packages/PrintSpooler/res/values-am/strings.xml +++ b/packages/PrintSpooler/res/values-am/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"ቀለም"</string> <string name="label_orientation" msgid="2853142581990496477">"አቀማመጠ ገፅ"</string> <string name="label_pages" msgid="6300874667546617333">"ገጾች (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"ለምሳሌ፦ 1–5,8,11–13"</string> <string name="print_preview" msgid="8010217796057763343">"የህትመት ቅድመ እይታ"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"ለቅድመ-እይታ የፒ ዲ ኤፍ መመልከቻ ይጫኑ"</string> <string name="printing_app_crashed" msgid="854477616686566398">"የአታሚ መተግበሪያ ተበላሽቷል"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"ከአታሚ ጋር ምንም ግንኙነት የለም"</string> <string name="reason_unknown" msgid="5507940196503246139">"አይታወቅም"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – አይገኝም"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"የህትመት ስራን ማመንጨት አልተቻለም"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"ጥቁር እና ነጭ"</item> <item msgid="2762241247228983754">"ቀለም"</item> diff --git a/packages/PrintSpooler/res/values-ar/strings.xml b/packages/PrintSpooler/res/values-ar/strings.xml index 76d5dad86697..17408338bc92 100644 --- a/packages/PrintSpooler/res/values-ar/strings.xml +++ b/packages/PrintSpooler/res/values-ar/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"اللون"</string> <string name="label_orientation" msgid="2853142581990496477">"الاتجاه"</string> <string name="label_pages" msgid="6300874667546617333">"الصفحات (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"على سبيل المثال، 1—5،8،11—13"</string> <string name="print_preview" msgid="8010217796057763343">"معاينة قبل الطباعة"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"تثبيت برنامج عرض PDF للمعاينة"</string> <string name="printing_app_crashed" msgid="854477616686566398">"تعطّل تطبيق الطباعة"</string> @@ -61,15 +60,14 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"لا يوجد اتصال بالطابعة"</string> <string name="reason_unknown" msgid="5507940196503246139">"غير معروف"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – غير متاحة"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"تعذر إنشاء عملية الطباعة"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"أبيض وأسود"</item> <item msgid="2762241247228983754">"اللون"</item> </string-array> <string-array name="orientation_labels"> - <item msgid="4061931020926489228">"صورة أشخاص"</item> - <item msgid="3199660090246166812">"معالم"</item> + <item msgid="4061931020926489228">"عمودي"</item> + <item msgid="3199660090246166812">"أفقية"</item> </string-array> <string-array name="page_options_labels"> <item msgid="7421377442011699994">"الكل"</item> diff --git a/packages/PrintSpooler/res/values-bg/strings.xml b/packages/PrintSpooler/res/values-bg/strings.xml index 7f8c3aa925fb..1573b3b497d1 100644 --- a/packages/PrintSpooler/res/values-bg/strings.xml +++ b/packages/PrintSpooler/res/values-bg/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Цвят"</string> <string name="label_orientation" msgid="2853142581990496477">"Ориентация"</string> <string name="label_pages" msgid="6300874667546617333">"Страници (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"напр. 1–5, 8, 11–13"</string> <string name="print_preview" msgid="8010217796057763343">"Визуализация за печат"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Инсталиране на визуализатор на PDF"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Получи се срив в приложението за отпечатване"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"„<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>“ се анулира"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"Грешка в принтера при „<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>“"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"Принтерът блокира при „<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>“"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"Задание за отпечатване: <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + <item quantity="other" msgid="8746611264734222865">"Задания за отпечатване: <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"Отказ"</string> <string name="restart" msgid="2472034227037808749">"Рестартиране"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"Няма връзка с принтера"</string> <string name="reason_unknown" msgid="5507940196503246139">"няма данни"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – не е налице"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Заданието за отпечатване не можа да се генерира"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Черно-бяло"</item> <item msgid="2762241247228983754">"Цветно"</item> diff --git a/packages/PrintSpooler/res/values-ca/strings.xml b/packages/PrintSpooler/res/values-ca/strings.xml index 330c79b73a47..4071249260d5 100644 --- a/packages/PrintSpooler/res/values-ca/strings.xml +++ b/packages/PrintSpooler/res/values-ca/strings.xml @@ -54,7 +54,7 @@ <string name="blocked_notification_title_template" msgid="1175435827331588646">"Impressora bloquejada <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <plurals name="composite_notification_title_template"> <item quantity="one" msgid="5866624638054847057">"Tasca d\'impressió per a <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> - <item quantity="other" msgid="8746611264734222865">"Tasques d\'impressió de <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + <item quantity="other" msgid="8746611264734222865">"Tasques d\'impressió per a <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> </plurals> <string name="cancel" msgid="4373674107267141885">"Cancel·la"</string> <string name="restart" msgid="2472034227037808749">"Reinicia"</string> diff --git a/packages/PrintSpooler/res/values-cs/strings.xml b/packages/PrintSpooler/res/values-cs/strings.xml index c45a965cd1c6..8f828796bb78 100644 --- a/packages/PrintSpooler/res/values-cs/strings.xml +++ b/packages/PrintSpooler/res/values-cs/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Barva"</string> <string name="label_orientation" msgid="2853142581990496477">"Orientace"</string> <string name="label_pages" msgid="6300874667546617333">"STRÁNKY (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"např. 1–5, 8, 11–13"</string> <string name="print_preview" msgid="8010217796057763343">"Náhled tisku"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Nainstalovat prohlížeč PDF (umožní náhled)"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Aplikace tisku selhala"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"Rušení úlohy <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"Chyba tiskárny u úlohy <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"Tiskárna blokuje úlohu <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"Počet tiskových úloh: <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + <item quantity="other" msgid="8746611264734222865">"Počet tiskových úloh: <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"Zrušit"</string> <string name="restart" msgid="2472034227037808749">"Restartovat"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"Nelze se připojit k tiskárně"</string> <string name="reason_unknown" msgid="5507940196503246139">"neznámé"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – není k dispozici"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Tiskovou úlohu nelze vytvořit"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Černobíle"</item> <item msgid="2762241247228983754">"Barevně"</item> diff --git a/packages/PrintSpooler/res/values-da/strings.xml b/packages/PrintSpooler/res/values-da/strings.xml index c711d67332f5..9248cbae7b6c 100644 --- a/packages/PrintSpooler/res/values-da/strings.xml +++ b/packages/PrintSpooler/res/values-da/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Farve"</string> <string name="label_orientation" msgid="2853142581990496477">"Retning"</string> <string name="label_pages" msgid="6300874667546617333">"Sider (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"f.eks. 1-5,8,11-13"</string> <string name="print_preview" msgid="8010217796057763343">"Vis udskrift"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Installer et PDF-visningsprog. for at se eksempel"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Udskrivningsapp gik ned"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"Ingen forbindelse til printer"</string> <string name="reason_unknown" msgid="5507940196503246139">"ukendt"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – ikke tilgængelig"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Der kunne ikke genereres et udskriftsjob"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Sort/hvid"</item> <item msgid="2762241247228983754">"Farve"</item> diff --git a/packages/PrintSpooler/res/values-de/strings.xml b/packages/PrintSpooler/res/values-de/strings.xml index f4aef6594657..96c601a64069 100644 --- a/packages/PrintSpooler/res/values-de/strings.xml +++ b/packages/PrintSpooler/res/values-de/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Farbe"</string> <string name="label_orientation" msgid="2853142581990496477">"Ausrichtung"</string> <string name="label_pages" msgid="6300874667546617333">"Seiten (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"z. B. 1–5, 8, 11–13"</string> <string name="print_preview" msgid="8010217796057763343">"Vorschau drucken"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"PDF-Viewer für Vorschau installieren"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Druck-App abgestürzt"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"Keine Verbindung zum Drucker"</string> <string name="reason_unknown" msgid="5507940196503246139">"unbekannt"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – nicht verfügbar"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Druckauftrag konnte nicht generiert werden."</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Schwarz-weiß"</item> <item msgid="2762241247228983754">"Farbe"</item> diff --git a/packages/PrintSpooler/res/values-el/strings.xml b/packages/PrintSpooler/res/values-el/strings.xml index dc3ac8dc5be9..2c5142dd8cb6 100644 --- a/packages/PrintSpooler/res/values-el/strings.xml +++ b/packages/PrintSpooler/res/values-el/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Χρώμα"</string> <string name="label_orientation" msgid="2853142581990496477">"Προσανατολισμός"</string> <string name="label_pages" msgid="6300874667546617333">"Σελίδες (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"π.χ. 1-5,8,11-13"</string> <string name="print_preview" msgid="8010217796057763343">"Προεπισκόπηση εκτύπωσης"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Εγκαταστήστε το PDF viewer για προεπισκόπηση"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Διακοπή λειτουργίας εφαρμογής εκτύπωσης"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"Ακύρωση <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"Σφάλμα εκτυπωτή <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"Ο εκτυπωτής απέκλεισε <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"εργασία εκτύπωσης <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + <item quantity="other" msgid="8746611264734222865">"εργασίες εκτύπωσης <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"Ακύρωση"</string> <string name="restart" msgid="2472034227037808749">"Επανεκκίνηση"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"Δεν υπάρχει σύνδεση με εκτυπωτή"</string> <string name="reason_unknown" msgid="5507940196503246139">"άγνωστο"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – μη διαθέσιμο"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Δεν ήταν δυνατή η δημιουργία εργασίας εκτύπωσης"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Ασπρόμαυρο"</item> <item msgid="2762241247228983754">"Χρώμα"</item> diff --git a/packages/PrintSpooler/res/values-en-rGB/strings.xml b/packages/PrintSpooler/res/values-en-rGB/strings.xml index d94cbfbc5810..5582c7ae21c6 100644 --- a/packages/PrintSpooler/res/values-en-rGB/strings.xml +++ b/packages/PrintSpooler/res/values-en-rGB/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Colour"</string> <string name="label_orientation" msgid="2853142581990496477">"Orientation"</string> <string name="label_pages" msgid="6300874667546617333">"Pages (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"e.g. 1–5,8,11–13"</string> <string name="print_preview" msgid="8010217796057763343">"Print preview"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Install PDF viewer for preview"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Printing app crashed"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"No connection to printer"</string> <string name="reason_unknown" msgid="5507940196503246139">"unknown"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – unavailable"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Couldn\'t generate print job"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Black & White"</item> <item msgid="2762241247228983754">"Colour"</item> diff --git a/packages/PrintSpooler/res/values-en-rIN/strings.xml b/packages/PrintSpooler/res/values-en-rIN/strings.xml index d94cbfbc5810..5582c7ae21c6 100644 --- a/packages/PrintSpooler/res/values-en-rIN/strings.xml +++ b/packages/PrintSpooler/res/values-en-rIN/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Colour"</string> <string name="label_orientation" msgid="2853142581990496477">"Orientation"</string> <string name="label_pages" msgid="6300874667546617333">"Pages (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"e.g. 1–5,8,11–13"</string> <string name="print_preview" msgid="8010217796057763343">"Print preview"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Install PDF viewer for preview"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Printing app crashed"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"No connection to printer"</string> <string name="reason_unknown" msgid="5507940196503246139">"unknown"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – unavailable"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Couldn\'t generate print job"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Black & White"</item> <item msgid="2762241247228983754">"Colour"</item> diff --git a/packages/PrintSpooler/res/values-es-rUS/strings.xml b/packages/PrintSpooler/res/values-es-rUS/strings.xml index 13ca561a3812..549077b26cbb 100644 --- a/packages/PrintSpooler/res/values-es-rUS/strings.xml +++ b/packages/PrintSpooler/res/values-es-rUS/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Color"</string> <string name="label_orientation" msgid="2853142581990496477">"Orientación"</string> <string name="label_pages" msgid="6300874667546617333">"Páginas (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"p. ej.: 1–5, 8, 11–13"</string> <string name="print_preview" msgid="8010217796057763343">"Vista previa de impresión"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Instalar visualizador de PDF para vista previa"</string> <string name="printing_app_crashed" msgid="854477616686566398">"La aplicación de impresión falló"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"No hay conexión con la impresora."</string> <string name="reason_unknown" msgid="5507940196503246139">"desconocido"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>: no disponible"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Error al generar el trabajo de impresión"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Blanco y negro"</item> <item msgid="2762241247228983754">"Color"</item> diff --git a/packages/PrintSpooler/res/values-es/strings.xml b/packages/PrintSpooler/res/values-es/strings.xml index e0fd096419f1..b5dfb0bacb48 100644 --- a/packages/PrintSpooler/res/values-es/strings.xml +++ b/packages/PrintSpooler/res/values-es/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Color"</string> <string name="label_orientation" msgid="2853142581990496477">"Orientación"</string> <string name="label_pages" msgid="6300874667546617333">"Páginas (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"p.ej.: 1-5, 8, 11-13"</string> <string name="print_preview" msgid="8010217796057763343">"Vista previa de impresión"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Instalar visor PDF para obtener vista previa"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Error de aplicación de impresión"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"Cancelando <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"Error de impresora <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"La impresora ha bloqueado <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"Trabajo de impresión <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + <item quantity="other" msgid="8746611264734222865">"Trabajos de impresión <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"Cancelar"</string> <string name="restart" msgid="2472034227037808749">"Volver a empezar"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"No hay conexión con la impresora"</string> <string name="reason_unknown" msgid="5507940196503246139">"desconocido"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – no disponible"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Error al generar el trabajo de impresión"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Blanco y negro"</item> <item msgid="2762241247228983754">"Color"</item> diff --git a/packages/PrintSpooler/res/values-et-rEE/strings.xml b/packages/PrintSpooler/res/values-et-rEE/strings.xml index 8f7fc58c9a7a..814179db9f16 100644 --- a/packages/PrintSpooler/res/values-et-rEE/strings.xml +++ b/packages/PrintSpooler/res/values-et-rEE/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Värv"</string> <string name="label_orientation" msgid="2853142581990496477">"Suund"</string> <string name="label_pages" msgid="6300874667546617333">"Lehti (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"nt 1–5, 8, 11–13"</string> <string name="print_preview" msgid="8010217796057763343">"Prindi eelvaade"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"PDF-vaaturi installimine eelvaate kuvamiseks"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Printimisrakendus jooksis kokku"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"Prinditöö <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> tühistamine"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"Printeri viga: <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"Printer blokeeris töö <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"Prinditöö <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + <item quantity="other" msgid="8746611264734222865">"Prinditööd <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"Tühista"</string> <string name="restart" msgid="2472034227037808749">"Taaskäivita"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"Printeriühendus puudub"</string> <string name="reason_unknown" msgid="5507940196503246139">"teadmata"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – pole saadaval"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Prinditööd ei saanud luua"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Mustvalge"</item> <item msgid="2762241247228983754">"Värv"</item> diff --git a/packages/PrintSpooler/res/values-fa/strings.xml b/packages/PrintSpooler/res/values-fa/strings.xml index 1f8324b19214..2bc36236f4fb 100644 --- a/packages/PrintSpooler/res/values-fa/strings.xml +++ b/packages/PrintSpooler/res/values-fa/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"رنگی"</string> <string name="label_orientation" msgid="2853142581990496477">"جهت"</string> <string name="label_pages" msgid="6300874667546617333">"صفحات (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"مثلاً ۱—۵،۹،۷—۱۰"</string> <string name="print_preview" msgid="8010217796057763343">"پیشنمایش چاپ"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"نصب نمایشگر PDF برای پیشنمایش"</string> <string name="printing_app_crashed" msgid="854477616686566398">"برنامه چاپ خراب شد"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"اتصال با چاپگر برقرار نیست"</string> <string name="reason_unknown" msgid="5507940196503246139">"نامعلوم"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> - در دسترس نیست"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"کار چاپ ایجاد نشد"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"سیاه و سفید"</item> <item msgid="2762241247228983754">"رنگی"</item> diff --git a/packages/PrintSpooler/res/values-fi/strings.xml b/packages/PrintSpooler/res/values-fi/strings.xml index 28ab391de341..1a7caa924a25 100644 --- a/packages/PrintSpooler/res/values-fi/strings.xml +++ b/packages/PrintSpooler/res/values-fi/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Väri"</string> <string name="label_orientation" msgid="2853142581990496477">"Suunta"</string> <string name="label_pages" msgid="6300874667546617333">"Sivut (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"esim. 1–5,8,11–13"</string> <string name="print_preview" msgid="8010217796057763343">"Tulostuksen esikatselu"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Asenna PDF-katseluohjelma esikatselua varten"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Tulostussovellus kaatui"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"Peruutetaan työ <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"Tulostinvirhe työlle <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"Tulostin esti työn <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"Tulostustyö <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + <item quantity="other" msgid="8746611264734222865">"Tulostustyöt <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"Peruuta"</string> <string name="restart" msgid="2472034227037808749">"Käynnistä uudelleen"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"Ei yhteyttä tulostimeen"</string> <string name="reason_unknown" msgid="5507940196503246139">"tuntematon"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – ei käytettävissä"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Tulostustyötä ei voitu luoda"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Mustavalkoinen"</item> <item msgid="2762241247228983754">"Väri"</item> diff --git a/packages/PrintSpooler/res/values-fr-rCA/strings.xml b/packages/PrintSpooler/res/values-fr-rCA/strings.xml index 7991dca7161b..e07ba075d513 100644 --- a/packages/PrintSpooler/res/values-fr-rCA/strings.xml +++ b/packages/PrintSpooler/res/values-fr-rCA/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Couleur"</string> <string name="label_orientation" msgid="2853142581990496477">"Orientation"</string> <string name="label_pages" msgid="6300874667546617333">"Pages (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"p.ex. 1-5, 8, 11-13"</string> <string name="print_preview" msgid="8010217796057763343">"Aperçu avant impression"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Installer un lecteur PDF pour voir l\'aperçu"</string> <string name="printing_app_crashed" msgid="854477616686566398">"L\'application à l\'origine de l\'impression a planté"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"Aucune connexion à l\'imprimante"</string> <string name="reason_unknown" msgid="5507940196503246139">"inconnu"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> — indisponible"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Impossible de générer la tâche d\'impression"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Noir et blanc"</item> <item msgid="2762241247228983754">"Couleur"</item> diff --git a/packages/PrintSpooler/res/values-fr/strings.xml b/packages/PrintSpooler/res/values-fr/strings.xml index 9f2eda752e5f..90048c95cd91 100644 --- a/packages/PrintSpooler/res/values-fr/strings.xml +++ b/packages/PrintSpooler/res/values-fr/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Couleur"</string> <string name="label_orientation" msgid="2853142581990496477">"Orientation"</string> <string name="label_pages" msgid="6300874667546617333">"Pages (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"ex. : 1-5, 8, 11-13"</string> <string name="print_preview" msgid="8010217796057763343">"Aperçu avant impression"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Installer un lecteur PDF pour afficher l\'aperçu"</string> <string name="printing_app_crashed" msgid="854477616686566398">"L\'application à l\'origine de l\'impression a planté"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"Aucune connexion à l\'imprimante."</string> <string name="reason_unknown" msgid="5507940196503246139">"inconnue"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – indisponible"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Impossible de générer la tâche d\'impression."</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Noir et blanc"</item> <item msgid="2762241247228983754">"Couleur"</item> diff --git a/packages/PrintSpooler/res/values-hi/strings.xml b/packages/PrintSpooler/res/values-hi/strings.xml index e34d2d4e578a..5b1e4063e86a 100644 --- a/packages/PrintSpooler/res/values-hi/strings.xml +++ b/packages/PrintSpooler/res/values-hi/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"रंग"</string> <string name="label_orientation" msgid="2853142581990496477">"अभिविन्यास"</string> <string name="label_pages" msgid="6300874667546617333">"पृष्ठ (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"उदा. 1—5,8,11—13"</string> <string name="print_preview" msgid="8010217796057763343">"प्रिंट पूर्वावलोकन"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"पूर्वावलोकन के लिए PDF व्यूअर इंस्टॉल करें"</string> <string name="printing_app_crashed" msgid="854477616686566398">"प्रिंटिंग एप्लिकेशन क्रैश हो गया"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> रद्द हो रहा है"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"प्रिंटर त्रुटि <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"प्रिंटर अवरोधित <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"<xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g> प्रिंट कार्य"</item> + <item quantity="other" msgid="8746611264734222865">"<xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g> प्रिंट कार्य"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"रद्द करें"</string> <string name="restart" msgid="2472034227037808749">"पुन: आरंभ करें"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"प्रिंटर के लिए कोई कनेक्शन नहीं"</string> <string name="reason_unknown" msgid="5507940196503246139">"अज्ञात"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – अनुपलब्ध"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"प्रिंट कार्य जनरेट नहीं किया जा सका"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"श्याम और श्वेत"</item> <item msgid="2762241247228983754">"रंग"</item> diff --git a/packages/PrintSpooler/res/values-hr/strings.xml b/packages/PrintSpooler/res/values-hr/strings.xml index 0f225c8b5339..fe2ee7aa7912 100644 --- a/packages/PrintSpooler/res/values-hr/strings.xml +++ b/packages/PrintSpooler/res/values-hr/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"U boji"</string> <string name="label_orientation" msgid="2853142581990496477">"Orijentacija"</string> <string name="label_pages" msgid="6300874667546617333">"Stranice (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"npr. 1 – 5,8,11 – 13"</string> <string name="print_preview" msgid="8010217796057763343">"Pregled ispisa"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Instaliraj PDF preglednik za pregled"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Srušila se aplikacija za ispis"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"Otkazivanje zadatka <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"Pogreška pisača <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"Pisač je blokirao <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"Zadatak ispisa <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + <item quantity="other" msgid="8746611264734222865">"Broj zadataka ispisa: <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"Odustani"</string> <string name="restart" msgid="2472034227037808749">"Ponovo pokreni"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"Nema veze s pisačem"</string> <string name="reason_unknown" msgid="5507940196503246139">"nepoznato"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – zadatak nije dostupan"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Zadatak ispisa nije generiran"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Crno-bijelo"</item> <item msgid="2762241247228983754">"U boji"</item> diff --git a/packages/PrintSpooler/res/values-hu/strings.xml b/packages/PrintSpooler/res/values-hu/strings.xml index 3c3402d5de8c..49e103fa9497 100644 --- a/packages/PrintSpooler/res/values-hu/strings.xml +++ b/packages/PrintSpooler/res/values-hu/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Szín"</string> <string name="label_orientation" msgid="2853142581990496477">"Tájolás"</string> <string name="label_pages" msgid="6300874667546617333">"Oldalszám (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"pl. 1–5, 8, 11–13"</string> <string name="print_preview" msgid="8010217796057763343">"Előnézet nyomtatása"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Az előnézethez telepítse a PDF-megtekintőt."</string> <string name="printing_app_crashed" msgid="854477616686566398">"A nyomtatási alkalmazás összeomlott."</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"Nincs kapcsolat a nyomtatóval"</string> <string name="reason_unknown" msgid="5507940196503246139">"ismeretlen"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – nem érhető el"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Nem sikerült létrehozni a nyomtatási feladatot."</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Fekete-fehér"</item> <item msgid="2762241247228983754">"Szín"</item> diff --git a/packages/PrintSpooler/res/values-hy-rAM/strings.xml b/packages/PrintSpooler/res/values-hy-rAM/strings.xml index a524654ff4fa..97fa171fb514 100644 --- a/packages/PrintSpooler/res/values-hy-rAM/strings.xml +++ b/packages/PrintSpooler/res/values-hy-rAM/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Գույնը"</string> <string name="label_orientation" msgid="2853142581990496477">"Դիրքավորում"</string> <string name="label_pages" msgid="6300874667546617333">"Էջեր (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"օր.՝ 1-5, 8, 11-13"</string> <string name="print_preview" msgid="8010217796057763343">"Տպելու նախադիտում"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Նախադիտման համար տեղադրեք PDF դիտարկիչ"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Տպելու ծրագիրը վթարի է ենթարկվել"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>-ը չեղարկվում է"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"Տպիչի սխալ <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"Տպիչն արգելափակել է <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>-ը"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"<xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g> տպման աշխատանք"</item> + <item quantity="other" msgid="8746611264734222865">"<xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g> տպման աշխատանքներ"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"Չեղարկել"</string> <string name="restart" msgid="2472034227037808749">"Վերագործարկել"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"Տպիչի հետ կապ չկա"</string> <string name="reason_unknown" msgid="5507940196503246139">"անհայտ"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> տպիչն անհասանելի է"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Չկարողացանք մշակել տպման աշխատանքը"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Սև ու սպիտակ"</item> <item msgid="2762241247228983754">"Գույնը"</item> diff --git a/packages/PrintSpooler/res/values-in/strings.xml b/packages/PrintSpooler/res/values-in/strings.xml index 5f7a56ebde67..ae29fa4dcc39 100644 --- a/packages/PrintSpooler/res/values-in/strings.xml +++ b/packages/PrintSpooler/res/values-in/strings.xml @@ -52,8 +52,10 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"Membatalkan <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"Ada kesalahan printer <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"Printer memblokir <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"Tugas cetak <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + <item quantity="other" msgid="8746611264734222865">"Tugas cetak <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"Batal"</string> <string name="restart" msgid="2472034227037808749">"Mulai Ulang"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"Tidak ada sambungan ke printer"</string> diff --git a/packages/PrintSpooler/res/values-it/strings.xml b/packages/PrintSpooler/res/values-it/strings.xml index 5de509408738..b63b2f44bec3 100644 --- a/packages/PrintSpooler/res/values-it/strings.xml +++ b/packages/PrintSpooler/res/values-it/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"A colori"</string> <string name="label_orientation" msgid="2853142581990496477">"Orientamento"</string> <string name="label_pages" msgid="6300874667546617333">"Pagine (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"Es.: 1-5, 8, 11-13"</string> <string name="print_preview" msgid="8010217796057763343">"Anteprima di stampa"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Installa visualizzatore PDF per anteprima"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Arresto anomalo dell\'app di stampa"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"Nessun collegamento alla stampante"</string> <string name="reason_unknown" msgid="5507940196503246139">"sconosciuto"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> - non disponibile"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Impossibile generare processo di stampa"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Bianco e nero"</item> <item msgid="2762241247228983754">"A colori"</item> diff --git a/packages/PrintSpooler/res/values-iw/strings.xml b/packages/PrintSpooler/res/values-iw/strings.xml index dae65cad2eb4..e6f8e42b103b 100644 --- a/packages/PrintSpooler/res/values-iw/strings.xml +++ b/packages/PrintSpooler/res/values-iw/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"צבע"</string> <string name="label_orientation" msgid="2853142581990496477">"כיוון"</string> <string name="label_pages" msgid="6300874667546617333">"עמודים (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"למשל 1–5,8,11–13"</string> <string name="print_preview" msgid="8010217796057763343">"תצוגה מקדימה של הדפסה"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"התקן מציג PDF ליצירת תצוגה מקדימה"</string> <string name="printing_app_crashed" msgid="854477616686566398">"אפליקציית ההדפסה קרסה"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"מבטל את <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"שגיאת מדפסת ב-<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"המדפסת חסמה את <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"עבודת הדפסה <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + <item quantity="other" msgid="8746611264734222865">"<xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g> עבודות הדפסה"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"בטל"</string> <string name="restart" msgid="2472034227037808749">"הפעל מחדש"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"אין חיבור למדפסת"</string> <string name="reason_unknown" msgid="5507940196503246139">"לא ידוע"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – לא זמינה"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"לא ניתן היה ליצור את עבודת ההדפסה"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"שחור ולבן"</item> <item msgid="2762241247228983754">"צבע"</item> diff --git a/packages/PrintSpooler/res/values-ja/strings.xml b/packages/PrintSpooler/res/values-ja/strings.xml index 187698b782db..b9de967f204e 100644 --- a/packages/PrintSpooler/res/values-ja/strings.xml +++ b/packages/PrintSpooler/res/values-ja/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"色"</string> <string name="label_orientation" msgid="2853142581990496477">"方向"</string> <string name="label_pages" msgid="6300874667546617333">"ページ(<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"例: 1-5,8,11-13"</string> <string name="print_preview" msgid="8010217796057763343">"印刷プレビュー"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"プレビュー用PDFビューアをインストール"</string> <string name="printing_app_crashed" msgid="854477616686566398">"印刷アプリでの障害発生"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>をキャンセルしています"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"プリンタエラー: <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>をブロックしました"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"<xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>の印刷ジョブ"</item> + <item quantity="other" msgid="8746611264734222865">"<xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>の印刷ジョブ"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"キャンセル"</string> <string name="restart" msgid="2472034227037808749">"再起動"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"プリンタに接続されていません"</string> <string name="reason_unknown" msgid="5507940196503246139">"不明"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>–使用不可"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"印刷ジョブを生成できませんでした"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"モノクロ"</item> <item msgid="2762241247228983754">"色"</item> diff --git a/packages/PrintSpooler/res/values-ka-rGE/strings.xml b/packages/PrintSpooler/res/values-ka-rGE/strings.xml index d51975597ecc..87c6ce878acb 100644 --- a/packages/PrintSpooler/res/values-ka-rGE/strings.xml +++ b/packages/PrintSpooler/res/values-ka-rGE/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"ფერი"</string> <string name="label_orientation" msgid="2853142581990496477">"ორიენტაცია"</string> <string name="label_pages" msgid="6300874667546617333">"გვერდები (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"მაგ. 1–5, 8, 11–13"</string> <string name="print_preview" msgid="8010217796057763343">"ნახვა ამობეჭდვამდე"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"გადახედვისთვის დააყენეთ PDF მნახველი"</string> <string name="printing_app_crashed" msgid="854477616686566398">"ბეჭდვის აპი ავარიულად გაითიშა"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"მიმდინარეობს <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>-ის გაუქმება"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"ბეჭდვის შეცდომა <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"პრინტერმა დაბლოკა <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"ბეჭდვის <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g> დავალება"</item> + <item quantity="other" msgid="8746611264734222865">"ბეჭდვის <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g> დავალება"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"გაუქმება"</string> <string name="restart" msgid="2472034227037808749">"გადატვირთვა"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"პრინტერთან კავშირი არ არის"</string> <string name="reason_unknown" msgid="5507940196503246139">"უცნობი"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – მიუწვდომელია"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"ბეჭდვის დავალების გენერაცია ვერ ხერხდება"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"შავ-თეთრი"</item> <item msgid="2762241247228983754">"ფერი"</item> diff --git a/packages/PrintSpooler/res/values-km-rKH/strings.xml b/packages/PrintSpooler/res/values-km-rKH/strings.xml index b766a19c2930..74a15fd149e5 100644 --- a/packages/PrintSpooler/res/values-km-rKH/strings.xml +++ b/packages/PrintSpooler/res/values-km-rKH/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"ពណ៌"</string> <string name="label_orientation" msgid="2853142581990496477">"ទិស"</string> <string name="label_pages" msgid="6300874667546617333">"ទំព័រ (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"ឧ. 1—5,8,11—13"</string> <string name="print_preview" msgid="8010217796057763343">"មើលមុនបោះពុម្ព"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"ដំឡើងកម្មវិធីមើល PDF សម្រាប់ការមើលជាមុន"</string> <string name="printing_app_crashed" msgid="854477616686566398">"កម្មវិធីបោះពុម្ពគាំង"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"គ្មានការភ្ជាប់ទៅម៉ាស៊ីនបោះពុម្ព"</string> <string name="reason_unknown" msgid="5507940196503246139">"មិនស្គាល់"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – មិនអាចប្រើបាន"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"មិនអាចបង្កើតការងារបោះពុម្ព"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"ស & ខ្មៅ"</item> <item msgid="2762241247228983754">"ពណ៌"</item> diff --git a/packages/PrintSpooler/res/values-ko/strings.xml b/packages/PrintSpooler/res/values-ko/strings.xml index 01642c9f15a6..2f2609936956 100644 --- a/packages/PrintSpooler/res/values-ko/strings.xml +++ b/packages/PrintSpooler/res/values-ko/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"색상"</string> <string name="label_orientation" msgid="2853142581990496477">"방향"</string> <string name="label_pages" msgid="6300874667546617333">"페이지 수(<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"예: 1-5, 8, 11-13"</string> <string name="print_preview" msgid="8010217796057763343">"인쇄 미리보기"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"미리보기용 PDF 뷰어 설치"</string> <string name="printing_app_crashed" msgid="854477616686566398">"인쇄 앱에 오류 발생"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> 취소 중"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"프린터 오류: <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"차단된 프린터: <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"<xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g> 인쇄 작업"</item> + <item quantity="other" msgid="8746611264734222865">"<xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g> 인쇄 작업"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"취소"</string> <string name="restart" msgid="2472034227037808749">"다시 시작"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"프린터와 연결되지 않음"</string> <string name="reason_unknown" msgid="5507940196503246139">"알 수 없음"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – 사용할 수 없음"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"인쇄 작업을 생성할 수 없습니다."</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"흑백"</item> <item msgid="2762241247228983754">"컬러"</item> diff --git a/packages/PrintSpooler/res/values-lo-rLA/strings.xml b/packages/PrintSpooler/res/values-lo-rLA/strings.xml index cf3a5f7e98a4..8c0b37afdf2c 100644 --- a/packages/PrintSpooler/res/values-lo-rLA/strings.xml +++ b/packages/PrintSpooler/res/values-lo-rLA/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"ສີ"</string> <string name="label_orientation" msgid="2853142581990496477">"ລວງ"</string> <string name="label_pages" msgid="6300874667546617333">"(<xliff:g id="PAGE_COUNT">%1$s</xliff:g>) ໜ້າ"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"ຕົວຢ່າງ: 1—5,8,11—13"</string> <string name="print_preview" msgid="8010217796057763343">"ເບິ່ງກ່ອນພິມ"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"ຕິດຕັ້ງໂປຼແກຼມເບິ່ງ PDF ເພື່ອເບິ່ງຕົວຢ່າງ"</string> <string name="printing_app_crashed" msgid="854477616686566398">"ແອັບຯພິມລົ້ມເຫລວ"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"ບໍ່ມີການເຊື່ອມຕໍ່ຫາເຄື່ອງພິມ"</string> <string name="reason_unknown" msgid="5507940196503246139">"ບໍ່ຮູ້ຈັກ"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> - ບໍ່ມີຢູ່"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"ບໍ່ສາມາດສ້າງວຽກພິມໄດ້"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"ຂາວດຳ"</item> <item msgid="2762241247228983754">"ສີ"</item> diff --git a/packages/PrintSpooler/res/values-lt/strings.xml b/packages/PrintSpooler/res/values-lt/strings.xml index c8475fe1e889..708b528a8c69 100644 --- a/packages/PrintSpooler/res/values-lt/strings.xml +++ b/packages/PrintSpooler/res/values-lt/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Spalva"</string> <string name="label_orientation" msgid="2853142581990496477">"Orientacija"</string> <string name="label_pages" msgid="6300874667546617333">"Puslapiai (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"pvz., 1–5, 8, 11–13"</string> <string name="print_preview" msgid="8010217796057763343">"Spaudinio peržiūra"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Įdiegti PDF peržiūros priemonę"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Spausdinimo programa užstrigo"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"Nėra ryšio su spausdintuvu"</string> <string name="reason_unknown" msgid="5507940196503246139">"nežinoma"</string> <string name="printer_unavailable" msgid="2434170617003315690">"„<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>“ – nepasiekiama"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Nepavyko sukurti spausdinimo užduoties"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Nespalvotas"</item> <item msgid="2762241247228983754">"Spalva"</item> diff --git a/packages/PrintSpooler/res/values-lv/strings.xml b/packages/PrintSpooler/res/values-lv/strings.xml index 3e277dd5f7ec..44ec159c9744 100644 --- a/packages/PrintSpooler/res/values-lv/strings.xml +++ b/packages/PrintSpooler/res/values-lv/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Krāsa"</string> <string name="label_orientation" msgid="2853142581990496477">"Virziens"</string> <string name="label_pages" msgid="6300874667546617333">"Lapas (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"piem., 1–5,8,11–13"</string> <string name="print_preview" msgid="8010217796057763343">"Drukas priekšskatījums"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Instalēt PDF skatītāju priekšskatīšanai"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Drukas lietotne avarēja"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"Pārtrauc drukas darbu <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>…"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"Printera kļūda ar darbu <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"Printeris bloķēja darbu <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"Drukas darbs: <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + <item quantity="other" msgid="8746611264734222865">"Drukas darbi: <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"Atcelt"</string> <string name="restart" msgid="2472034227037808749">"Restartēt"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"Nav savienojuma ar printeri"</string> <string name="reason_unknown" msgid="5507940196503246139">"nezināms"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> — nav pieejams"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Nevar ģenerēt drukas darbu"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Melnbalts"</item> <item msgid="2762241247228983754">"Krāsa"</item> diff --git a/packages/PrintSpooler/res/values-mn-rMN/strings.xml b/packages/PrintSpooler/res/values-mn-rMN/strings.xml index 748730843e3a..5d19cf32a180 100644 --- a/packages/PrintSpooler/res/values-mn-rMN/strings.xml +++ b/packages/PrintSpooler/res/values-mn-rMN/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Өнгө"</string> <string name="label_orientation" msgid="2853142581990496477">"Чиглэл"</string> <string name="label_pages" msgid="6300874667546617333">"(<xliff:g id="PAGE_COUNT">%1$s</xliff:g>) хуудас"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"жнь. 1–5, 8, 11–13"</string> <string name="print_preview" msgid="8010217796057763343">"Хэвлэхээр урьдчилан харах"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Урьдчилан харахын тулд PDF харагчийг суулгах"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Хэвлэгч апп гацсан"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"Принтер холбогдоогүй байна"</string> <string name="reason_unknown" msgid="5507940196503246139">"тодорхойгүй"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – ашиглах боломжгүй"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Хэвлэх ажлыг үүсгэж чадсангүй"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Хар & Цагаан"</item> <item msgid="2762241247228983754">"Өнгө"</item> diff --git a/packages/PrintSpooler/res/values-ms-rMY/strings.xml b/packages/PrintSpooler/res/values-ms-rMY/strings.xml index 9a2dca3ff250..bd205d5057b5 100644 --- a/packages/PrintSpooler/res/values-ms-rMY/strings.xml +++ b/packages/PrintSpooler/res/values-ms-rMY/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Warna"</string> <string name="label_orientation" msgid="2853142581990496477">"Orientasi"</string> <string name="label_pages" msgid="6300874667546617333">"Halaman (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"cth. 1—5,8,11—13"</string> <string name="print_preview" msgid="8010217796057763343">"Pratonton cetak"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Pasang pemapar PDF untuk pratonton"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Apl percetakan ranap"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"Membatalkan <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"Ralat pencetak <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"Pencetak disekat <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"<xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g> kerja cetakan"</item> + <item quantity="other" msgid="8746611264734222865">"<xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g> kerja cetakan"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"Batal"</string> <string name="restart" msgid="2472034227037808749">"Mulakan semula"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"Tiada sambungan ke pencetak"</string> <string name="reason_unknown" msgid="5507940196503246139">"tidak diketahui"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – tidak tersedia"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Tidak dapat menjaga kerja cetakan"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Hitam & Putih"</item> <item msgid="2762241247228983754">"Warna"</item> diff --git a/packages/PrintSpooler/res/values-nb/strings.xml b/packages/PrintSpooler/res/values-nb/strings.xml index 77798ea095f9..dd660d0a7b80 100644 --- a/packages/PrintSpooler/res/values-nb/strings.xml +++ b/packages/PrintSpooler/res/values-nb/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Farge"</string> <string name="label_orientation" msgid="2853142581990496477">"Retning"</string> <string name="label_pages" msgid="6300874667546617333">"Sider (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"f.eks. 1–5, 8,11–13"</string> <string name="print_preview" msgid="8010217796057763343">"Utskriftsforhåndsvisning"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Installer PDF-leser for forhåndsvisning"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Utskriftsappen krasjet"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"Ingen forbindelse med skriveren"</string> <string name="reason_unknown" msgid="5507940196503246139">"ukjent"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – utilgjengelig"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Kunne ikke generere utskriftsjobben"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Svart og hvitt"</item> <item msgid="2762241247228983754">"Farge"</item> diff --git a/packages/PrintSpooler/res/values-nl/strings.xml b/packages/PrintSpooler/res/values-nl/strings.xml index e576e0c75593..ce4b0df8db50 100644 --- a/packages/PrintSpooler/res/values-nl/strings.xml +++ b/packages/PrintSpooler/res/values-nl/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Kleur"</string> <string name="label_orientation" msgid="2853142581990496477">"Stand"</string> <string name="label_pages" msgid="6300874667546617333">"Pagina\'s (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"bijv. 1—5,8,11—13"</string> <string name="print_preview" msgid="8010217796057763343">"Afdrukvoorbeeld"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Pdf-viewer installeren voor voorbeeld"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Afdruk-app gecrasht"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"Geen verbinding met printer"</string> <string name="reason_unknown" msgid="5507940196503246139">"onbekend"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – niet beschikbaar"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Kan de afdruktaak niet genereren"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Zwart-wit"</item> <item msgid="2762241247228983754">"Kleur"</item> diff --git a/packages/PrintSpooler/res/values-pl/strings.xml b/packages/PrintSpooler/res/values-pl/strings.xml index 252c582620d6..58838630c9a1 100644 --- a/packages/PrintSpooler/res/values-pl/strings.xml +++ b/packages/PrintSpooler/res/values-pl/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Kolor"</string> <string name="label_orientation" msgid="2853142581990496477">"Orientacja"</string> <string name="label_pages" msgid="6300874667546617333">"Strony (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"np. 1-5, 8, 11-13"</string> <string name="print_preview" msgid="8010217796057763343">"Podgląd wydruku"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Zainstaluj przeglądarkę PDF, by zobaczyć podgląd"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Aplikacja drukująca uległa awarii"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"Brak połączenia z drukarką"</string> <string name="reason_unknown" msgid="5507940196503246139">"brak informacji"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – niedostępne"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Nie udało się wygenerować zadania drukowania"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Czarno-białe"</item> <item msgid="2762241247228983754">"Kolor"</item> diff --git a/packages/PrintSpooler/res/values-pt-rPT/strings.xml b/packages/PrintSpooler/res/values-pt-rPT/strings.xml index 4c3dc769ca6f..ae0dee2f93b9 100644 --- a/packages/PrintSpooler/res/values-pt-rPT/strings.xml +++ b/packages/PrintSpooler/res/values-pt-rPT/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Cor"</string> <string name="label_orientation" msgid="2853142581990496477">"Orientação"</string> <string name="label_pages" msgid="6300874667546617333">"Páginas (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"p. ex. 1—5, 8, 11—13"</string> <string name="print_preview" msgid="8010217796057763343">"Pré-visualização de impressão"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Instalar o leitor de PDF para pré-visualização"</string> <string name="printing_app_crashed" msgid="854477616686566398">"A aplicação de impressão bloqueou"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"Sem ligação à impressora"</string> <string name="reason_unknown" msgid="5507940196503246139">"desconhecido"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – indisponível"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Não foi possível gerar a tarefa de impressão"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Preto e branco"</item> <item msgid="2762241247228983754">"Cor"</item> diff --git a/packages/PrintSpooler/res/values-pt/strings.xml b/packages/PrintSpooler/res/values-pt/strings.xml index 5e13b9fa0089..8d86086cedfc 100644 --- a/packages/PrintSpooler/res/values-pt/strings.xml +++ b/packages/PrintSpooler/res/values-pt/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Cor"</string> <string name="label_orientation" msgid="2853142581990496477">"Orientação"</string> <string name="label_pages" msgid="6300874667546617333">"Páginas (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"Ex.: 1–5, 8, 11–13"</string> <string name="print_preview" msgid="8010217796057763343">"Visualização de impressão"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Instalar o visualizador de PDF"</string> <string name="printing_app_crashed" msgid="854477616686566398">"O aplicativo de impressão falhou"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"Cancelando <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"Erro ao imprimir <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"A impressora bloqueou <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"Trabalho de impressão <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + <item quantity="other" msgid="8746611264734222865">"Trabalhos de impressão <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"Cancelar"</string> <string name="restart" msgid="2472034227037808749">"Reiniciar"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"Sem conexão com a impressora"</string> <string name="reason_unknown" msgid="5507940196503246139">"desconhecido"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – não disponível"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Não foi possível gerar o trabalho de impressão"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Preto e branco"</item> <item msgid="2762241247228983754">"Cor"</item> diff --git a/packages/PrintSpooler/res/values-ro/strings.xml b/packages/PrintSpooler/res/values-ro/strings.xml index 34571df529b0..699de3c3a221 100644 --- a/packages/PrintSpooler/res/values-ro/strings.xml +++ b/packages/PrintSpooler/res/values-ro/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Color"</string> <string name="label_orientation" msgid="2853142581990496477">"Orientare"</string> <string name="label_pages" msgid="6300874667546617333">"Pagini (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"de ex.: 1-5, 8, 11-13"</string> <string name="print_preview" msgid="8010217796057763343">"Previzualizați printarea"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Instalați PDF viewer pentru previzualizare"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Aplicația de printare s-a blocat"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"Nu există conexiune la o imprimantă"</string> <string name="reason_unknown" msgid="5507940196503246139">"necunoscut"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> - indisponibil"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Nu s-a putut genera sarcina de printare"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Alb-negru"</item> <item msgid="2762241247228983754">"Color"</item> diff --git a/packages/PrintSpooler/res/values-ru/strings.xml b/packages/PrintSpooler/res/values-ru/strings.xml index 35695e606863..dd5ad3be9164 100644 --- a/packages/PrintSpooler/res/values-ru/strings.xml +++ b/packages/PrintSpooler/res/values-ru/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Цветной"</string> <string name="label_orientation" msgid="2853142581990496477">"Ориентация"</string> <string name="label_pages" msgid="6300874667546617333">"СТРАНИЦЫ (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"напр., 1–5, 8, 11–13"</string> <string name="print_preview" msgid="8010217796057763343">"Предварительный просмотр"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Установить средство просмотра PDF"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Сбой приложения печати"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"Отмена задания <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>…"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"Ошибка задания \"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>\""</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"Задание \"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>\" заблокировано"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"Задание печати: <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + <item quantity="other" msgid="8746611264734222865">"Задания печати: <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"Отмена"</string> <string name="restart" msgid="2472034227037808749">"Повторить"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"Нет связи с принтером"</string> <string name="reason_unknown" msgid="5507940196503246139">"неизвестно"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – недоступен"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Не удалось создать задание печати."</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Черно-белое"</item> <item msgid="2762241247228983754">"Цветное"</item> diff --git a/packages/PrintSpooler/res/values-sk/strings.xml b/packages/PrintSpooler/res/values-sk/strings.xml index 008481f05991..3176358cdd42 100644 --- a/packages/PrintSpooler/res/values-sk/strings.xml +++ b/packages/PrintSpooler/res/values-sk/strings.xml @@ -52,8 +52,10 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"Prebieha zrušenie úlohy <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"Chyba tlačiarne – úloha <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"Tlačiareň zablok. úlohu <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"Počet tlačových úloh: <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + <item quantity="other" msgid="8746611264734222865">"Počet tlačových úloh: <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"Zrušiť"</string> <string name="restart" msgid="2472034227037808749">"Spustiť znova"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"Žiadne pripojenie k tlačiarni"</string> diff --git a/packages/PrintSpooler/res/values-sl/strings.xml b/packages/PrintSpooler/res/values-sl/strings.xml index 40a69c25d387..b369cf349bed 100644 --- a/packages/PrintSpooler/res/values-sl/strings.xml +++ b/packages/PrintSpooler/res/values-sl/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Barvno"</string> <string name="label_orientation" msgid="2853142581990496477">"Postavitev"</string> <string name="label_pages" msgid="6300874667546617333">"Št. strani (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"npr. 1–5, 8, 11–13"</string> <string name="print_preview" msgid="8010217796057763343">"Predogled tiskanja"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Za predogled namestite pregledovalnik za PDF-je"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Aplikacija za tiskanje se je zrušila"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"Ni povezave s tiskalnikom"</string> <string name="reason_unknown" msgid="5507940196503246139">"neznano"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – ni na voljo"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Tiskalnega opravila ni bilo mogoče ustvariti"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Črno-belo"</item> <item msgid="2762241247228983754">"Barvno"</item> diff --git a/packages/PrintSpooler/res/values-sr/strings.xml b/packages/PrintSpooler/res/values-sr/strings.xml index 7cc5ec54daeb..ee6a47f76de2 100644 --- a/packages/PrintSpooler/res/values-sr/strings.xml +++ b/packages/PrintSpooler/res/values-sr/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Боја"</string> <string name="label_orientation" msgid="2853142581990496477">"Положај"</string> <string name="label_pages" msgid="6300874667546617333">"Странице (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"нпр. 1–5, 8, 11–13"</string> <string name="print_preview" msgid="8010217796057763343">"Преглед пре штампања"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Инсталирај PDF приказивач за преглед"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Апликација за штампање је отказала"</string> @@ -38,7 +37,7 @@ <string name="search" msgid="5421724265322228497">"Претражи"</string> <string name="all_printers_label" msgid="3178848870161526399">"Сви штампачи"</string> <string name="add_print_service_label" msgid="5356702546188981940">"Додај услугу"</string> - <string name="print_search_box_shown_utterance" msgid="7967404953901376090">"Оквир за претрагу се приказује"</string> + <string name="print_search_box_shown_utterance" msgid="7967404953901376090">"Оквир за претрагу је приказан"</string> <string name="print_search_box_hidden_utterance" msgid="5727755169343113351">"Оквир за претрагу је сакривен"</string> <string name="print_add_printer" msgid="1088656468360653455">"Додај штампач"</string> <plurals name="print_search_result_count_utterance"> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"Отказује се <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"Грешка штампача <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"Штампач је блокирао <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"Задатак штампања <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + <item quantity="other" msgid="8746611264734222865">"<xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g> задат(а)ка штампања"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"Откажи"</string> <string name="restart" msgid="2472034227037808749">"Поново покрени"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"Нема везе са штампачем"</string> <string name="reason_unknown" msgid="5507940196503246139">"непознато"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – недоступан"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Није могуће генерисати задатак за штампање"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Црно-бело"</item> <item msgid="2762241247228983754">"Боја"</item> diff --git a/packages/PrintSpooler/res/values-sv/strings.xml b/packages/PrintSpooler/res/values-sv/strings.xml index 8f75bf5d99bc..85d7e6eab2b8 100644 --- a/packages/PrintSpooler/res/values-sv/strings.xml +++ b/packages/PrintSpooler/res/values-sv/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Färg"</string> <string name="label_orientation" msgid="2853142581990496477">"Orientering"</string> <string name="label_pages" msgid="6300874667546617333">"Sidor (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"t.ex. 1–5,8,11–13"</string> <string name="print_preview" msgid="8010217796057763343">"Förhandsgranskning"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Installera PDF-läsare för förhandsgranskning"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Utskriftsappen kraschade"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"Ingen anslutning till skrivaren"</string> <string name="reason_unknown" msgid="5507940196503246139">"okänt"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – inte tillgänglig"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Det gick inte att skapa utskriftsjobbet"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Svartvit"</item> <item msgid="2762241247228983754">"Färg"</item> diff --git a/packages/PrintSpooler/res/values-sw/strings.xml b/packages/PrintSpooler/res/values-sw/strings.xml index 1991832fb9d6..62509dbd9bef 100644 --- a/packages/PrintSpooler/res/values-sw/strings.xml +++ b/packages/PrintSpooler/res/values-sw/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Rangi"</string> <string name="label_orientation" msgid="2853142581990496477">"Mkao"</string> <string name="label_pages" msgid="6300874667546617333">"Kurasa (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"k.m. 1–5, 8, 11–13"</string> <string name="print_preview" msgid="8010217796057763343">"Chungulia kwanza kabla ya kuchapisha"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Sakinisha kitazamaji cha PDF kwa onyesho la kuchungulia"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Programu ya kuchapisha imeacha kufanya kazi"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"Inaghairi <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"Hitilafu ya kuchapisha <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"Printa imefungwa <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"Kazi ya kuchapisha ya <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + <item quantity="other" msgid="8746611264734222865">"Kazi za kuchapisha za <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"Ghairi"</string> <string name="restart" msgid="2472034227037808749">"Anzisha upya"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"Hakuna muunganisho kwa printa"</string> <string name="reason_unknown" msgid="5507940196503246139">"haijulikani"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> - haipatikani"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Haikuweza kuzalisha kazi ya kuchapisha"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Nyeusi na Nyeupe"</item> <item msgid="2762241247228983754">"Rangi"</item> diff --git a/packages/PrintSpooler/res/values-th/strings.xml b/packages/PrintSpooler/res/values-th/strings.xml index 0d247a5b64f4..08b2e78d34a0 100644 --- a/packages/PrintSpooler/res/values-th/strings.xml +++ b/packages/PrintSpooler/res/values-th/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"สี"</string> <string name="label_orientation" msgid="2853142581990496477">"การวางแนว"</string> <string name="label_pages" msgid="6300874667546617333">"หน้า (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"เช่น 1—5,8,11—13"</string> <string name="print_preview" msgid="8010217796057763343">"ตัวอย่างก่อนพิมพ์"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"ติดตั้งโปรแกรมดู PDF เพื่อดูหน้าตัวอย่าง"</string> <string name="printing_app_crashed" msgid="854477616686566398">"แอปการพิมพ์ขัดข้อง"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"กำลังยกเลิก <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"ข้อผิดพลาดเครื่องพิมพ์ <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"เครื่องพิมพ์ได้บล็อก <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"งานพิมพ์ <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + <item quantity="other" msgid="8746611264734222865">"งานพิมพ์ <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"ยกเลิก"</string> <string name="restart" msgid="2472034227037808749">"เริ่มต้นใหม่"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"ไม่มีการเชื่อมต่อไปยังเครื่องพิมพ์"</string> <string name="reason_unknown" msgid="5507940196503246139">"ไม่ทราบ"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> ไม่พร้อมใช้งาน"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"ไม่สามารถสร้างงานพิมพ์"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"ขาวดำ"</item> <item msgid="2762241247228983754">"สี"</item> diff --git a/packages/PrintSpooler/res/values-tl/strings.xml b/packages/PrintSpooler/res/values-tl/strings.xml index 087cf493d25d..c2c95923ce78 100644 --- a/packages/PrintSpooler/res/values-tl/strings.xml +++ b/packages/PrintSpooler/res/values-tl/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Kulay"</string> <string name="label_orientation" msgid="2853142581990496477">"Oryentasyon"</string> <string name="label_pages" msgid="6300874667546617333">"Mga Pahina (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"hal. 1—5,8,11—13"</string> <string name="print_preview" msgid="8010217796057763343">"Preview sa pag-print"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Mag-install ng PDF viewer para sa pag-preview"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Nag-crash ang app sa pag-print"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"Kinakansela ang <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"Error sa printer <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"Naka-block ang Printer <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"Pag-print ng <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + <item quantity="other" msgid="8746611264734222865">"Mga pag-print ng <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"Kanselahin"</string> <string name="restart" msgid="2472034227037808749">"I-restart"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"Hindi nakakonekta sa printer"</string> <string name="reason_unknown" msgid="5507940196503246139">"hindi alam"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – hindi available"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Hindi mabuo ang pag-print"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Black & White"</item> <item msgid="2762241247228983754">"Kulay"</item> diff --git a/packages/PrintSpooler/res/values-tr/strings.xml b/packages/PrintSpooler/res/values-tr/strings.xml index 8127c4b2324c..5ef653087e02 100644 --- a/packages/PrintSpooler/res/values-tr/strings.xml +++ b/packages/PrintSpooler/res/values-tr/strings.xml @@ -52,8 +52,10 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> iptal ediliyor"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"Yazıcı hatası: <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"Yazıcı <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> işini engelledi"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"<xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g> yazdırma işi"</item> + <item quantity="other" msgid="8746611264734222865">"<xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g> yazdırma işleri"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"İptal"</string> <string name="restart" msgid="2472034227037808749">"Yeniden başlat"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"Yazıcı bağlantısı yok"</string> diff --git a/packages/PrintSpooler/res/values-uk/strings.xml b/packages/PrintSpooler/res/values-uk/strings.xml index cd28f3cca275..21cf0e99ed8c 100644 --- a/packages/PrintSpooler/res/values-uk/strings.xml +++ b/packages/PrintSpooler/res/values-uk/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Колір"</string> <string name="label_orientation" msgid="2853142581990496477">"Орієнтація"</string> <string name="label_pages" msgid="6300874667546617333">"Сторінки (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"напр.,1–5, 8, 11–13"</string> <string name="print_preview" msgid="8010217796057763343">"Версія для друку"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Установити засіб перегляду PDF"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Програма друку аварійно завершила роботу"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"Немає з’єднання з принтером"</string> <string name="reason_unknown" msgid="5507940196503246139">"невідомо"</string> <string name="printer_unavailable" msgid="2434170617003315690">"Завдання \"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>\" не доступне"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Не вдалося створити завдання друку"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Чорно-білий"</item> <item msgid="2762241247228983754">"Колір"</item> diff --git a/packages/PrintSpooler/res/values-vi/strings.xml b/packages/PrintSpooler/res/values-vi/strings.xml index 3c44e7d00835..9582f002a3cd 100644 --- a/packages/PrintSpooler/res/values-vi/strings.xml +++ b/packages/PrintSpooler/res/values-vi/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Màu"</string> <string name="label_orientation" msgid="2853142581990496477">"Hướng"</string> <string name="label_pages" msgid="6300874667546617333">"Trang (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"Ví dụ: 1—5, 8, 11—13"</string> <string name="print_preview" msgid="8010217796057763343">"Xem trước bản in"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Cài đặt trình xem PDF để xem trước"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Ứng dụng in gặp lỗi"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"Hủy <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"Lỗi máy in <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"Máy in đã chặn <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"Lệnh in <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + <item quantity="other" msgid="8746611264734222865">"Lệnh in <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"Hủy"</string> <string name="restart" msgid="2472034227037808749">"Bắt đầu lại"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"Không có kết nối nào với máy in"</string> <string name="reason_unknown" msgid="5507940196503246139">"không xác định"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – không khả dụng"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Không thể tạo lệnh in"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Đen trắng"</item> <item msgid="2762241247228983754">"Màu"</item> diff --git a/packages/PrintSpooler/res/values-zh-rCN/strings.xml b/packages/PrintSpooler/res/values-zh-rCN/strings.xml index a968d26223d1..5eb640fed439 100644 --- a/packages/PrintSpooler/res/values-zh-rCN/strings.xml +++ b/packages/PrintSpooler/res/values-zh-rCN/strings.xml @@ -52,8 +52,10 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"正在取消打印“<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>”"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"打印机在打印“<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>”时出错"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"打印机拒绝打印“<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>”"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"“<xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>”打印作业"</item> + <item quantity="other" msgid="8746611264734222865">"“<xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g>”打印作业"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"取消"</string> <string name="restart" msgid="2472034227037808749">"重新开始"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"未与打印机建立连接"</string> diff --git a/packages/PrintSpooler/res/values-zh-rHK/strings.xml b/packages/PrintSpooler/res/values-zh-rHK/strings.xml index c089a225fc7b..2f16a227264d 100644 --- a/packages/PrintSpooler/res/values-zh-rHK/strings.xml +++ b/packages/PrintSpooler/res/values-zh-rHK/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"顏色"</string> <string name="label_orientation" msgid="2853142581990496477">"方向"</string> <string name="label_pages" msgid="6300874667546617333">"頁數 (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"例如:1–5、8、11–13"</string> <string name="print_preview" msgid="8010217796057763343">"預覽列印"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"安裝預覽所需的 PDF 檢視器"</string> <string name="printing_app_crashed" msgid="854477616686566398">"列印應用程式當機了"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"正在取消 <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"打印機錯誤:<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"打印機已封鎖 <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"一項 <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g> 列印工作"</item> + <item quantity="other" msgid="8746611264734222865">"多項 <xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g> 列印工作"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"取消"</string> <string name="restart" msgid="2472034227037808749">"重新開始"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"尚未與打印機連線"</string> <string name="reason_unknown" msgid="5507940196503246139">"不明"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – 無法使用"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"無法產生列印工作"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"黑白"</item> <item msgid="2762241247228983754">"彩色"</item> diff --git a/packages/PrintSpooler/res/values-zh-rTW/strings.xml b/packages/PrintSpooler/res/values-zh-rTW/strings.xml index 1d84ac528217..189081183ef9 100644 --- a/packages/PrintSpooler/res/values-zh-rTW/strings.xml +++ b/packages/PrintSpooler/res/values-zh-rTW/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"色彩"</string> <string name="label_orientation" msgid="2853142581990496477">"方向"</string> <string name="label_pages" msgid="6300874667546617333">"頁數 (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"例如:1—5,8,11—13"</string> <string name="print_preview" msgid="8010217796057763343">"列印預覽"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"安裝預覽所需的 PDF 檢視器"</string> <string name="printing_app_crashed" msgid="854477616686566398">"列印應用程式當機了"</string> @@ -34,7 +33,7 @@ <string name="generating_print_job" msgid="3119608742651698916">"正在產生列印工作"</string> <string name="save_as_pdf" msgid="5718454119847596853">"儲存為 PDF"</string> <string name="all_printers" msgid="5018829726861876202">"所有印表機…"</string> - <string name="print_dialog" msgid="32628687461331979">"列印對話方塊"</string> + <string name="print_dialog" msgid="32628687461331979">"印表機對話方塊"</string> <string name="search" msgid="5421724265322228497">"搜尋"</string> <string name="all_printers_label" msgid="3178848870161526399">"所有印表機"</string> <string name="add_print_service_label" msgid="5356702546188981940">"新增服務"</string> @@ -52,15 +51,16 @@ <string name="cancelling_notification_title_template" msgid="1821759594704703197">"正在取消 <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="failed_notification_title_template" msgid="2256217208186530973">"印表機發生錯誤:<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> <string name="blocked_notification_title_template" msgid="1175435827331588646">"印表機封鎖了 <xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g>"</string> - <!-- no translation found for composite_notification_title_template:one (5866624638054847057) --> - <!-- no translation found for composite_notification_title_template:other (8746611264734222865) --> + <plurals name="composite_notification_title_template"> + <item quantity="one" msgid="5866624638054847057">"<xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g> 個列印工作"</item> + <item quantity="other" msgid="8746611264734222865">"<xliff:g id="PRINT_JOB_NAME">%1$d</xliff:g> 個列印工作"</item> + </plurals> <string name="cancel" msgid="4373674107267141885">"取消"</string> <string name="restart" msgid="2472034227037808749">"重新開始"</string> <string name="no_connection_to_printer" msgid="2159246915977282728">"尚未與印表機建立連線"</string> <string name="reason_unknown" msgid="5507940196503246139">"不明"</string> <string name="printer_unavailable" msgid="2434170617003315690">"<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – 無法使用"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"無法產生列印工作"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"黑白"</item> <item msgid="2762241247228983754">"彩色"</item> diff --git a/packages/PrintSpooler/res/values-zu/strings.xml b/packages/PrintSpooler/res/values-zu/strings.xml index 1bf72a6fac3f..06472e4ea435 100644 --- a/packages/PrintSpooler/res/values-zu/strings.xml +++ b/packages/PrintSpooler/res/values-zu/strings.xml @@ -25,8 +25,7 @@ <string name="label_color" msgid="1108690305218188969">"Umbala"</string> <string name="label_orientation" msgid="2853142581990496477">"Umumo"</string> <string name="label_pages" msgid="6300874667546617333">"Amakhasi (<xliff:g id="PAGE_COUNT">%1$s</xliff:g>)"</string> - <!-- no translation found for pages_range_example (8558694453556945172) --> - <skip /> + <string name="pages_range_example" msgid="8558694453556945172">"isb. 1—5, 8, 11—13"</string> <string name="print_preview" msgid="8010217796057763343">"Ukubuka kuqala kokuphrinta"</string> <string name="install_for_print_preview" msgid="6366303997385509332">"Faka isibukeli se-PDF ukuze uhlole kuqala"</string> <string name="printing_app_crashed" msgid="854477616686566398">"Ukuphrinta uhlelo lokusebenza kukhubazekile"</string> @@ -61,8 +60,7 @@ <string name="no_connection_to_printer" msgid="2159246915977282728">"Akukho ukuxhumana kuphrinta"</string> <string name="reason_unknown" msgid="5507940196503246139">"akwaziwa"</string> <string name="printer_unavailable" msgid="2434170617003315690">"I-<xliff:g id="PRINT_JOB_NAME">%1$s</xliff:g> – ayitholakali"</string> - <!-- no translation found for print_error_default_message (8568506918983980567) --> - <skip /> + <string name="print_error_default_message" msgid="8568506918983980567">"Ayikwazanga ukukhiqiza umsebenzi wokuphrinta"</string> <string-array name="color_mode_labels"> <item msgid="7602948745415174937">"Okumnyama nokumhlophe"</item> <item msgid="2762241247228983754">"Umbala"</item> diff --git a/packages/SystemUI/src/com/android/systemui/BatteryMeterView.java b/packages/SystemUI/src/com/android/systemui/BatteryMeterView.java index 150f13280cd6..b6e03e143c7e 100755 --- a/packages/SystemUI/src/com/android/systemui/BatteryMeterView.java +++ b/packages/SystemUI/src/com/android/systemui/BatteryMeterView.java @@ -69,8 +69,10 @@ public class BatteryMeterView extends View implements DemoMode { private final Rect mBoltFrame = new Rect(); private class BatteryTracker extends BroadcastReceiver { + public static final int UNKNOWN_LEVEL = -1; + // current battery status - int level; + int level = UNKNOWN_LEVEL; String percentStr; int plugType; boolean plugged; @@ -148,7 +150,11 @@ public class BatteryMeterView extends View implements DemoMode { IntentFilter filter = new IntentFilter(); filter.addAction(Intent.ACTION_BATTERY_CHANGED); filter.addAction(ACTION_LEVEL_TEST); - getContext().registerReceiver(mTracker, filter); + final Intent sticky = getContext().registerReceiver(mTracker, filter); + if (sticky != null) { + // preload the battery level + mTracker.onReceive(getContext(), sticky); + } } @Override @@ -256,6 +262,9 @@ public class BatteryMeterView extends View implements DemoMode { public void draw(Canvas c) { BatteryTracker tracker = mDemoMode ? mDemoTracker : mTracker; final int level = tracker.level; + + if (level == BatteryTracker.UNKNOWN_LEVEL) return; + float drawFrac = (float) level / 100f; final int pt = getPaddingTop(); final int pl = getPaddingLeft(); diff --git a/services/java/com/android/server/am/ActivityStack.java b/services/java/com/android/server/am/ActivityStack.java index 20d443b51f7a..596e18a80244 100644 --- a/services/java/com/android/server/am/ActivityStack.java +++ b/services/java/com/android/server/am/ActivityStack.java @@ -1629,10 +1629,12 @@ final class ActivityStack { private void insertTaskAtTop(TaskRecord task) { // If this is being moved to the top by another activity or being launched from the home // activity, set mOnTopOfHome accordingly. - final boolean fromHome = mStackSupervisor.getLastStack().isHomeStack(); + ActivityStack lastStack = mStackSupervisor.getLastStack(); + final boolean fromHome = lastStack == null ? true : lastStack.isHomeStack(); if (!isHomeStack() && (fromHome || topTask() != task)) { task.mOnTopOfHome = fromHome; } + mTaskHistory.remove(task); // Now put task at top. int stackNdx = mTaskHistory.size(); |