2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-09-01 06:35:09 +00:00

Compare commits

..

12 Commits

Author SHA1 Message Date
Albert Vaca Cintora
ad49e500fa Fix discovering myself and too many registrations 2020-07-19 01:22:04 +02:00
Albert Vaca Cintora
826c0a854e Revert "Failed mega refactor"
This reverts commit 8201b8cbdf028cc8946f4e6a8127a316b8cf1339.
2020-07-19 00:11:07 +02:00
Albert Vaca Cintora
cf32416243 Failed mega refactor 2020-07-18 23:59:03 +02:00
Albert Vaca Cintora
d8749d8f85 Bump deps 2020-07-18 23:58:36 +02:00
Simon Redman
75e08345f7 Make sure that mDNS discovery always writes before reading 2020-07-18 23:58:36 +02:00
Simon Redman
8168ff53e6 Fix mDNS broadcasting 2020-07-18 23:58:36 +02:00
Simon Redman
d939c18dd5 Send identity packet to other party discovered by mDNS 2020-07-18 23:58:36 +02:00
Simon Redman
ec638fdbec Starkly reduce crashing 2020-07-18 23:58:36 +02:00
Simon Redman
e77978d1d5 Move further along with mDNS -- Now able to resolve hostnames and ports 2020-07-18 23:58:36 +02:00
Simon Redman
a63100e5d4 Improve logging 2020-07-18 23:58:36 +02:00
Simon Redman
c817fe1012 Remove UDP broadcasting and replace with mDNS sending 2020-07-18 23:58:36 +02:00
Simon Redman
58de1aa868 Duplicate LanBackend as MulticastBackend 2020-07-18 23:58:36 +02:00
261 changed files with 5852 additions and 8597 deletions

View File

@@ -2,8 +2,8 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="org.kde.kdeconnect_tp"
android:versionCode="11700"
android:versionName="1.17.0">
android:versionCode="11421"
android:versionName="1.14.2">
<supports-screens
android:anyDensity="true"
@@ -35,8 +35,10 @@
<uses-permission android:name="android.permission.READ_CALL_LOG" />
<uses-permission android:name="android.permission.SEND_SMS" />
<uses-permission android:name="android.permission.READ_SMS" />
<uses-permission android:name="android.permission.WRITE_SMS" />
<uses-permission android:name="android.permission.RECEIVE_SMS" />
<uses-permission android:name="android.permission.RECEIVE_MMS" />
<uses-permission android:name="android.provider.Telephony.SMS_RECEIVED" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
<uses-permission android:name="android.permission.USE_FULL_SCREEN_INTENT" />
@@ -51,8 +53,24 @@
android:supportsRtl="true"
android:allowBackup="false"
android:networkSecurityConfig="@xml/network_security_config"
android:theme="@style/KdeConnectTheme.NoActionBar"
android:theme="@style/KdeConnectTheme"
android:name="org.kde.kdeconnect.MyApplication">
<receiver
android:name="org.kde.kdeconnect.Plugins.SMSPlugin.SmsReceiver"
android:exported="true"
android:permission="android.permission.BROADCAST_SMS">
<intent-filter>
<action android:name="android.provider.Telephony.SMS_DELIVER" />
</intent-filter>
<intent-filter android:priority="999">
<action android:name="android.provider.Telephony.SMS_RECEIVED" />
</intent-filter>
</receiver>
<receiver
android:name="org.kde.kdeconnect.Plugins.SMSPlugin.SmsSentReceiver"
android:exported="true"
android:taskAffinity="${applicationId}.SMS_SENT" />
<receiver
android:name="com.android.mms.transaction.PushReceiver"
@@ -65,6 +83,34 @@
</intent-filter>
</receiver>
<receiver
android:name="org.kde.kdeconnect.Plugins.SMSPlugin.DelegatingMmsReceivedReceiver"
android:enabled="true"
android:exported="true"
android:taskAffinity="com.klinker.android.messaging.MMS_RECEIVED" />
<receiver
android:name="org.kde.kdeconnect.Plugins.SMSPlugin.MmsSentReceiver"
android:exported="true"
android:enabled="true"
android:taskAffinity="com.klinker.android.messaging.MMS_SENT" />
<service
android:name="org.kde.kdeconnect.Plugins.SMSPlugin.HeadlessSmsSendService"
android:exported="true"
android:permission="android.permission.SEND_RESPOND_VIA_MESSAGE">
<intent-filter>
<action android:name="android.intent.action.RESPOND_VIA_MESSAGE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="sms" />
<data android:scheme="smsto" />
<data android:scheme="mms" />
<data android:scheme="mmsto" />
</intent-filter>
</service>
<service
android:name="com.android.mms.transaction.TransactionService"
android:enabled="true"
@@ -72,8 +118,6 @@
<service
android:name="org.kde.kdeconnect.BackgroundService"
android:foregroundServiceType="connectedDevice"
android:icon="@drawable/icon"
android:enabled="true" />
<service
android:name="org.kde.kdeconnect.Plugins.RemoteKeyboardPlugin.RemoteKeyboardService"
@@ -92,10 +136,23 @@
android:name="org.kde.kdeconnect.UserInterface.MainActivity"
android:label="KDE Connect"
android:theme="@style/KdeConnectTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<action android:name="android.intent.action.SENDTO" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="sms" />
<data android:scheme="smsto" />
<data android:scheme="mms" />
<data android:scheme="mmsto" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.app.role.SMS"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND_MULTIPLE" />
@@ -176,7 +233,6 @@
android:name="org.kde.kdeconnect.Plugins.MprisPlugin.MprisActivity"
android:label="@string/open_mpris_controls"
android:launchMode="singleTop"
android:theme="@style/KdeConnectTheme.NoActionBar"
android:parentActivityName="org.kde.kdeconnect.UserInterface.MainActivity">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
@@ -257,20 +313,6 @@
android:name="android.support.PARENT_ACTIVITY"
android:value="org.kde.kdeconnect.UserInterface.MainActivity" />
</activity>
<activity
android:name="org.kde.kdeconnect.Plugins.MousePadPlugin.SendKeystrokesToHostActivity"
android:label="@string/pref_plugin_mousepad_send_keystrokes"
android:parentActivityName="org.kde.kdeconnect.UserInterface.MainActivity">
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value="org.kde.kdeconnect.UserInterface.MainActivity" />
<!-- Accept data with "text/x-keystrokes" to send the text to the connected host and emulate keystrokes -->
<intent-filter>
<action android:name="android.intent.action.SEND"/>
<category android:name="android.intent.category.DEFAULT"/>
<data android:mimeType="text/x-keystrokes"/>
</intent-filter>
</activity>
<activity
android:name="org.kde.kdeconnect.Plugins.PresenterPlugin.PresenterActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
@@ -334,16 +376,6 @@
<action android:name="android.service.chooser.ChooserTargetService" />
</intent-filter>
</service>
<service
android:name="org.kde.kdeconnect.Plugins.MouseReceiverPlugin.MouseReceiverService"
android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
<intent-filter>
<action android:name="android.accessibilityservice.AccessibilityService" />
</intent-filter>
<meta-data
android:name="android.accessibilityservice"
android:resource="@xml/mouse_receiver_service" />
</service>
<activity
android:name="org.kde.kdeconnect.Plugins.NotificationsPlugin.NotificationFilterActivity"

View File

@@ -1,208 +0,0 @@
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION,
AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction, and distribution
as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by the copyright
owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all other entities
that control, are controlled by, or are under common control with that entity.
For the purposes of this definition, "control" means (i) the power, direct
or indirect, to cause the direction or management of such entity, whether
by contract or otherwise, or (ii) ownership of fifty percent (50%) or more
of the outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity exercising permissions
granted by this License.
"Source" form shall mean the preferred form for making modifications, including
but not limited to software source code, documentation source, and configuration
files.
"Object" form shall mean any form resulting from mechanical transformation
or translation of a Source form, including but not limited to compiled object
code, generated documentation, and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or Object form,
made available under the License, as indicated by a copyright notice that
is included in or attached to the work (an example is provided in the Appendix
below).
"Derivative Works" shall mean any work, whether in Source or Object form,
that is based on (or derived from) the Work and for which the editorial revisions,
annotations, elaborations, or other modifications represent, as a whole, an
original work of authorship. For the purposes of this License, Derivative
Works shall not include works that remain separable from, or merely link (or
bind by name) to the interfaces of, the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including the original version
of the Work and any modifications or additions to that Work or Derivative
Works thereof, that is intentionally submitted to Licensor for inclusion in
the Work by the copyright owner or by an individual or Legal Entity authorized
to submit on behalf of the copyright owner. For the purposes of this definition,
"submitted" means any form of electronic, verbal, or written communication
sent to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems, and
issue tracking systems that are managed by, or on behalf of, the Licensor
for the purpose of discussing and improving the Work, but excluding communication
that is conspicuously marked or otherwise designated in writing by the copyright
owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity on behalf
of whom a Contribution has been received by Licensor and subsequently incorporated
within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of this
License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive,
no-charge, royalty-free, irrevocable copyright license to reproduce, prepare
Derivative Works of, publicly display, publicly perform, sublicense, and distribute
the Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of this License,
each Contributor hereby grants to You a perpetual, worldwide, non-exclusive,
no-charge, royalty-free, irrevocable (except as stated in this section) patent
license to make, have made, use, offer to sell, sell, import, and otherwise
transfer the Work, where such license applies only to those patent claims
licensable by such Contributor that are necessarily infringed by their Contribution(s)
alone or by combination of their Contribution(s) with the Work to which such
Contribution(s) was submitted. If You institute patent litigation against
any entity (including a cross-claim or counterclaim in a lawsuit) alleging
that the Work or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses granted to You
under this License for that Work shall terminate as of the date such litigation
is filed.
4. Redistribution. You may reproduce and distribute copies of the Work or
Derivative Works thereof in any medium, with or without modifications, and
in Source or Object form, provided that You meet the following conditions:
(a) You must give any other recipients of the Work or Derivative Works a copy
of this License; and
(b) You must cause any modified files to carry prominent notices stating that
You changed the files; and
(c) You must retain, in the Source form of any Derivative Works that You distribute,
all copyright, patent, trademark, and attribution notices from the Source
form of the Work, excluding those notices that do not pertain to any part
of the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its distribution,
then any Derivative Works that You distribute must include a readable copy
of the attribution notices contained within such NOTICE file, excluding those
notices that do not pertain to any part of the Derivative Works, in at least
one of the following places: within a NOTICE text file distributed as part
of the Derivative Works; within the Source form or documentation, if provided
along with the Derivative Works; or, within a display generated by the Derivative
Works, if and wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and do not modify the
License. You may add Your own attribution notices within Derivative Works
that You distribute, alongside or as an addendum to the NOTICE text from the
Work, provided that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and may provide
additional or different license terms and conditions for use, reproduction,
or distribution of Your modifications, or for any such Derivative Works as
a whole, provided Your use, reproduction, and distribution of the Work otherwise
complies with the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise, any
Contribution intentionally submitted for inclusion in the Work by You to the
Licensor shall be under the terms and conditions of this License, without
any additional terms or conditions. Notwithstanding the above, nothing herein
shall supersede or modify the terms of any separate license agreement you
may have executed with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade names,
trademarks, service marks, or product names of the Licensor, except as required
for reasonable and customary use in describing the origin of the Work and
reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or agreed to
in writing, Licensor provides the Work (and each Contributor provides its
Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied, including, without limitation, any warranties
or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR
A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness
of using or redistributing the Work and assume any risks associated with Your
exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory, whether
in tort (including negligence), contract, or otherwise, unless required by
applicable law (such as deliberate and grossly negligent acts) or agreed to
in writing, shall any Contributor be liable to You for damages, including
any direct, indirect, special, incidental, or consequential damages of any
character arising as a result of this License or out of the use or inability
to use the Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all other commercial
damages or losses), even if such Contributor has been advised of the possibility
of such damages.
9. Accepting Warranty or Additional Liability. While redistributing the Work
or Derivative Works thereof, You may choose to offer, and charge a fee for,
acceptance of support, warranty, indemnity, or other liability obligations
and/or rights consistent with this License. However, in accepting such obligations,
You may act only on Your own behalf and on Your sole responsibility, not on
behalf of any other Contributor, and only if You agree to indemnify, defend,
and hold each Contributor harmless for any liability incurred by, or claims
asserted against, such Contributor by reason of your accepting any such warranty
or additional liability. END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following boilerplate
notice, with the fields enclosed by brackets "[]" replaced with your own identifying
information. (Don't include the brackets!) The text should be enclosed in
the appropriate comment syntax for the file format. We also recommend that
a file or class name and description of purpose be included on the same "printed
page" as the copyright notice for easier identification within third-party
archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

View File

@@ -1,319 +0,0 @@
GNU GENERAL PUBLIC LICENSE
Version 2, June 1991
Copyright (C) 1989, 1991 Free Software Foundation, Inc.
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
Everyone is permitted to copy and distribute verbatim copies of this license
document, but changing it is not allowed.
Preamble
The licenses for most software are designed to take away your freedom to share
and change it. By contrast, the GNU General Public License is intended to
guarantee your freedom to share and change free software--to make sure the
software is free for all its users. This General Public License applies to
most of the Free Software Foundation's software and to any other program whose
authors commit to using it. (Some other Free Software Foundation software
is covered by the GNU Lesser General Public License instead.) You can apply
it to your programs, too.
When we speak of free software, we are referring to freedom, not price. Our
General Public Licenses are designed to make sure that you have the freedom
to distribute copies of free software (and charge for this service if you
wish), that you receive source code or can get it if you want it, that you
can change the software or use pieces of it in new free programs; and that
you know you can do these things.
To protect your rights, we need to make restrictions that forbid anyone to
deny you these rights or to ask you to surrender the rights. These restrictions
translate to certain responsibilities for you if you distribute copies of
the software, or if you modify it.
For example, if you distribute copies of such a program, whether gratis or
for a fee, you must give the recipients all the rights that you have. You
must make sure that they, too, receive or can get the source code. And you
must show them these terms so they know their rights.
We protect your rights with two steps: (1) copyright the software, and (2)
offer you this license which gives you legal permission to copy, distribute
and/or modify the software.
Also, for each author's protection and ours, we want to make certain that
everyone understands that there is no warranty for this free software. If
the software is modified by someone else and passed on, we want its recipients
to know that what they have is not the original, so that any problems introduced
by others will not reflect on the original authors' reputations.
Finally, any free program is threatened constantly by software patents. We
wish to avoid the danger that redistributors of a free program will individually
obtain patent licenses, in effect making the program proprietary. To prevent
this, we have made it clear that any patent must be licensed for everyone's
free use or not licensed at all.
The precise terms and conditions for copying, distribution and modification
follow.
TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
0. This License applies to any program or other work which contains a notice
placed by the copyright holder saying it may be distributed under the terms
of this General Public License. The "Program", below, refers to any such program
or work, and a "work based on the Program" means either the Program or any
derivative work under copyright law: that is to say, a work containing the
Program or a portion of it, either verbatim or with modifications and/or translated
into another language. (Hereinafter, translation is included without limitation
in the term "modification".) Each licensee is addressed as "you".
Activities other than copying, distribution and modification are not covered
by this License; they are outside its scope. The act of running the Program
is not restricted, and the output from the Program is covered only if its
contents constitute a work based on the Program (independent of having been
made by running the Program). Whether that is true depends on what the Program
does.
1. You may copy and distribute verbatim copies of the Program's source code
as you receive it, in any medium, provided that you conspicuously and appropriately
publish on each copy an appropriate copyright notice and disclaimer of warranty;
keep intact all the notices that refer to this License and to the absence
of any warranty; and give any other recipients of the Program a copy of this
License along with the Program.
You may charge a fee for the physical act of transferring a copy, and you
may at your option offer warranty protection in exchange for a fee.
2. You may modify your copy or copies of the Program or any portion of it,
thus forming a work based on the Program, and copy and distribute such modifications
or work under the terms of Section 1 above, provided that you also meet all
of these conditions:
a) You must cause the modified files to carry prominent notices stating that
you changed the files and the date of any change.
b) You must cause any work that you distribute or publish, that in whole or
in part contains or is derived from the Program or any part thereof, to be
licensed as a whole at no charge to all third parties under the terms of this
License.
c) If the modified program normally reads commands interactively when run,
you must cause it, when started running for such interactive use in the most
ordinary way, to print or display an announcement including an appropriate
copyright notice and a notice that there is no warranty (or else, saying that
you provide a warranty) and that users may redistribute the program under
these conditions, and telling the user how to view a copy of this License.
(Exception: if the Program itself is interactive but does not normally print
such an announcement, your work based on the Program is not required to print
an announcement.)
These requirements apply to the modified work as a whole. If identifiable
sections of that work are not derived from the Program, and can be reasonably
considered independent and separate works in themselves, then this License,
and its terms, do not apply to those sections when you distribute them as
separate works. But when you distribute the same sections as part of a whole
which is a work based on the Program, the distribution of the whole must be
on the terms of this License, whose permissions for other licensees extend
to the entire whole, and thus to each and every part regardless of who wrote
it.
Thus, it is not the intent of this section to claim rights or contest your
rights to work written entirely by you; rather, the intent is to exercise
the right to control the distribution of derivative or collective works based
on the Program.
In addition, mere aggregation of another work not based on the Program with
the Program (or with a work based on the Program) on a volume of a storage
or distribution medium does not bring the other work under the scope of this
License.
3. You may copy and distribute the Program (or a work based on it, under Section
2) in object code or executable form under the terms of Sections 1 and 2 above
provided that you also do one of the following:
a) Accompany it with the complete corresponding machine-readable source code,
which must be distributed under the terms of Sections 1 and 2 above on a medium
customarily used for software interchange; or,
b) Accompany it with a written offer, valid for at least three years, to give
any third party, for a charge no more than your cost of physically performing
source distribution, a complete machine-readable copy of the corresponding
source code, to be distributed under the terms of Sections 1 and 2 above on
a medium customarily used for software interchange; or,
c) Accompany it with the information you received as to the offer to distribute
corresponding source code. (This alternative is allowed only for noncommercial
distribution and only if you received the program in object code or executable
form with such an offer, in accord with Subsection b above.)
The source code for a work means the preferred form of the work for making
modifications to it. For an executable work, complete source code means all
the source code for all modules it contains, plus any associated interface
definition files, plus the scripts used to control compilation and installation
of the executable. However, as a special exception, the source code distributed
need not include anything that is normally distributed (in either source or
binary form) with the major components (compiler, kernel, and so on) of the
operating system on which the executable runs, unless that component itself
accompanies the executable.
If distribution of executable or object code is made by offering access to
copy from a designated place, then offering equivalent access to copy the
source code from the same place counts as distribution of the source code,
even though third parties are not compelled to copy the source along with
the object code.
4. You may not copy, modify, sublicense, or distribute the Program except
as expressly provided under this License. Any attempt otherwise to copy, modify,
sublicense or distribute the Program is void, and will automatically terminate
your rights under this License. However, parties who have received copies,
or rights, from you under this License will not have their licenses terminated
so long as such parties remain in full compliance.
5. You are not required to accept this License, since you have not signed
it. However, nothing else grants you permission to modify or distribute the
Program or its derivative works. These actions are prohibited by law if you
do not accept this License. Therefore, by modifying or distributing the Program
(or any work based on the Program), you indicate your acceptance of this License
to do so, and all its terms and conditions for copying, distributing or modifying
the Program or works based on it.
6. Each time you redistribute the Program (or any work based on the Program),
the recipient automatically receives a license from the original licensor
to copy, distribute or modify the Program subject to these terms and conditions.
You may not impose any further restrictions on the recipients' exercise of
the rights granted herein. You are not responsible for enforcing compliance
by third parties to this License.
7. If, as a consequence of a court judgment or allegation of patent infringement
or for any other reason (not limited to patent issues), conditions are imposed
on you (whether by court order, agreement or otherwise) that contradict the
conditions of this License, they do not excuse you from the conditions of
this License. If you cannot distribute so as to satisfy simultaneously your
obligations under this License and any other pertinent obligations, then as
a consequence you may not distribute the Program at all. For example, if a
patent license would not permit royalty-free redistribution of the Program
by all those who receive copies directly or indirectly through you, then the
only way you could satisfy both it and this License would be to refrain entirely
from distribution of the Program.
If any portion of this section is held invalid or unenforceable under any
particular circumstance, the balance of the section is intended to apply and
the section as a whole is intended to apply in other circumstances.
It is not the purpose of this section to induce you to infringe any patents
or other property right claims or to contest validity of any such claims;
this section has the sole purpose of protecting the integrity of the free
software distribution system, which is implemented by public license practices.
Many people have made generous contributions to the wide range of software
distributed through that system in reliance on consistent application of that
system; it is up to the author/donor to decide if he or she is willing to
distribute software through any other system and a licensee cannot impose
that choice.
This section is intended to make thoroughly clear what is believed to be a
consequence of the rest of this License.
8. If the distribution and/or use of the Program is restricted in certain
countries either by patents or by copyrighted interfaces, the original copyright
holder who places the Program under this License may add an explicit geographical
distribution limitation excluding those countries, so that distribution is
permitted only in or among countries not thus excluded. In such case, this
License incorporates the limitation as if written in the body of this License.
9. The Free Software Foundation may publish revised and/or new versions of
the General Public License from time to time. Such new versions will be similar
in spirit to the present version, but may differ in detail to address new
problems or concerns.
Each version is given a distinguishing version number. If the Program specifies
a version number of this License which applies to it and "any later version",
you have the option of following the terms and conditions either of that version
or of any later version published by the Free Software Foundation. If the
Program does not specify a version number of this License, you may choose
any version ever published by the Free Software Foundation.
10. If you wish to incorporate parts of the Program into other free programs
whose distribution conditions are different, write to the author to ask for
permission. For software which is copyrighted by the Free Software Foundation,
write to the Free Software Foundation; we sometimes make exceptions for this.
Our decision will be guided by the two goals of preserving the free status
of all derivatives of our free software and of promoting the sharing and reuse
of software generally.
NO WARRANTY
11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR
THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE
STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM
"AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE
OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME
THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE
OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA
OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES
OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH
HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
END OF TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest possible
use to the public, the best way to achieve this is to make it free software
which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest to attach
them to the start of each source file to most effectively convey the exclusion
of warranty; and each file should have at least the "copyright" line and a
pointer to where the full notice is found.
<one line to give the program's name and an idea of what it does.>
Copyright (C)< yyyy> <name of author>
This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; either version 2 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
this program; if not, write to the Free Software Foundation, Inc., 51 Franklin
Street, Fifth Floor, Boston, MA 02110-1301, USA.
Also add information on how to contact you by electronic and paper mail.
If the program is interactive, make it output a short notice like this when
it starts in an interactive mode:
Gnomovision version 69, Copyright (C) year name of author Gnomovision comes
with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software,
and you are welcome to redistribute it under certain conditions; type `show
c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, the commands you use may be
called something other than `show w' and `show c'; they could even be mouse-clicks
or menu items--whatever suits your program.
You should also get your employer (if you work as a programmer) or your school,
if any, to sign a "copyright disclaimer" for the program, if necessary. Here
is a sample; alter the names:
Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision'
(which makes passes at compilers) written by James Hacker.
<signature of Ty Coon >, 1 April 1989 Ty Coon, President of Vice This General
Public License does not permit incorporating your program into proprietary
programs. If your program is a subroutine library, you may consider it more
useful to permit linking proprietary applications with the library. If this
is what you want to do, use the GNU Lesser General Public License instead
of this License.

View File

@@ -1,625 +0,0 @@
GNU GENERAL PUBLIC LICENSE
Version 3, 29 June 2007
Copyright © 2007 Free Software Foundation, Inc. <https://fsf.org/>
Everyone is permitted to copy and distribute verbatim copies of this license
document, but changing it is not allowed.
Preamble
The GNU General Public License is a free, copyleft license for software and
other kinds of works.
The licenses for most software and other practical works are designed to take
away your freedom to share and change the works. By contrast, the GNU General
Public License is intended to guarantee your freedom to share and change all
versions of a program--to make sure it remains free software for all its users.
We, the Free Software Foundation, use the GNU General Public License for most
of our software; it applies also to any other work released this way by its
authors. You can apply it to your programs, too.
When we speak of free software, we are referring to freedom, not price. Our
General Public Licenses are designed to make sure that you have the freedom
to distribute copies of free software (and charge for them if you wish), that
you receive source code or can get it if you want it, that you can change
the software or use pieces of it in new free programs, and that you know you
can do these things.
To protect your rights, we need to prevent others from denying you these rights
or asking you to surrender the rights. Therefore, you have certain responsibilities
if you distribute copies of the software, or if you modify it: responsibilities
to respect the freedom of others.
For example, if you distribute copies of such a program, whether gratis or
for a fee, you must pass on to the recipients the same freedoms that you received.
You must make sure that they, too, receive or can get the source code. And
you must show them these terms so they know their rights.
Developers that use the GNU GPL protect your rights with two steps: (1) assert
copyright on the software, and (2) offer you this License giving you legal
permission to copy, distribute and/or modify it.
For the developers' and authors' protection, the GPL clearly explains that
there is no warranty for this free software. For both users' and authors'
sake, the GPL requires that modified versions be marked as changed, so that
their problems will not be attributed erroneously to authors of previous versions.
Some devices are designed to deny users access to install or run modified
versions of the software inside them, although the manufacturer can do so.
This is fundamentally incompatible with the aim of protecting users' freedom
to change the software. The systematic pattern of such abuse occurs in the
area of products for individuals to use, which is precisely where it is most
unacceptable. Therefore, we have designed this version of the GPL to prohibit
the practice for those products. If such problems arise substantially in other
domains, we stand ready to extend this provision to those domains in future
versions of the GPL, as needed to protect the freedom of users.
Finally, every program is threatened constantly by software patents. States
should not allow patents to restrict development and use of software on general-purpose
computers, but in those that do, we wish to avoid the special danger that
patents applied to a free program could make it effectively proprietary. To
prevent this, the GPL assures that patents cannot be used to render the program
non-free.
The precise terms and conditions for copying, distribution and modification
follow.
TERMS AND CONDITIONS
0. Definitions.
"This License" refers to version 3 of the GNU General Public License.
"Copyright" also means copyright-like laws that apply to other kinds of works,
such as semiconductor masks.
"The Program" refers to any copyrightable work licensed under this License.
Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals
or organizations.
To "modify" a work means to copy from or adapt all or part of the work in
a fashion requiring copyright permission, other than the making of an exact
copy. The resulting work is called a "modified version" of the earlier work
or a work "based on" the earlier work.
A "covered work" means either the unmodified Program or a work based on the
Program.
To "propagate" a work means to do anything with it that, without permission,
would make you directly or secondarily liable for infringement under applicable
copyright law, except executing it on a computer or modifying a private copy.
Propagation includes copying, distribution (with or without modification),
making available to the public, and in some countries other activities as
well.
To "convey" a work means any kind of propagation that enables other parties
to make or receive copies. Mere interaction with a user through a computer
network, with no transfer of a copy, is not conveying.
An interactive user interface displays "Appropriate Legal Notices" to the
extent that it includes a convenient and prominently visible feature that
(1) displays an appropriate copyright notice, and (2) tells the user that
there is no warranty for the work (except to the extent that warranties are
provided), that licensees may convey the work under this License, and how
to view a copy of this License. If the interface presents a list of user commands
or options, such as a menu, a prominent item in the list meets this criterion.
1. Source Code.
The "source code" for a work means the preferred form of the work for making
modifications to it. "Object code" means any non-source form of a work.
A "Standard Interface" means an interface that either is an official standard
defined by a recognized standards body, or, in the case of interfaces specified
for a particular programming language, one that is widely used among developers
working in that language.
The "System Libraries" of an executable work include anything, other than
the work as a whole, that (a) is included in the normal form of packaging
a Major Component, but which is not part of that Major Component, and (b)
serves only to enable use of the work with that Major Component, or to implement
a Standard Interface for which an implementation is available to the public
in source code form. A "Major Component", in this context, means a major essential
component (kernel, window system, and so on) of the specific operating system
(if any) on which the executable work runs, or a compiler used to produce
the work, or an object code interpreter used to run it.
The "Corresponding Source" for a work in object code form means all the source
code needed to generate, install, and (for an executable work) run the object
code and to modify the work, including scripts to control those activities.
However, it does not include the work's System Libraries, or general-purpose
tools or generally available free programs which are used unmodified in performing
those activities but which are not part of the work. For example, Corresponding
Source includes interface definition files associated with source files for
the work, and the source code for shared libraries and dynamically linked
subprograms that the work is specifically designed to require, such as by
intimate data communication or control flow between those subprograms and
other parts of the work.
The Corresponding Source need not include anything that users can regenerate
automatically from other parts of the Corresponding Source.
The Corresponding Source for a work in source code form is that same work.
2. Basic Permissions.
All rights granted under this License are granted for the term of copyright
on the Program, and are irrevocable provided the stated conditions are met.
This License explicitly affirms your unlimited permission to run the unmodified
Program. The output from running a covered work is covered by this License
only if the output, given its content, constitutes a covered work. This License
acknowledges your rights of fair use or other equivalent, as provided by copyright
law.
You may make, run and propagate covered works that you do not convey, without
conditions so long as your license otherwise remains in force. You may convey
covered works to others for the sole purpose of having them make modifications
exclusively for you, or provide you with facilities for running those works,
provided that you comply with the terms of this License in conveying all material
for which you do not control copyright. Those thus making or running the covered
works for you must do so exclusively on your behalf, under your direction
and control, on terms that prohibit them from making any copies of your copyrighted
material outside their relationship with you.
Conveying under any other circumstances is permitted solely under the conditions
stated below. Sublicensing is not allowed; section 10 makes it unnecessary.
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
No covered work shall be deemed part of an effective technological measure
under any applicable law fulfilling obligations under article 11 of the WIPO
copyright treaty adopted on 20 December 1996, or similar laws prohibiting
or restricting circumvention of such measures.
When you convey a covered work, you waive any legal power to forbid circumvention
of technological measures to the extent such circumvention is effected by
exercising rights under this License with respect to the covered work, and
you disclaim any intention to limit operation or modification of the work
as a means of enforcing, against the work's users, your or third parties'
legal rights to forbid circumvention of technological measures.
4. Conveying Verbatim Copies.
You may convey verbatim copies of the Program's source code as you receive
it, in any medium, provided that you conspicuously and appropriately publish
on each copy an appropriate copyright notice; keep intact all notices stating
that this License and any non-permissive terms added in accord with section
7 apply to the code; keep intact all notices of the absence of any warranty;
and give all recipients a copy of this License along with the Program.
You may charge any price or no price for each copy that you convey, and you
may offer support or warranty protection for a fee.
5. Conveying Modified Source Versions.
You may convey a work based on the Program, or the modifications to produce
it from the Program, in the form of source code under the terms of section
4, provided that you also meet all of these conditions:
a) The work must carry prominent notices stating that you modified it, and
giving a relevant date.
b) The work must carry prominent notices stating that it is released under
this License and any conditions added under section 7. This requirement modifies
the requirement in section 4 to "keep intact all notices".
c) You must license the entire work, as a whole, under this License to anyone
who comes into possession of a copy. This License will therefore apply, along
with any applicable section 7 additional terms, to the whole of the work,
and all its parts, regardless of how they are packaged. This License gives
no permission to license the work in any other way, but it does not invalidate
such permission if you have separately received it.
d) If the work has interactive user interfaces, each must display Appropriate
Legal Notices; however, if the Program has interactive interfaces that do
not display Appropriate Legal Notices, your work need not make them do so.
A compilation of a covered work with other separate and independent works,
which are not by their nature extensions of the covered work, and which are
not combined with it such as to form a larger program, in or on a volume of
a storage or distribution medium, is called an "aggregate" if the compilation
and its resulting copyright are not used to limit the access or legal rights
of the compilation's users beyond what the individual works permit. Inclusion
of a covered work in an aggregate does not cause this License to apply to
the other parts of the aggregate.
6. Conveying Non-Source Forms.
You may convey a covered work in object code form under the terms of sections
4 and 5, provided that you also convey the machine-readable Corresponding
Source under the terms of this License, in one of these ways:
a) Convey the object code in, or embodied in, a physical product (including
a physical distribution medium), accompanied by the Corresponding Source fixed
on a durable physical medium customarily used for software interchange.
b) Convey the object code in, or embodied in, a physical product (including
a physical distribution medium), accompanied by a written offer, valid for
at least three years and valid for as long as you offer spare parts or customer
support for that product model, to give anyone who possesses the object code
either (1) a copy of the Corresponding Source for all the software in the
product that is covered by this License, on a durable physical medium customarily
used for software interchange, for a price no more than your reasonable cost
of physically performing this conveying of source, or (2) access to copy the
Corresponding Source from a network server at no charge.
c) Convey individual copies of the object code with a copy of the written
offer to provide the Corresponding Source. This alternative is allowed only
occasionally and noncommercially, and only if you received the object code
with such an offer, in accord with subsection 6b.
d) Convey the object code by offering access from a designated place (gratis
or for a charge), and offer equivalent access to the Corresponding Source
in the same way through the same place at no further charge. You need not
require recipients to copy the Corresponding Source along with the object
code. If the place to copy the object code is a network server, the Corresponding
Source may be on a different server (operated by you or a third party) that
supports equivalent copying facilities, provided you maintain clear directions
next to the object code saying where to find the Corresponding Source. Regardless
of what server hosts the Corresponding Source, you remain obligated to ensure
that it is available for as long as needed to satisfy these requirements.
e) Convey the object code using peer-to-peer transmission, provided you inform
other peers where the object code and Corresponding Source of the work are
being offered to the general public at no charge under subsection 6d.
A separable portion of the object code, whose source code is excluded from
the Corresponding Source as a System Library, need not be included in conveying
the object code work.
A "User Product" is either (1) a "consumer product", which means any tangible
personal property which is normally used for personal, family, or household
purposes, or (2) anything designed or sold for incorporation into a dwelling.
In determining whether a product is a consumer product, doubtful cases shall
be resolved in favor of coverage. For a particular product received by a particular
user, "normally used" refers to a typical or common use of that class of product,
regardless of the status of the particular user or of the way in which the
particular user actually uses, or expects or is expected to use, the product.
A product is a consumer product regardless of whether the product has substantial
commercial, industrial or non-consumer uses, unless such uses represent the
only significant mode of use of the product.
"Installation Information" for a User Product means any methods, procedures,
authorization keys, or other information required to install and execute modified
versions of a covered work in that User Product from a modified version of
its Corresponding Source. The information must suffice to ensure that the
continued functioning of the modified object code is in no case prevented
or interfered with solely because modification has been made.
If you convey an object code work under this section in, or with, or specifically
for use in, a User Product, and the conveying occurs as part of a transaction
in which the right of possession and use of the User Product is transferred
to the recipient in perpetuity or for a fixed term (regardless of how the
transaction is characterized), the Corresponding Source conveyed under this
section must be accompanied by the Installation Information. But this requirement
does not apply if neither you nor any third party retains the ability to install
modified object code on the User Product (for example, the work has been installed
in ROM).
The requirement to provide Installation Information does not include a requirement
to continue to provide support service, warranty, or updates for a work that
has been modified or installed by the recipient, or for the User Product in
which it has been modified or installed. Access to a network may be denied
when the modification itself materially and adversely affects the operation
of the network or violates the rules and protocols for communication across
the network.
Corresponding Source conveyed, and Installation Information provided, in accord
with this section must be in a format that is publicly documented (and with
an implementation available to the public in source code form), and must require
no special password or key for unpacking, reading or copying.
7. Additional Terms.
"Additional permissions" are terms that supplement the terms of this License
by making exceptions from one or more of its conditions. Additional permissions
that are applicable to the entire Program shall be treated as though they
were included in this License, to the extent that they are valid under applicable
law. If additional permissions apply only to part of the Program, that part
may be used separately under those permissions, but the entire Program remains
governed by this License without regard to the additional permissions.
When you convey a copy of a covered work, you may at your option remove any
additional permissions from that copy, or from any part of it. (Additional
permissions may be written to require their own removal in certain cases when
you modify the work.) You may place additional permissions on material, added
by you to a covered work, for which you have or can give appropriate copyright
permission.
Notwithstanding any other provision of this License, for material you add
to a covered work, you may (if authorized by the copyright holders of that
material) supplement the terms of this License with terms:
a) Disclaiming warranty or limiting liability differently from the terms of
sections 15 and 16 of this License; or
b) Requiring preservation of specified reasonable legal notices or author
attributions in that material or in the Appropriate Legal Notices displayed
by works containing it; or
c) Prohibiting misrepresentation of the origin of that material, or requiring
that modified versions of such material be marked in reasonable ways as different
from the original version; or
d) Limiting the use for publicity purposes of names of licensors or authors
of the material; or
e) Declining to grant rights under trademark law for use of some trade names,
trademarks, or service marks; or
f) Requiring indemnification of licensors and authors of that material by
anyone who conveys the material (or modified versions of it) with contractual
assumptions of liability to the recipient, for any liability that these contractual
assumptions directly impose on those licensors and authors.
All other non-permissive additional terms are considered "further restrictions"
within the meaning of section 10. If the Program as you received it, or any
part of it, contains a notice stating that it is governed by this License
along with a term that is a further restriction, you may remove that term.
If a license document contains a further restriction but permits relicensing
or conveying under this License, you may add to a covered work material governed
by the terms of that license document, provided that the further restriction
does not survive such relicensing or conveying.
If you add terms to a covered work in accord with this section, you must place,
in the relevant source files, a statement of the additional terms that apply
to those files, or a notice indicating where to find the applicable terms.
Additional terms, permissive or non-permissive, may be stated in the form
of a separately written license, or stated as exceptions; the above requirements
apply either way.
8. Termination.
You may not propagate or modify a covered work except as expressly provided
under this License. Any attempt otherwise to propagate or modify it is void,
and will automatically terminate your rights under this License (including
any patent licenses granted under the third paragraph of section 11).
However, if you cease all violation of this License, then your license from
a particular copyright holder is reinstated (a) provisionally, unless and
until the copyright holder explicitly and finally terminates your license,
and (b) permanently, if the copyright holder fails to notify you of the violation
by some reasonable means prior to 60 days after the cessation.
Moreover, your license from a particular copyright holder is reinstated permanently
if the copyright holder notifies you of the violation by some reasonable means,
this is the first time you have received notice of violation of this License
(for any work) from that copyright holder, and you cure the violation prior
to 30 days after your receipt of the notice.
Termination of your rights under this section does not terminate the licenses
of parties who have received copies or rights from you under this License.
If your rights have been terminated and not permanently reinstated, you do
not qualify to receive new licenses for the same material under section 10.
9. Acceptance Not Required for Having Copies.
You are not required to accept this License in order to receive or run a copy
of the Program. Ancillary propagation of a covered work occurring solely as
a consequence of using peer-to-peer transmission to receive a copy likewise
does not require acceptance. However, nothing other than this License grants
you permission to propagate or modify any covered work. These actions infringe
copyright if you do not accept this License. Therefore, by modifying or propagating
a covered work, you indicate your acceptance of this License to do so.
10. Automatic Licensing of Downstream Recipients.
Each time you convey a covered work, the recipient automatically receives
a license from the original licensors, to run, modify and propagate that work,
subject to this License. You are not responsible for enforcing compliance
by third parties with this License.
An "entity transaction" is a transaction transferring control of an organization,
or substantially all assets of one, or subdividing an organization, or merging
organizations. If propagation of a covered work results from an entity transaction,
each party to that transaction who receives a copy of the work also receives
whatever licenses to the work the party's predecessor in interest had or could
give under the previous paragraph, plus a right to possession of the Corresponding
Source of the work from the predecessor in interest, if the predecessor has
it or can get it with reasonable efforts.
You may not impose any further restrictions on the exercise of the rights
granted or affirmed under this License. For example, you may not impose a
license fee, royalty, or other charge for exercise of rights granted under
this License, and you may not initiate litigation (including a cross-claim
or counterclaim in a lawsuit) alleging that any patent claim is infringed
by making, using, selling, offering for sale, or importing the Program or
any portion of it.
11. Patents.
A "contributor" is a copyright holder who authorizes use under this License
of the Program or a work on which the Program is based. The work thus licensed
is called the contributor's "contributor version".
A contributor's "essential patent claims" are all patent claims owned or controlled
by the contributor, whether already acquired or hereafter acquired, that would
be infringed by some manner, permitted by this License, of making, using,
or selling its contributor version, but do not include claims that would be
infringed only as a consequence of further modification of the contributor
version. For purposes of this definition, "control" includes the right to
grant patent sublicenses in a manner consistent with the requirements of this
License.
Each contributor grants you a non-exclusive, worldwide, royalty-free patent
license under the contributor's essential patent claims, to make, use, sell,
offer for sale, import and otherwise run, modify and propagate the contents
of its contributor version.
In the following three paragraphs, a "patent license" is any express agreement
or commitment, however denominated, not to enforce a patent (such as an express
permission to practice a patent or covenant not to sue for patent infringement).
To "grant" such a patent license to a party means to make such an agreement
or commitment not to enforce a patent against the party.
If you convey a covered work, knowingly relying on a patent license, and the
Corresponding Source of the work is not available for anyone to copy, free
of charge and under the terms of this License, through a publicly available
network server or other readily accessible means, then you must either (1)
cause the Corresponding Source to be so available, or (2) arrange to deprive
yourself of the benefit of the patent license for this particular work, or
(3) arrange, in a manner consistent with the requirements of this License,
to extend the patent license to downstream recipients. "Knowingly relying"
means you have actual knowledge that, but for the patent license, your conveying
the covered work in a country, or your recipient's use of the covered work
in a country, would infringe one or more identifiable patents in that country
that you have reason to believe are valid.
If, pursuant to or in connection with a single transaction or arrangement,
you convey, or propagate by procuring conveyance of, a covered work, and grant
a patent license to some of the parties receiving the covered work authorizing
them to use, propagate, modify or convey a specific copy of the covered work,
then the patent license you grant is automatically extended to all recipients
of the covered work and works based on it.
A patent license is "discriminatory" if it does not include within the scope
of its coverage, prohibits the exercise of, or is conditioned on the non-exercise
of one or more of the rights that are specifically granted under this License.
You may not convey a covered work if you are a party to an arrangement with
a third party that is in the business of distributing software, under which
you make payment to the third party based on the extent of your activity of
conveying the work, and under which the third party grants, to any of the
parties who would receive the covered work from you, a discriminatory patent
license (a) in connection with copies of the covered work conveyed by you
(or copies made from those copies), or (b) primarily for and in connection
with specific products or compilations that contain the covered work, unless
you entered into that arrangement, or that patent license was granted, prior
to 28 March 2007.
Nothing in this License shall be construed as excluding or limiting any implied
license or other defenses to infringement that may otherwise be available
to you under applicable patent law.
12. No Surrender of Others' Freedom.
If conditions are imposed on you (whether by court order, agreement or otherwise)
that contradict the conditions of this License, they do not excuse you from
the conditions of this License. If you cannot convey a covered work so as
to satisfy simultaneously your obligations under this License and any other
pertinent obligations, then as a consequence you may not convey it at all.
For example, if you agree to terms that obligate you to collect a royalty
for further conveying from those to whom you convey the Program, the only
way you could satisfy both those terms and this License would be to refrain
entirely from conveying the Program.
13. Use with the GNU Affero General Public License.
Notwithstanding any other provision of this License, you have permission to
link or combine any covered work with a work licensed under version 3 of the
GNU Affero General Public License into a single combined work, and to convey
the resulting work. The terms of this License will continue to apply to the
part which is the covered work, but the special requirements of the GNU Affero
General Public License, section 13, concerning interaction through a network
will apply to the combination as such.
14. Revised Versions of this License.
The Free Software Foundation may publish revised and/or new versions of the
GNU General Public License from time to time. Such new versions will be similar
in spirit to the present version, but may differ in detail to address new
problems or concerns.
Each version is given a distinguishing version number. If the Program specifies
that a certain numbered version of the GNU General Public License "or any
later version" applies to it, you have the option of following the terms and
conditions either of that numbered version or of any later version published
by the Free Software Foundation. If the Program does not specify a version
number of the GNU General Public License, you may choose any version ever
published by the Free Software Foundation.
If the Program specifies that a proxy can decide which future versions of
the GNU General Public License can be used, that proxy's public statement
of acceptance of a version permanently authorizes you to choose that version
for the Program.
Later license versions may give you additional or different permissions. However,
no additional obligations are imposed on any author or copyright holder as
a result of your choosing to follow a later version.
15. Disclaimer of Warranty.
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE
LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER
EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS
TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM
PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR
CORRECTION.
16. Limitation of Liability.
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL
ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM
AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL,
INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO
USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED
INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE
PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER
PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
17. Interpretation of Sections 15 and 16.
If the disclaimer of warranty and limitation of liability provided above cannot
be given local legal effect according to their terms, reviewing courts shall
apply local law that most closely approximates an absolute waiver of all civil
liability in connection with the Program, unless a warranty or assumption
of liability accompanies a copy of the Program in return for a fee. END OF
TERMS AND CONDITIONS
How to Apply These Terms to Your New Programs
If you develop a new program, and you want it to be of the greatest possible
use to the public, the best way to achieve this is to make it free software
which everyone can redistribute and change under these terms.
To do so, attach the following notices to the program. It is safest to attach
them to the start of each source file to most effectively state the exclusion
of warranty; and each file should have at least the "copyright" line and a
pointer to where the full notice is found.
<one line to give the program's name and a brief idea of what it does.>
Copyright (C) <year> <name of author>
This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.
This program is distributed in the hope that it will be useful, but WITHOUT
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with
this program. If not, see <https://www.gnu.org/licenses/>.
Also add information on how to contact you by electronic and paper mail.
If the program does terminal interaction, make it output a short notice like
this when it starts in an interactive mode:
<program> Copyright (C) <year> <name of author>
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
This is free software, and you are welcome to redistribute it under certain
conditions; type `show c' for details.
The hypothetical commands `show w' and `show c' should show the appropriate
parts of the General Public License. Of course, your program's commands might
be different; for a GUI interface, you would use an "about box".
You should also get your employer (if you work as a programmer) or school,
if any, to sign a "copyright disclaimer" for the program, if necessary. For
more information on this, and how to apply and follow the GNU GPL, see <https://www.gnu.org/licenses/>.
The GNU General Public License does not permit incorporating your program
into proprietary programs. If your program is a subroutine library, you may
consider it more useful to permit linking proprietary applications with the
library. If this is what you want to do, use the GNU Lesser General Public
License instead of this License. But first, please read <https://www.gnu.org/
licenses /why-not-lgpl.html>.

View File

@@ -1,12 +0,0 @@
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License as
published by the Free Software Foundation; either version 3 of
the license or (at your option) at any later version that is
accepted by the membership of KDE e.V. (or its successor
approved by the membership of KDE e.V.), which shall act as a
proxy as defined in Section 14 of version 3 of the license.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.

View File

@@ -13,11 +13,11 @@ All this without wires, over the already existing WiFi network, and using TLS en
## About this app
This is a native Android port of the KDE Connect Qt app. You will find a more complete readme about KDE Connect [here](https://invent.kde.org/network/kdeconnect-kde/).
This is a native Android port of the KDE Connect Qt app. You will find a more complete readme about KDE Connect [here](https://github.com/KDE/kdeconnect-kde).
## How to install this app
You can install this app from the [Play Store](https://play.google.com/store/apps/details?id=org.kde.kdeconnect_tp) as well as [F-Droid](https://f-droid.org/repository/browse/?fdid=org.kde.kdeconnect_tp). Note you will also need to install the [desktop app](https://invent.kde.org/network/kdeconnect-kde) for it to work.
You can install this app from the [Play Store](https://play.google.com/store/apps/details?id=org.kde.kdeconnect_tp) as well as [F-Droid](https://f-droid.org/repository/browse/?fdid=org.kde.kdeconnect_tp). Note you will also need to install the [desktop app](https://github.com/KDE/kdeconnect-kde) for it to work.
## Contributing
@@ -34,4 +34,4 @@ Please know that all translations for all KDE apps are handled by the [localizat
## License
[GNU GPL v2](https://www.gnu.org/licenses/gpl-2.0.html) and [GNU GPL v3](https://www.gnu.org/licenses/gpl-3.0.html)
If you are reading this from Github, you should know that this is just a mirror of the [KDE Project repo](https://invent.kde.org/network/kdeconnect-android/).
If you are reading this from Github, you should know that this is just a mirror of the [KDE Project repo](https://projects.kde.org/projects/extragear/network/kdeconnect-android/repository/).

View File

@@ -1,40 +1,31 @@
import com.android.build.gradle.AppExtension
import com.android.build.gradle.api.ApkVariantOutput
import com.android.build.gradle.api.ApplicationVariant
import com.github.jk1.license.render.TextReportRenderer
buildscript {
ext.kotlin_version = '1.5.0'
repositories {
mavenCentral()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.0'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
plugins {
id 'com.github.jk1.dependency-license-report' version '1.16'
}
def licenseResDir = new File("$projectDir/build/dependency-license-res")
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
buildscript {
ext.kotlin_version = '1.3.72'
repositories {
jcenter()
google()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.0.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
android {
compileSdkVersion 29
defaultConfig {
minSdkVersion 14
minSdkVersion 21
targetSdkVersion 29
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
multiDexEnabled true
}
buildFeatures {
viewBinding true
}
dexOptions {
javaMaxHeapSize "2g"
}
@@ -53,7 +44,7 @@ android {
manifest.srcFile 'AndroidManifest.xml'
java.srcDirs = ['src']
resources.srcDirs = ['resources']
res.srcDirs = [licenseResDir, 'res']
res.srcDirs = ['res']
assets.srcDirs = ['assets']
}
test {
@@ -80,14 +71,12 @@ android {
buildTypes {
debug {
minifyEnabled true
shrinkResources true
signingConfig signingConfigs.debug
}
// keep minifyEnabled false above for faster builds; set to 'true'
// when testing to make sure ProGuard/R8 is not deleting important stuff
release {
minifyEnabled true
shrinkResources true
}
}
}
@@ -141,13 +130,13 @@ Provider<String> gitHashProvider = project.provider {
}
ext {
coroutines_version = '1.3.8'
coroutines_version = '1.3.6'
}
dependencies {
repositories {
mavenCentral()
jcenter()
google()
/* Needed for org.apache.sshd debugging
maven {
@@ -156,21 +145,21 @@ dependencies {
*/
}
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.1.5'
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.0.9'
implementation 'androidx.multidex:multidex:2.0.1'
implementation 'androidx.media:media:1.3.1'
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'androidx.core:core-ktx:1.3.2'
implementation 'androidx.media:media:1.1.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.core:core-ktx:1.3.0'
implementation 'androidx.preference:preference:1.1.1'
implementation 'androidx.recyclerview:recyclerview:1.2.0'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
implementation 'androidx.recyclerview:recyclerview:1.1.0'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.0.0'
implementation 'androidx.documentfile:documentfile:1.0.1'
implementation 'androidx.lifecycle:lifecycle-runtime:2.3.1'
implementation 'androidx.lifecycle:lifecycle-runtime:2.2.0'
implementation "androidx.lifecycle:lifecycle-extensions:2.2.0"
implementation 'androidx.lifecycle:lifecycle-common-java8:2.3.1'
implementation 'androidx.lifecycle:lifecycle-common-java8:2.2.0'
implementation 'androidx.gridlayout:gridlayout:1.0.0'
implementation 'com.google.android.material:material:1.3.0'
implementation 'com.google.android.material:material:1.1.0'
implementation 'com.jakewharton:disklrucache:2.0.2' //For caching album art bitmaps
implementation 'com.jaredrummler:android-device-names:1.1.9' //To get a human-friendly device name
@@ -180,6 +169,10 @@ dependencies {
//implementation('com.github.bright:slf4android:0.1.6') { transitive = true } // For org.apache.sshd debugging
implementation 'com.madgag.spongycastle:bcpkix-jdk15on:1.58.0.0' //For SSL certificate generation
//noinspection AnnotationProcessorOnCompilePath - c.f. https://issuetracker.google.com/issues/140881211
implementation 'com.jakewharton:butterknife:10.2.1'
annotationProcessor 'com.jakewharton:butterknife-compiler:10.0.0'
implementation 'org.atteo.classindex:classindex:3.6'
annotationProcessor 'org.atteo.classindex:classindex:3.6'
@@ -187,7 +180,6 @@ dependencies {
implementation 'commons-io:commons-io:2.7'
implementation 'org.apache.commons:commons-collections4:4.4'
implementation 'org.apache.commons:commons-lang3:3.11'
// Kotlin
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
@@ -207,16 +199,3 @@ repositories {
google()
mavenCentral()
}
licenseReport {
configurations = ALL
renderers = [new TextReportRenderer()]
}
generateLicenseReport.doLast {
def target = new File(licenseResDir, "raw/license")
target.parentFile.mkdirs()
target.text =
files("COPYING", "$projectDir/build/reports/dependency-license/THIRD-PARTY-NOTICES.txt")
.collect { it.getText() }.join('\n')
}
preBuild.dependsOn(generateLicenseReport)

View File

@@ -1,6 +1,6 @@
#Sun Oct 18 13:33:18 CEST 2020
#Tue Jun 23 12:30:12 CEST 2020
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip

5
proguard-rules.pro vendored
View File

@@ -18,6 +18,11 @@
-dontobfuscate
# Allow obfuscation of android.support.v7.internal.view.menu.**
# to avoid problem on Samsung 4.2.2 devices with appcompat v21
# see https://code.google.com/p/android/issues/detail?id=78377
-keepnames class !android.support.v7.internal.view.menu.**,android.support.v7.** {*;}
-dontwarn org.spongycastle.**
-dontwarn org.apache.sshd.**
-dontwarn org.apache.mina.**

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB

View File

@@ -1,10 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M11.8,10.9c-2.27,-0.59 -3,-1.2 -3,-2.15 0,-1.09 1.01,-1.85 2.7,-1.85 1.78,0 2.44,0.85 2.5,2.1h2.21c-0.07,-1.72 -1.12,-3.3 -3.21,-3.81V3h-3v2.16c-1.94,0.42 -3.5,1.68 -3.5,3.61 0,2.31 1.91,3.46 4.7,4.13 2.5,0.6 3,1.48 3,2.41 0,0.69 -0.49,1.79 -2.7,1.79 -2.06,0 -2.87,-0.92 -2.98,-2.1h-2.2c0.12,2.19 1.76,3.42 3.68,3.83V21h3v-2.15c1.95,-0.37 3.5,-1.5 3.5,-3.55 0,-2.84 -2.43,-3.81 -4.7,-4.4z"/>
</vector>

View File

@@ -1,10 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M20,8h-2.81c-0.45,-0.78 -1.07,-1.45 -1.82,-1.96L17,4.41 15.59,3l-2.17,2.17C12.96,5.06 12.49,5 12,5c-0.49,0 -0.96,0.06 -1.41,0.17L8.41,3 7,4.41l1.62,1.63C7.88,6.55 7.26,7.22 6.81,8L4,8v2h2.09c-0.05,0.33 -0.09,0.66 -0.09,1v1L4,12v2h2v1c0,0.34 0.04,0.67 0.09,1L4,16v2h2.81c1.04,1.79 2.97,3 5.19,3s4.15,-1.21 5.19,-3L20,18v-2h-2.09c0.05,-0.33 0.09,-0.66 0.09,-1v-1h2v-2h-2v-1c0,-0.34 -0.04,-0.67 -0.09,-1L20,10L20,8zM14,16h-4v-2h4v2zM14,12h-4v-2h4v2z"/>
</vector>

View File

@@ -1,10 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M9.4,16.6L4.8,12l4.6,-4.6L8,6l-6,6 6,6 1.4,-1.4zM14.6,16.6l4.6,-4.6 -4.6,-4.6L16,6l6,6 -6,6 -1.4,-1.4z"/>
</vector>

View File

@@ -1,19 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M5.2496,8.0688l2.83,-2.8268l14.134,14.15l-2.83,2.8268z"/>
<path
android:fillColor="@android:color/white"
android:pathData="M9.4857,3.8272l2.828,-2.8288l5.6576,5.656l-2.828,2.8288z"/>
<path
android:fillColor="@android:color/white"
android:pathData="M0.9989,12.3147l2.8284,-2.8284l5.6568,5.6568l-2.8284,2.8284z"/>
<path
android:fillColor="@android:color/white"
android:pathData="M1,21h12v2h-12z"/>
</vector>

View File

@@ -1,5 +0,0 @@
<vector android:height="24dp" android:tint="#F67400"
android:viewportHeight="24.0" android:viewportWidth="24.0"
android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#FF000000" android:pathData="M20,2L4,2c-1.1,0 -1.99,0.9 -1.99,2L2,22l4,-4h14c1.1,0 2,-0.9 2,-2L22,4c0,-1.1 -0.9,-2 -2,-2zM9,11L7,11L7,9h2v2zM13,11h-2L11,9h2v2zM17,11h-2L15,9h2v2z"/>
</vector>

View File

@@ -1,10 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="24dp"
android:height="24dp"
android:viewportWidth="24"
android:viewportHeight="24"
android:tint="?attr/colorControlNormal">
<path
android:fillColor="@android:color/white"
android:pathData="M12.65,10C11.83,7.67 9.61,6 7,6c-3.31,0 -6,2.69 -6,6s2.69,6 6,6c2.61,0 4.83,-1.67 5.65,-4H17v4h4v-4h2v-4H12.65zM7,14c-1.1,0 -2,-0.9 -2,-2s0.9,-2 2,-2 2,0.9 2,2 -0.9,2 -2,2z"/>
</vector>

View File

@@ -1,15 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid
android:color="#000000"/>
<size
android:width="12dp"
android:height="12dp"/>
<stroke
android:width="1dp"
android:color="#ffffff"/>
</shape>

View File

@@ -1,31 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid
android:color="#000000"/>
<size
android:width="12dp"
android:height="12dp"/>
<stroke
android:width="1dp"
android:color="#ffffff"/>
</shape>
</item>
<item
android:top="4dp"
android:right="4dp"
android:bottom="4dp"
android:left="4dp">
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid
android:color="#ffffff"/>
</shape>
</item>
</layer-list>

View File

@@ -1,5 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<corners android:radius="8dp"/>
<stroke android:width="3dp" android:color="?colorAccent" />
</shape>

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<shape
xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<size android:width="1000dp" android:height="2dp" />
<solid android:color="#cecbce"/>
</shape>

View File

@@ -1,39 +1,27 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
tools:context="org.kde.kdeconnect.Plugins.MprisPlugin.MprisActivity">
android:orientation="horizontal"
android:paddingBottom="25dp"
android:paddingLeft="25dp"
android:paddingRight="25dp"
android:paddingTop="25dp">
<include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
<LinearLayout
android:layout_width="match_parent"
<ImageView
android:id="@+id/album_art"
android:layout_width="0dp"
android:layout_height="match_parent"
android:orientation="horizontal"
android:paddingBottom="25dp"
android:paddingLeft="25dp"
android:paddingRight="25dp"
android:paddingTop="25dp"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
android:layout_marginRight="25dp"
android:layout_marginEnd="25dp"
android:layout_weight="1"
android:contentDescription="@string/mpris_coverart_description"
android:scaleType="fitCenter" />
<ImageView
android:id="@+id/album_art"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_marginRight="25dp"
android:layout_marginEnd="25dp"
android:layout_weight="1"
android:contentDescription="@string/mpris_coverart_description"
android:scaleType="fitCenter" />
<include
layout="@layout/mpris_control"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" />
<include
layout="@layout/mpris_control"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" />
</LinearLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</LinearLayout>

View File

@@ -1,17 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/selectableItemBackground"
android:clickable="false"
android:drawableStart="@drawable/ic_warning"
android:drawablePadding="8dp"
android:drawableTint="?attr/colorControlNormal"
android:paddingTop="16dp"
android:paddingBottom="12dp"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:text="@string/on_non_trusted_message"
app:drawableTint="?attr/colorControlNormal"
app:drawableStartCompat="@drawable/ic_warning">
android:text="@string/on_non_trusted_message">
</TextView>

View File

@@ -1,18 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/selectableItemBackground"
android:clickable="true"
android:focusable="true"
android:drawableStart="@drawable/ic_wifi"
android:drawablePadding="8dp"
android:drawableTint="?attr/colorControlNormal"
android:paddingTop="16dp"
android:paddingBottom="12dp"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:text="@string/no_wifi"
app:drawableStartCompat="@drawable/ic_wifi"
app:drawableTint="?attr/colorControlNormal">
android:text="@string/no_wifi">
</TextView>

View File

@@ -1,89 +1,78 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
<androidx.gridlayout.widget.GridLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:grid="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
tools:context="org.kde.kdeconnect.Plugins.BigscreenPlugin.BigscreenActivity">
grid:useDefaultMargins="true">
<include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
<ImageButton
android:id="@+id/home_button"
grid:layout_column="0"
grid:layout_row="0"
grid:layout_columnWeight="1"
grid:layout_rowWeight="1"
android:contentDescription="@string/bigscreen_home"
app:srcCompat="@drawable/ic_home_black_24dp"
android:theme="@style/DisableableButton" />
<androidx.gridlayout.widget.GridLayout
xmlns:grid="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
grid:useDefaultMargins="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<ImageButton
android:id="@+id/up_button"
grid:layout_column="1"
grid:layout_row="0"
grid:layout_columnWeight="1"
grid:layout_rowWeight="1"
android:contentDescription="@string/bigscreen_up"
app:srcCompat="@drawable/ic_arrow_upward_black_24dp"
android:theme="@style/DisableableButton" />
<ImageButton
android:id="@+id/home_button"
grid:layout_column="0"
grid:layout_row="0"
grid:layout_columnWeight="1"
grid:layout_rowWeight="1"
android:contentDescription="@string/bigscreen_home"
android:src="@drawable/ic_home_black_24dp"
android:theme="@style/DisableableButton" />
<ImageButton
android:id="@+id/mic_button"
grid:layout_column="2"
grid:layout_columnWeight="1"
grid:layout_row="0"
grid:layout_rowWeight="1"
android:contentDescription="@string/bigscreen_mic"
app:srcCompat="@drawable/ic_mic_black"
android:theme="@style/DisableableButton" />
<ImageButton
android:id="@+id/up_button"
grid:layout_column="1"
grid:layout_row="0"
grid:layout_columnWeight="1"
grid:layout_rowWeight="1"
android:contentDescription="@string/bigscreen_up"
android:src="@drawable/ic_arrow_upward_black_24dp"
android:theme="@style/DisableableButton" />
<ImageButton
android:id="@+id/left_button"
grid:layout_column="0"
grid:layout_row="1"
grid:layout_columnWeight="1"
grid:layout_rowWeight="1"
android:contentDescription="@string/bigscreen_left"
app:srcCompat="@drawable/ic_arrow_back_black_24dp"
android:theme="@style/DisableableButton" />
<ImageButton
android:id="@+id/mic_button"
grid:layout_column="2"
grid:layout_columnWeight="1"
grid:layout_row="0"
grid:layout_rowWeight="1"
android:contentDescription="@string/bigscreen_mic"
android:src="@drawable/ic_mic_black"
android:theme="@style/DisableableButton" />
<ImageButton
android:id="@+id/select_button"
grid:layout_column="1"
grid:layout_row="1"
grid:layout_columnWeight="1"
grid:layout_rowWeight="1"
android:contentDescription="@string/bigscreen_select"
app:srcCompat="@drawable/ic_keyboard_return_black_24dp"
android:theme="@style/DisableableButton" />
<ImageButton
android:id="@+id/left_button"
grid:layout_column="0"
grid:layout_row="1"
grid:layout_columnWeight="1"
grid:layout_rowWeight="1"
android:contentDescription="@string/bigscreen_left"
android:src="@drawable/ic_arrow_back_black_24dp"
android:theme="@style/DisableableButton" />
<ImageButton
android:id="@+id/right_button"
grid:layout_column="2"
grid:layout_row="1"
grid:layout_columnWeight="1"
grid:layout_rowWeight="1"
android:contentDescription="@string/bigscreen_right"
app:srcCompat="@drawable/ic_arrow_forward_black_24dp"
android:theme="@style/DisableableButton" />
<ImageButton
android:id="@+id/select_button"
grid:layout_column="1"
grid:layout_row="1"
grid:layout_columnWeight="1"
grid:layout_rowWeight="1"
android:contentDescription="@string/bigscreen_select"
android:src="@drawable/ic_keyboard_return_black_24dp"
android:theme="@style/DisableableButton" />
<ImageButton
android:id="@+id/right_button"
grid:layout_column="2"
grid:layout_row="1"
grid:layout_columnWeight="1"
grid:layout_rowWeight="1"
android:contentDescription="@string/bigscreen_right"
android:src="@drawable/ic_arrow_forward_black_24dp"
android:theme="@style/DisableableButton" />
<ImageButton
android:id="@+id/down_button"
grid:layout_column="1"
grid:layout_row="2"
grid:layout_columnWeight="1"
grid:layout_rowWeight="1"
android:contentDescription="@string/bigscreen_down"
android:src="@drawable/ic_arrow_downward_black_24dp"
android:theme="@style/DisableableButton" />
</androidx.gridlayout.widget.GridLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
<ImageButton
android:id="@+id/down_button"
grid:layout_column="1"
grid:layout_row="2"
grid:layout_columnWeight="1"
grid:layout_rowWeight="1"
android:contentDescription="@string/bigscreen_down"
app:srcCompat="@drawable/ic_arrow_downward_black_24dp"
android:theme="@style/DisableableButton" />
</androidx.gridlayout.widget.GridLayout>

View File

@@ -1,46 +1,36 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
tools:context="org.kde.kdeconnect.UserInterface.CustomDevicesActivity">
xmlns:tools="http://schemas.android.com/tools">
<include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
<androidx.coordinatorlayout.widget.CoordinatorLayout
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
tools:listitem="@layout/custom_device_item"/>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:listitem="@layout/custom_device_item"/>
<TextView
android:id="@+id/emptyListMessage"
style="@style/TextAppearance.AppCompat.Medium"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginLeft="@dimen/activity_horizontal_margin"
android:layout_marginRight="@dimen/activity_horizontal_margin"
android:gravity="center_horizontal"
android:text="@string/custom_device_list_help"
/>
<TextView
android:id="@+id/emptyListMessage"
style="@style/TextAppearance.AppCompat.Medium"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_marginLeft="@dimen/activity_horizontal_margin"
android:layout_marginRight="@dimen/activity_horizontal_margin"
android:gravity="center_horizontal"
android:text="@string/custom_device_list_help"
/>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/floatingActionButton"
style="@style/KdeConnectThemeBase"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
app:elevation="@dimen/fab_elevation"
android:src="@drawable/ic_add"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/floatingActionButton"
style="@style/KdeConnectThemeBase"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="@dimen/fab_margin"
app:elevation="@dimen/fab_elevation"
app:srcCompat="@drawable/ic_add"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>

View File

@@ -30,18 +30,6 @@
android:text="@string/device_not_paired"
android:textAppearance="?android:attr/textAppearanceMedium"/>
<TextView
android:id="@+id/pair_verification"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawablePadding="5dp"
android:drawableLeft="@drawable/ic_key"
android:drawableStart="@drawable/ic_key"
android:layout_marginBottom="8dip"
android:visibility="gone"
android:text=""
android:textAppearance="?android:attr/textAppearanceMedium"/>
<Button
android:id="@+id/pair_button"
android:layout_width="match_parent"
@@ -99,7 +87,7 @@
android:paddingLeft="0dip"
android:paddingRight="8dip"
android:paddingStart="0dip"
android:src="@drawable/ic_error_outline_48dp"
app:srcCompat="@drawable/ic_error_outline_48dp"
app:tint="?attr/colorHighContrast"
tools:ignore="UnusedAttribute"/>
@@ -119,8 +107,7 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:divider="@drawable/list_divider"
tools:context=".DeviceActivity"
tools:listitem="@layout/list_item_with_icon_entry"
android:divider="@null"
android:dividerHeight="0dp" />
tools:listitem="@layout/list_item_with_icon_entry"/>
</LinearLayout>

View File

@@ -1,33 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context="org.kde.kdeconnect.Plugins.FindMyPhonePlugin.FindMyPhoneActivity">
<include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<Button
android:id="@+id/bFindMyPhone"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:text="@string/findmyphone_found"
android:textSize="50sp" />
<Button
android:id="@+id/bFindMyPhone"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true"
android:text="@string/findmyphone_found"
android:textSize="50sp" />
</RelativeLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</RelativeLayout>

View File

@@ -12,7 +12,17 @@
android:layout_width="match_parent"
tools:context="org.kde.kdeconnect.UserInterface.MainActivity">
<include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
<com.google.android.material.appbar.AppBarLayout
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:elevation="8dp"/>
</com.google.android.material.appbar.AppBarLayout>
<FrameLayout
android:id="@+id/container"
@@ -27,6 +37,7 @@
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
app:headerLayout="@layout/nav_header" />
app:headerLayout="@layout/nav_header"
style="?attr/mainNavigationViewStyle" />
</androidx.drawerlayout.widget.DrawerLayout>

View File

@@ -1,38 +1,25 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mousepad_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
tools:context="org.kde.kdeconnect.Plugins.MousePadPlugin.MousePadActivity">
android:keepScreenOn="true"
android:orientation="vertical">
<include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
<RelativeLayout
android:id="@+id/mousepad_view"
<TextView
style="@android:style/TextAppearance.Medium"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:keepScreenOn="true"
android:orientation="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:padding="12dip"
android:text="@string/mousepad_info" />
<TextView
style="@android:style/TextAppearance.Medium"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:gravity="center"
android:padding="12dip"
android:text="@string/mousepad_info" />
<view
android:id="@+id/keyListener"
class="org.kde.kdeconnect.Plugins.MousePadPlugin.KeyListenerView"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<view
android:id="@+id/keyListener"
class="org.kde.kdeconnect.Plugins.MousePadPlugin.KeyListenerView"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</RelativeLayout>

View File

@@ -1,37 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context="org.kde.kdeconnect.Plugins.MprisPlugin.MprisActivity">
android:orientation="vertical"
android:paddingBottom="15dp"
android:paddingLeft="25dp"
android:paddingRight="25dp"
android:paddingTop="25dp">
<com.google.android.material.appbar.AppBarLayout
<ImageView
android:id="@+id/album_art"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginBottom="25dp"
android:layout_weight="4"
android:contentDescription="@string/mpris_coverart_description"
android:scaleType="fitCenter" />
<include
layout="@layout/mpris_control"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<fragment android:name="org.kde.kdeconnect.Plugins.SystemvolumePlugin.SystemvolumeFragment"
android:id="@+id/systemvolume_fragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:elevation="8dp"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar">
android:layout_marginTop="5dp"/>
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize" />
<com.google.android.material.tabs.TabLayout
android:id="@+id/mpris_tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/toolbar_color"
app:tabIndicatorColor="?android:textColorPrimary"
app:tabSelectedTextColor="?android:textColorPrimary" />
</com.google.android.material.appbar.AppBarLayout>
<androidx.viewpager2.widget.ViewPager2
android:id="@+id/mpris_pager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</LinearLayout>

View File

@@ -1,45 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
tools:context="org.kde.kdeconnect.Plugins.NotificationsPlugin.NotificationFilterActivity">
<include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
<TextView
android:id="@+id/tFilter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="16dp"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:text="@string/filter_apps_info" />
<LinearLayout
<ProgressBar
android:id="@+id/spinner"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="org.kde.kdeconnect.Plugins.NotificationsPlugin.NotificationFilterActivity"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="64dip" />
<TextView
android:id="@+id/tFilter"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingBottom="16dp"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:text="@string/filter_apps_info" />
<ListView
android:id="@+id/lvFilterApps"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:visibility="gone" />
<ProgressBar
android:id="@+id/spinner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="64dip" />
<ListView
android:id="@+id/lvFilterApps"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:visibility="gone"
android:divider="@android:color/transparent"
android:dividerHeight="4dp" />
</LinearLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</LinearLayout>

View File

@@ -1,19 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/fragmentPlaceHolder"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
tools:context="org.kde.kdeconnect.UserInterface.PluginSettingsActivity">
<include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragmentPlaceHolder"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"/>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
android:layout_height="match_parent"/>

View File

@@ -1,75 +1,64 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/mpris_control_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
tools:context="org.kde.kdeconnect.Plugins.PresenterPlugin.PresenterActivity">
android:padding="12dp"
android:orientation="vertical">
<TextView
style="@android:style/TextAppearance.Medium"
android:id="@+id/textView"
android:layout_weight="0"
android:layout_marginBottom="6dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/presenter_lock_tip" />
<include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
<LinearLayout
android:id="@+id/mpris_control_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="12dp"
android:orientation="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="6dp"
android:orientation="horizontal"
android:layout_weight="1">
<TextView
style="@android:style/TextAppearance.Medium"
android:id="@+id/textView"
android:layout_weight="0"
android:layout_marginBottom="6dp"
<ImageButton
android:id="@+id/previous_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/presenter_lock_tip" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginBottom="6dp"
android:orientation="horizontal"
android:layout_weight="1">
<ImageButton
android:id="@+id/previous_button"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:contentDescription="@string/mpris_rew"
android:layout_weight="0.25"
android:layout_marginRight="3dp"
android:layout_marginEnd="3dp"
android:src="@drawable/ic_previous_black"
android:theme="@style/DisableableButton" />
<ImageButton
android:id="@+id/next_button"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_marginLeft="3dp"
android:layout_marginStart="3dp"
android:layout_weight="0.25"
android:contentDescription="@string/mpris_ff"
android:src="@drawable/ic_next_black"
android:theme="@style/DisableableButton" />
</LinearLayout>
<Button
android:id="@+id/pointer_button"
android:layout_width="match_parent"
android:layout_marginBottom="6dp"
android:layout_height="wrap_content"
android:layout_weight="0.30"
android:visibility="gone"
android:text="@string/presenter_pointer"
android:layout_height="fill_parent"
android:contentDescription="@string/mpris_rew"
android:layout_weight="0.25"
android:layout_marginRight="3dp"
android:layout_marginEnd="3dp"
app:srcCompat="@drawable/ic_previous_black"
android:theme="@style/DisableableButton" />
<ImageButton
android:id="@+id/next_button"
android:layout_width="match_parent"
android:layout_height="fill_parent"
android:layout_marginLeft="3dp"
android:layout_marginStart="3dp"
android:layout_weight="0.25"
android:contentDescription="@string/mpris_ff"
app:srcCompat="@drawable/ic_next_black"
android:theme="@style/DisableableButton" />
</LinearLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
<Button
android:id="@+id/pointer_button"
android:layout_width="match_parent"
android:layout_marginBottom="6dp"
android:layout_height="wrap_content"
android:layout_weight="0.30"
android:visibility="gone"
android:text="@string/presenter_pointer"
android:theme="@style/DisableableButton" />
</LinearLayout>

View File

@@ -1,49 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
tools:context="org.kde.kdeconnect.Plugins.RunCommandPlugin.RunCommandActivity">
<include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<ListView
android:id="@+id/run_commands_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="4dp"
android:addStatesFromChildren="true"
android:orientation="vertical"
android:divider="@null"
android:dividerHeight="0dp" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/add_command_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="16dp"
android:src="@drawable/ic_action_image_edit_24dp"
app:backgroundTint="@color/primary"
app:layout_anchor="@id/run_commands_list"
app:layout_anchorGravity="bottom|end" />
<TextView
android:id="@+id/add_comand_explanation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:padding="30dp"
android:text="@string/addcommand_explanation"
android:textAlignment="center"
android:textSize="16sp" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>

View File

@@ -0,0 +1,36 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ListView
android:id="@+id/runcommandslist"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="4dp"
android:addStatesFromChildren="true"
android:orientation="vertical" />
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/add_command_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
android:layout_margin="16dp"
app:srcCompat="@drawable/ic_action_image_edit_24dp"
app:backgroundTint="@color/primary"
app:layout_anchor="@id/runcommandslist"
app:layout_anchorGravity="bottom|end" />
<TextView
android:id="@+id/addcomand_explanation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:padding="30dp"
android:text="@string/addcommand_explanation"
android:textAlignment="center"
android:textSize="16sp" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>

View File

@@ -1,55 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
tools:context="org.kde.kdeconnect.Plugins.MousePadPlugin.SendKeystrokesToHostActivity">
<include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
<LinearLayout
android:id="@+id/sendkeystrokes_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:keepScreenOn="true"
android:orientation="vertical"
android:descendantFocusability="beforeDescendants"
android:focusableInTouchMode="true"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<com.google.android.material.textfield.TextInputLayout
style="@style/Widget.MaterialComponents.TextInputLayout.FilledBox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="4dp"
android:layout_margin="4dp"
app:errorEnabled="true">
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/textToSend"
style="@style/Widget.MaterialComponents.TextInputEditText.FilledBox"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:cursorVisible="true"
android:hint="@string/sendkeystrokes_textbox_hint"
android:inputType="text"
android:lines="1"
android:maxLines="1"
android:scrollHorizontally="true"
android:text="" />
</com.google.android.material.textfield.TextInputLayout>
<ListView
android:id="@+id/devices_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:addStatesFromChildren="true"
android:divider="@null"
android:dividerHeight="0dp"
android:orientation="vertical"
android:paddingTop="8dp"
tools:context=".MainActivity" />
</LinearLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>

View File

@@ -1,21 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools"
tools:context="org.kde.kdeconnect.Plugins.SharePlugin.ShareActivity">
<include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
<androidx.coordinatorlayout.widget.CoordinatorLayout
app:layout_behavior="@string/appbar_scrolling_view_behavior"
android:layout_height="match_parent"
android:layout_width="match_parent">
<include
layout="@layout/devices_list"
android:id="@+id/devices_list_layout" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>

View File

@@ -13,6 +13,8 @@
android:divider="@null"
android:dividerHeight="0dp"
android:orientation="vertical"
android:paddingLeft="16dip"
android:paddingRight="16dip"
tools:context=".MainActivity" />
</androidx.swiperefreshlayout.widget.SwipeRefreshLayout>

View File

@@ -2,7 +2,6 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical">
<TextView
@@ -10,11 +9,14 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:drawableBottom="@drawable/text_section_header"
android:drawablePadding="4dp"
android:paddingLeft="16dip"
android:paddingRight="16dip"
android:textSize="16sp"
tools:text="Header" />
android:paddingLeft="8dip"
android:paddingRight="8dip"
android:textAllCaps="true"
android:textColor="?android:textColorSecondary"
android:textSize="14sp"
android:textStyle="bold" />
<TextView
android:id="@+id/list_item_category_empty_placeholder"

View File

@@ -3,7 +3,7 @@
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:background="?android:attr/selectableItemBackground"
android:background="@drawable/abc_list_selector_holo_dark"
android:baselineAligned="false"
android:gravity="center_vertical"
android:minHeight="?android:attr/listPreferredItemHeight"
@@ -13,6 +13,8 @@
android:paddingRight="?android:attr/scrollbarSize"
android:paddingStart="12dip"
android:id="@+id/list_item_entry">
<!-- We should use android:background="@android:/listChoiceBackgroundIndicator"
instead of abc_list_selector_holo_dark but that's only supported from API11 -->
<TextView
android:id="@+id/list_item_entry_title"

View File

@@ -1,58 +1,44 @@
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.card.MaterialCardView xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/sink_card"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:cardCornerRadius="8dp"
app:cardElevation="0dp"
app:contentPadding="8dp"
app:strokeColor="@color/card_stroke_color"
app:strokeWidth="1dp">
android:layout_height="match_parent"
android:orientation="vertical">
<LinearLayout
<TextView
android:id="@+id/systemvolume_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:orientation="vertical">
android:layout_marginTop="5dp"
android:textAppearance="@style/TextAppearance.AppCompat.Medium" />
<RadioButton
android:id="@+id/systemvolume_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="start"
android:ellipsize="end"
android:maxLines="1"
android:paddingLeft="14dp"
android:textAppearance="@style/TextAppearance.AppCompat.Medium"
tools:text="Device name" />
<LinearLayout
android:id="@+id/systemvolume_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="8dip"
android:orientation="horizontal">
<LinearLayout
android:id="@+id/systemvolume_layout"
android:layout_width="match_parent"
<ImageButton
android:id="@+id/systemvolume_mute"
android:layout_width="30dp"
android:layout_height="30dp"
android:background="@android:color/transparent"
android:contentDescription="@string/mute"
android:scaleType="fitXY"
app:srcCompat="@drawable/ic_volume_black"
app:tint="?attr/colorHighContrast" />
<SeekBar
android:id="@+id/systemvolume_seek"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_marginTop="8dip"
android:orientation="horizontal">
android:layout_weight="1"
android:max="100" />
<ImageButton
android:id="@+id/systemvolume_mute"
android:layout_width="30dp"
android:layout_height="30dp"
android:background="@android:color/transparent"
android:contentDescription="@string/mute"
android:scaleType="fitXY"
android:src="@drawable/ic_volume_black"
app:tint="?attr/colorHighContrast" />
<SeekBar
android:id="@+id/systemvolume_seek"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:max="100" />
</LinearLayout>
</LinearLayout>
</com.google.android.material.card.MaterialCardView>
</LinearLayout>

View File

@@ -5,7 +5,7 @@
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?android:attr/selectableItemBackground"
android:background="@drawable/abc_list_selector_holo_dark"
android:baselineAligned="false"
android:gravity="center_vertical"
android:minHeight="?android:attr/listPreferredItemHeight"
@@ -21,7 +21,7 @@
android:layout_marginLeft="12dp"
android:layout_marginStart="12dp"
android:contentDescription="@string/device_icon_description"
android:src="@drawable/ic_device_laptop_32dp"
app:srcCompat="@drawable/ic_device_laptop_32dp"
app:tint="?attr/colorControlNormal"/>
<LinearLayout

View File

@@ -1,11 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/mouse_cursor"
android:src="@drawable/mouse_pointer" />
</RelativeLayout>

View File

@@ -46,7 +46,7 @@
android:baselineAlignBottom="true"
android:clickable="false"
android:contentDescription="@string/mpris_play"
android:src="@drawable/ic_play_black"
app:srcCompat="@drawable/ic_play_black"
android:theme="@style/DisableableButton" />
<LinearLayout
@@ -61,7 +61,7 @@
android:layout_height="fill_parent"
android:layout_weight="0.25"
android:contentDescription="@string/mpris_previous"
android:src="@drawable/ic_previous_black"
app:srcCompat="@drawable/ic_previous_black"
android:theme="@style/DisableableButton" />
<ImageButton
@@ -70,7 +70,7 @@
android:layout_height="fill_parent"
android:layout_weight="0.25"
android:contentDescription="@string/mpris_rew"
android:src="@drawable/ic_rewind_black"
app:srcCompat="@drawable/ic_rewind_black"
android:theme="@style/DisableableButton" />
<ImageButton
@@ -79,7 +79,7 @@
android:layout_height="fill_parent"
android:layout_weight="0.25"
android:contentDescription="@string/mpris_stop"
android:src="@drawable/ic_stop"
app:srcCompat="@drawable/ic_stop"
android:theme="@style/DisableableButton" />
@@ -89,7 +89,7 @@
android:layout_height="fill_parent"
android:layout_weight="0.25"
android:contentDescription="@string/mpris_ff"
android:src="@drawable/ic_fast_forward_black"
app:srcCompat="@drawable/ic_fast_forward_black"
android:theme="@style/DisableableButton" />
<ImageButton
@@ -98,7 +98,7 @@
android:layout_height="fill_parent"
android:layout_weight="0.25"
android:contentDescription="@string/mpris_next"
android:src="@drawable/ic_next_black"
app:srcCompat="@drawable/ic_next_black"
android:theme="@style/DisableableButton" />
</LinearLayout>
@@ -155,7 +155,7 @@
android:layout_weight="0"
android:contentDescription="@string/mpris_volume"
android:maxWidth="30dip"
android:src="@drawable/ic_volume_black"
app:srcCompat="@drawable/ic_volume_black"
app:tint="?attr/colorHighContrast" />

View File

@@ -1,24 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingHorizontal="@dimen/activity_horizontal_margin"
android:paddingVertical="@dimen/activity_vertical_margin">
<ImageView
android:id="@+id/album_art"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_marginBottom="25dp"
android:layout_weight="4"
android:contentDescription="@string/mpris_coverart_description"
android:scaleType="fitCenter" />
<include
android:id="@+id/mpris_control"
layout="@layout/mpris_control"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>

View File

@@ -1,50 +1,36 @@
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
android:layout_height="160dp"
android:background="@drawable/drawer_header"
android:gravity="bottom"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:paddingStart="@dimen/nav_header_horizontal_margin"
android:paddingLeft="@dimen/nav_header_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingEnd="@dimen/nav_header_horizontal_margin"
android:paddingRight="@dimen/nav_header_horizontal_margin"
android:paddingBottom="@dimen/activity_vertical_margin">
<TextView
android:id="@+id/kdeconnect_label"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingEnd="48dp"
android:paddingLeft="16dp"
android:paddingRight="48dp"
android:paddingStart="16dp"
android:paddingTop="8dp"
android:text="@string/kde_connect"
android:textColor="#FFF"
android:textStyle="bold" />
<ImageView
android:id="@+id/device_type"
android:layout_width="52dp"
android:layout_height="52dp"
android:layout_gravity="top"
android:paddingTop="@dimen/nav_header_vertical_spacing"
android:paddingBottom="4dp"
tools:srcCompat="@drawable/ic_device_phone_32dp" />
<TextView
android:id="@+id/device_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="0dp"
android:paddingBottom="16dp"
android:paddingEnd="48dp"
android:paddingLeft="16dp"
android:paddingRight="48dp"
android:paddingStart="16dp"
android:paddingTop="4dp"
android:text="My device"
android:textColor="#fff" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:orientation="vertical">
<TextView
android:id="@+id/kdeconnect_label"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/kde_connect"
android:textAppearance="?attr/textAppearanceHeadline6" />
<TextView
android:id="@+id/device_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?attr/textAppearanceBody2"
android:textColor="@color/material_on_surface_emphasis_medium"
tools:text="My device" />
</LinearLayout>
</LinearLayout>
</FrameLayout>
</LinearLayout>

View File

@@ -1,17 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/selectableItemBackground"
android:clickable="false"
android:drawableStart="@drawable/ic_warning"
android:drawableLeft="@drawable/ic_warning"
android:drawablePadding="8dp"
android:paddingTop="16dp"
android:paddingBottom="12dp"
android:paddingLeft="16dip"
android:paddingRight="16dip"
android:text="@string/on_non_trusted_message"
app:drawableStartCompat="@drawable/ic_warning"
app:drawableLeftCompat="@drawable/ic_warning">
android:text="@string/on_non_trusted_message">
</TextView>

View File

@@ -5,8 +5,6 @@
android:layout_height="wrap_content"
android:paddingTop="16dp"
android:paddingBottom="12dp"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:text="@string/pairing_description"
android:clickable="false"
android:background="@android:color/transparent"

View File

@@ -1,18 +1,14 @@
<?xml version="1.0" encoding="utf-8"?>
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/selectableItemBackground"
android:clickable="true"
android:focusable="true"
android:drawableStart="@drawable/ic_wifi"
android:drawableLeft="@drawable/ic_wifi"
android:drawablePadding="8dp"
android:paddingTop="16dp"
android:paddingBottom="12dp"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:text="@string/no_wifi"
app:drawableStartCompat="@drawable/ic_wifi"
app:drawableLeftCompat="@drawable/ic_wifi">
android:text="@string/no_wifi">
</TextView>

View File

@@ -1,11 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<CheckBox
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/checkbox"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:focusable="false"
android:clickable="false"
tools:viewBindingIgnore="true"
android:background="@null"/>

View File

@@ -1,11 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.recyclerview.widget.RecyclerView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/audio_devices_recycler"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:clipToPadding="false"
android:orientation="vertical"
android:paddingHorizontal="@dimen/activity_horizontal_margin"
android:paddingVertical="@dimen/activity_vertical_margin">
</androidx.recyclerview.widget.RecyclerView>

View File

@@ -1,14 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<com.google.android.material.appbar.AppBarLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:theme="@style/ThemeOverlay.AppCompat.ActionBar">
<androidx.appcompat.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:elevation="8dp"/>
</com.google.android.material.appbar.AppBarLayout>

View File

@@ -1,51 +1,38 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context="org.kde.kdeconnect.UserInterface.TrustedNetworksActivity">
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin">
<include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
<LinearLayout
android:id="@+id/trusted_networks_list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<CheckBox
<CheckBox
android:text="@string/allow_all_networks_text"
android:layout_width="match_parent"
android:checked="true"
android:layout_height="wrap_content"
android:id="@+id/trust_all_networks_checkBox"/>
<TextView
<TextView
android:id="@+id/trusted_network_list_empty"
android:layout_width="fill_parent"
android:layout_height="100dp"
android:text="@string/empty_trusted_networks_list_text"
android:gravity="center" />
<ListView
<ListView
android:id="@android:id/list"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
<Button
android:id="@android:id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:visibility="gone" />
<Button
android:id="@android:id/button1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:visibility="gone" />
</LinearLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</LinearLayout>

View File

@@ -1,8 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:background="@color/on_secondary"
android:theme="@style/KdeConnectTheme"
android:background="#FFFFFF"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/runcommandWidgetTitleHeader"
@@ -30,7 +29,7 @@
</LinearLayout>
<ListView
android:id="@+id/run_commands_list"
android:id="@+id/runcommandslist"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="4dp"

View File

@@ -6,13 +6,11 @@
android:padding="20dp">
<ListView
android:id="@+id/run_commands_device_list"
android:id="@+id/runcommandsdevicelist"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="4dp"
android:addStatesFromChildren="true"
android:orientation="vertical"
android:divider="@null"
android:dividerHeight="0dp" />
android:orientation="vertical" />
</LinearLayout>

View File

@@ -68,6 +68,8 @@
<string name="error_canceled_by_other_peer">ألغاه ندّ آخر</string>
<string name="encryption_info_title">معلومات التّعمية</string>
<string name="encryption_info_msg_no_ssl">لا يستخدم الجهاز الآخر إصدارة حديثة من «كدي المتّصل»، ستُستخدم طريقة التّعمية القديمة.</string>
<string name="my_device_fingerprint">بصمة SHA1 لشهادة جهازك هي:</string>
<string name="remote_device_fingerprint">بصمة SHA1 لشهادة الجهاز البعيد هي:</string>
<string name="pair_requested">طُلب الاقتران</string>
<string name="pairing_request_from">طلب اقتران من %1s</string>
<string name="received_file_text">المس لفتح \'%1s\'</string>

View File

@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="kde_connect">KDE Connect</string>
<string name="foreground_notification_no_devices">Nun se conectó con nengún preséu</string>
<string name="foreground_notification_no_devices">Nun se coneutó con nengún preséu</string>
<string name="foreground_notification_devices">Coneutóse con %s</string>
<string name="pref_plugin_telephony">Avisador telefónicu</string>
<string name="pref_plugin_telephony_desc">Unvia avisos de les llamaes entrantes</string>
@@ -12,7 +12,7 @@
<string name="pref_plugin_clipboard">Sincronización del cartafueyu</string>
<string name="pref_plugin_clipboard_desc">Comparte\'l conteníu del cartafueyu</string>
<string name="pref_plugin_mousepad">Entrada remota</string>
<string name="pref_plugin_mousepad_desc">Usa\'l preséu como panel táctil y tecláu</string>
<string name="pref_plugin_mousepad_desc">Usa\'l preséu como panel táutil y tecláu</string>
<string name="pref_plugin_presenter">Mandu pa presentaciones de diapositives</string>
<string name="pref_plugin_presenter_desc">Usa esti preséu pa cambiar de diapositives nuna presentación</string>
<string name="pref_plugin_remotekeyboard">Receición de calcos de tecles remotos</string>
@@ -41,14 +41,14 @@
<string name="remotekeyboard_editing_only_title">Remanar les tecles remotes namás al editar</string>
<string name="remotekeyboard_connected">La conexón col tecláu remotu ta activa</string>
<string name="open_mousepad">Entrada remota</string>
<string name="mousepad_info">Movi un deu pela pantalla pa mover el mur. Con un toque faes un clic esquierdu y teniendo primío faes l\'aición d\'arrastrar y soltar, col toque de dos deos simules un clic derechu y col toque de tres simules un clic col botón d\'en mediu del mur. Esliza dos deos pela pantalla pa desplazate.</string>
<string name="mousepad_info">Movi un deu pela pantalla pa mover el mur. Con un toque faes un clic esquierdu y teniendo primío faes l\'aición d\'arrastrar y soltar, col toque de dos deos simules un clic drechu y col toque de tres simules un clic col botón d\'en mediu del mur. Esliza dos deos pela pantalla pa desplazate.</string>
<string name="mousepad_double_tap_settings_title">Aición al tocar con dos deos</string>
<string name="mousepad_triple_tap_settings_title">Aición al tocar con tres deos</string>
<string name="mousepad_sensitivity_settings_title">Sensibilidá del panel táctil</string>
<string name="mousepad_sensitivity_settings_title">Sensibilidá del panel táutil</string>
<string name="mousepad_acceleration_profile_settings_title">Aceleración del punteru</string>
<string name="mousepad_scroll_direction_title">Direición de desplazamientu inversa</string>
<string-array name="mousepad_tap_entries">
<item>Clic derechu</item>
<item>Clic drechu</item>
<item>Clic d\'en mediu</item>
<item>Nada</item>
</string-array>
@@ -67,7 +67,7 @@
<item>Muncha</item>
<item>Permuncha</item>
</string-array>
<string name="category_connected_devices">Preseos conectaos</string>
<string name="category_connected_devices">Preseos coneutaos</string>
<string name="category_not_paired_devices">Preseos disponibles</string>
<string name="category_remembered_devices">Preseos recordaos</string>
<string name="device_menu_plugins">Axustes de plugins</string>
@@ -77,8 +77,8 @@
<string name="error_timed_out">Escosó\'l tiempu d\'espera</string>
<string name="encryption_info_title">Información del cifráu</string>
<string name="encryption_info_msg_no_ssl">L\'otru preséu nun executa una versión recién de KDE Connect y usa\'l métodu heredáu de cifráu.</string>
<string name="my_device_fingerprint">La buelga SHA256 d\'esti preséu ye:</string>
<string name="remote_device_fingerprint">La buelga SHA256 del certificáu del preséu remotu:</string>
<string name="my_device_fingerprint">La buelga SHA1 d\'esti preséu ye:</string>
<string name="remote_device_fingerprint">La buelga SHA1 del preséu remotu ye:</string>
<string name="pair_requested">Solicitóse l\'empareyamientu</string>
<string name="pairing_request_from">Solicitú d\'empareyamientu de %1s</string>
<plurals name="incoming_file_title">
@@ -116,7 +116,7 @@
<string name="received_file_text">Toca p\'abrir «%1s»</string>
<string name="cannot_create_file">Nun pue crease\'l ficheru %s</string>
<string name="tap_to_answer">Toca pa responder</string>
<string name="right_click">Unviar un clic derechu</string>
<string name="right_click">Unviar un clic drechu</string>
<string name="middle_click">Unviar un clic d\'en mediu</string>
<string name="show_keyboard">Amosar el tecláu</string>
<string name="device_not_paired">Nun s\'empareyó\'l preséu</string>
@@ -142,7 +142,7 @@
<string name="custom_devices_settings">Llista de preseos personalizada</string>
<string name="custom_device_list">Amestar preseos pola IP</string>
<string name="custom_device_deleted">Desanicióse\'l preséu personalizáu</string>
<string name="custom_device_list_help">Si\'l preséu nun se detecta automáticamente, pues amestar la so direición IP o nome d\'agospiu calcando nel botón flotante d\'aición</string>
<string name="custom_device_list_help">Si\'l preséu nun se deteuta automáticamente, pues amestar la so direición IP o nome d\'agospiu calcando nel botón flotante d\'aición</string>
<string name="undo">Desfacer</string>
<string name="share_notification_preference">Avisos sonoros</string>
<string name="share_notification_preference_summary">Fai que\'l teléfonu vibre y reproduza un soníu al recibir un ficheru</string>
@@ -168,28 +168,28 @@
<string name="sftp_action_mode_menu_delete">Desaniciar</string>
<string name="sftp_no_storage_locations_configured">Nun se configuraron allugamientos d\'almacenamientu</string>
<string name="sftp_saf_permission_explanation">P\'acceder remotamente a los ficheros tienes de configurar allugamientos d\'almacenamientu</string>
<string name="no_players_connected">Nun s\'atoparon reproductores</string>
<string name="no_players_connected">Nun s\'alcontraron reproductores</string>
<string name="send_files">Unviar ficheros</string>
<string name="pairing_title">Preseos con KDE Connect</string>
<string name="pairing_description">Equí deberíen apaecer los demás preseos que tean executando KDE Connect na mesma rede.</string>
<string name="device_rename_title">Renomáu del preséu</string>
<string name="device_rename_confirm">Renomar</string>
<string name="refresh">Refrescar</string>
<string name="unreachable_description">Esti preséu empareyáu nun ye algamable. Asegúrate de que ta conectáu a la mesma rede que tu.</string>
<string name="no_wifi">Nun tas conectáu a una rede Wi-Fi polo que nun vas ser a ver nengún preséu. Calca equí p\'activar el Wi-Fi.</string>
<string name="unreachable_description">Esti preséu empareyáu nun ye algamable. Asegúrate de que ta coneutáu a la mesma rede que tu.</string>
<string name="no_wifi">Nun tas coneutáu a una rede Wi-Fi polo que nun vas ser a ver nengún preséu. Calca equí p\'activar el Wi-Fi.</string>
<string name="on_non_trusted_message">Nun tas nuna rede d\'enfotu. Desactivóse la descubrición automática.</string>
<string name="no_file_browser">Nun hai nengún restolador de ficheros instaláu.</string>
<string name="pref_plugin_telepathy">Unviu de SMS</string>
<string name="pref_plugin_telepathy_desc">Unvia SMS dende l\'ordenador</string>
<string name="findmyphone_description">Fai qu\'esti preséu suene pa que pueas atopalu</string>
<string name="findmyphone_found">Atopélu</string>
<string name="findmyphone_description">Fai qu\'esti preséu suene pa que pueas alcontralu</string>
<string name="findmyphone_found">Alcontrélu</string>
<string name="plugins_need_permission">Dalgunos plugins precisen permisos pa funcionar (tócalos pa más información):</string>
<string name="permission_explanation">Esti plugin precisa permisos pa funcionar</string>
<string name="optional_permission_explanation">Precises conceder permisos adicionales p\'activar toles funciones</string>
<string name="plugins_need_optional_permission">Dalgunos plugins tienen carauterísiques desactivaes pola falta de permisos (tócalos pa más información):</string>
<string name="select_ringtone">Timbre</string>
<string name="telephony_pref_blocked_title">Númberos bloquiaos</string>
<string name="telephony_pref_blocked_dialog_desc">Nun s\'amuesen les llamaes nin SMS de los númberos que configures. Especifica un númberu per llinia.</string>
<string name="telephony_pref_blocked_dialog_desc">Nun amuesa les llamaes nin SMS de los númberos que configures. Especifica un númberu per llinia.</string>
<string name="presenter_fullscreen">Pantalla completa</string>
<string name="presenter_exit">Colar de la presentación</string>
<string name="presenter_lock_tip">Pues bloquiar esti preséu y usar les tecles de volume pa dir a la diapositiva anterior/siguiente</string>
@@ -204,11 +204,8 @@
<string name="notification_channel_media_control">Mandu multimedia</string>
<string name="notification_channel_filetransfer">Tresferencia de ficheros</string>
<string name="notification_channel_high_priority">Prioridá alta</string>
<string name="notification_channel_sms_mms">Mensaxes nuevos</string>
<string name="copy_url_to_clipboard">Copiar la URL al cartafueyu</string>
<string name="clipboard_toast">Copióse al cartafueyu</string>
<string name="runcommand_notreachable">El preséu nun ye algamable</string>
<string name="runcommand_notpaired">El preséu nun ta empareyáu</string>
<string name="runcommand_noruncommandplugin">Esti preséu nun tien activáu\'l plugin Execución de comandos</string>
<string name="pref_plugin_findremotedevice_desc">Fai que\'l preséu remotu suene</string>
<string name="ring">Facer sonar</string>
@@ -230,7 +227,7 @@
<string name="notification_channel_receivenotification">Avisos d\'otros preseos</string>
<string name="take_picture">Llanzamientu de la cámara</string>
<string name="plugin_photo_desc">Llanza l\'aplicación de la cámara p\'acenciellar la fechura y tresferencia de semeyes</string>
<string name="no_app_for_opening">Nun atopó nenguna aplicación afayadiza p\'abrir esti ficheru.</string>
<string name="no_app_for_opening">Nun alcontró nenguna aplicación afayadiza p\'abrir esti ficheru.</string>
<string name="remote_keyboard_service">Tecláu remotu de KDE Connect</string>
<string name="presenter_pointer">Punteru</string>
<string name="trusted_networks">Redes d\'enfotu</string>
@@ -240,28 +237,21 @@
<string name="location_permission_needed_title">Ríquese un permisu</string>
<string name="location_permission_needed_desc">Android rique\'l permisu Allugamientu pa indentificar redes Wi-Fi</string>
<string name="clipboard_android_x_incompat">Android 10 quitó l\'accesu al cartafueyu en toles aplicaciones. Esti plugin va desactivase.</string>
<string name="cant_open_url">Nun pue abrise la URL pa siguir cola reproducción</string>
<string name="bigscreen_optional_permission_explanation">Pa compartir la entrada del micrófonu del preséu precises dar accesu a la entrada d\'audiu del preséu</string>
<string name="message_reply_label">RESPONDER</string>
<string name="user_display_name">Tu</string>
<string name="set_long_text_as_mms_title">Unviar testos llargos como MMS</string>
<string name="convert_to_mms_after_title">Conversión a MMS</string>
<string-array name="convert_to_mms_after_entries">
<item>Dempués d\'un mensaxes</item>
<item>Dempués de dos mensaxes</item>
<item>Dempués de tres mensaxes</item>
<item>Dempués de cuatro mensaxes</item>
<item>Dempués de cinco mensaxes</item>
<item>After one message</item>
<item>After two messages</item>
<item>After three messages</item>
<item>After four messages</item>
<item>After five messages</item>
</string-array>
<string name="theme_dialog_title">Estilu de l\'aplicación</string>
<string-array name="theme_list">
<item>Set by Battery Saver</item>
<item>Claridá</item>
<item>Escuridá</item>
<item>Light</item>
<item>Dark</item>
</string-array>
<string-array name="theme_list_v28">
<item>System Default</item>
<item>Claridá</item>
<item>Escuridá</item>
<item/>
<item>Light</item>
<item>Dark</item>
</string-array>
</resources>

View File

@@ -1,355 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="kde_connect">KDE Connect</string>
<string name="foreground_notification_no_devices">Hər hansı bir cihaz qoşulmayıb</string>
<string name="foreground_notification_devices">Qoşulub: %s</string>
<string name="foreground_notification_send_clipboard">Mübadilə buferindəkini göndərmək</string>
<string name="pref_plugin_telephony">Telefon bildirişi</string>
<string name="pref_plugin_telephony_desc">Gələn zəng bildirişlərini göndərmək</string>
<string name="pref_plugin_battery">Batareya məlumatı</string>
<string name="pref_plugin_battery_desc">Batareya vəziyyətini vaxtaşırı bildirmək</string>
<string name="pref_plugin_connectivity_report">Bağlantı hesabatı</string>
<string name="pref_plugin_connectivity_report_desc">Şəbəkə siqnalının gücünü və vəziyyətini bildirin</string>
<string name="pref_plugin_sftp">Fayl sistemi açılır</string>
<string name="pref_plugin_sftp_desc">Bu cihazın fayl sisteminə baxmağa icazə vermək</string>
<string name="pref_plugin_clipboard">Mübadilə Buferini eyniləşdirmək</string>
<string name="pref_plugin_clipboard_desc">Mübadilə buferi tərkiblərini paylaşmaq</string>
<string name="pref_plugin_clipboard_sent">Mübadilə buferini göndərmək</string>
<string name="pref_plugin_mousepad">Məsafədən giriş</string>
<string name="pref_plugin_mousepad_desc">Telefon və Planşetinizi toxunma paneli və klaviatura kimi istifadə edin</string>
<string name="pref_plugin_presenter">Məsafədən slayd göstərişi</string>
<string name="pref_plugin_presenter_desc">Cihazınızı təqdimatda slaydları dəyişmək üçün istifadə edin</string>
<string name="pref_plugin_remotekeyboard">Məsafədən düyməyə basmanı almaq</string>
<string name="pref_plugin_remotekeyboard_desc">Düyməyə basmanı məsafədəki qurğudan almaq</string>
<string name="pref_plugin_mpris">Multimedia idarəsi</string>
<string name="pref_plugin_mpris_desc">Media oynadıcınızı idarə etməyə imkan verir</string>
<string name="pref_plugin_runcommand">Əmr başlatmaq</string>
<string name="pref_plugin_runcommand_desc">Əmrləri telefon və ya planşetiniz ilə məsafədən başlatmaq</string>
<string name="pref_plugin_contacts">Kontaktları eyniləşdirmək</string>
<string name="pref_plugin_contacts_desc">Cihazın kontak kitabçasını eyniləşdirməyə icazə vermək</string>
<string name="pref_plugin_ping">Dümsükləmək</string>
<string name="pref_plugin_ping_desc">Siqnal göndərmək və almaq</string>
<string name="pref_plugin_notifications">Bildiriş eyniləşdirməsi</string>
<string name="pref_plugin_notifications_desc">Bildirişləri digər cihazlardan əldə etmək</string>
<string name="pref_plugin_receive_notifications">Bildirişləri almaq</string>
<string name="pref_plugin_receive_notifications_desc">Bildirişləri digər cihazlardan almaq və onları Android\'də göstərmək</string>
<string name="pref_plugin_sharereceiver">Paylaşmaq və Almaq</string>
<string name="pref_plugin_sharereceiver_desc">Faylları və URL\'ları cihazlarla paylaşmaq</string>
<string name="device_list_empty">Cihaz yoxdur</string>
<string name="ok">OK</string>
<string name="sad_ok">OK :(</string>
<string name="cancel">İmtina</string>
<string name="open_settings">Ayarları açmaq</string>
<string name="no_permissions">Bildirişlər almağa icazə verməniz lazımdır</string>
<string name="no_permission_mprisreceiver">Media oynadıcını idarə etmək üçün bildirişlərə girişə icazə verməniz lazımdır</string>
<string name="no_permissions_remotekeyboard">Düymə basılmalarını almaq üçün KDE Connect Klaviaturasını aktiv etməlisiniz</string>
<string name="send_ping">Dümsükləmək</string>
<string name="open_mpris_controls">Multimedia idarə edilməsi</string>
<string name="remotekeyboard_editing_only_title">Məsafədəki düymələri yalnız redaktə edərkən idarə edin</string>
<string name="remotekeyboard_not_connected">Aktiv bir uzaq klaviatura bağlantısı yoxdur, onu kdeconnect-də yaradın</string>
<string name="remotekeyboard_connected">Uzaq klaviatura bağlantısını aktiv edin</string>
<string name="remotekeyboard_multiple_connections">Birdən çox uzaq klaviatura bağlantısı var, tənzimləmək üçün cihazı seçin</string>
<string name="open_mousepad">Məsafədən giriş</string>
<string name="mousepad_info">Siçan kursorunu hərəkət etdirmək üçün barmağı ekranda sürüşdürün. Klik üçün ekrana vurun, sağ və orta siçan düymələri üçün iki/üç barmaqla toxunuş edin. Sürüşdürmək üçün iki barmaqdan istifadə edin. Tutub saxlamaq üçün basın saxlayın.</string>
<string name="mousepad_double_tap_settings_title">İki barmaq toxunuşu əməlini təyin edin</string>
<string name="mousepad_triple_tap_settings_title">Üç barmaq toxunuşu əməlini təyin edin</string>
<string name="mousepad_sensitivity_settings_title">Toxunma panelinin həsassləğını təyin edin</string>
<string name="mousepad_acceleration_profile_settings_title">Kursorun sürətini təyin edin</string>
<string name="mousepad_scroll_direction_title">Sürüşdürmənin əks istiqaməti</string>
<string-array name="mousepad_tap_entries">
<item>Sağ klik</item>
<item>Orta klik</item>
<item>Heç biri</item>
</string-array>
<string-array name="mousepad_sensitivity_entries">
<item>Ən yavaş</item>
<item>Ən yavaşın üstü</item>
<item>Standart</item>
<item>Standartın üstü</item>
<item>Ən tez</item>
</string-array>
<string-array name="mousepad_acceleration_profile_entries">
<item>Sürətlənmə yoxdur</item>
<item>Ən zəif</item>
<item>Zəif</item>
<item>Orta</item>
<item>Güclü</item>
<item>Ən güclü</item>
</string-array>
<string name="sendkeystrokes_send_to">Düymələrə vuruşları buraya göndərin:</string>
<string name="sendkeystrokes_textbox_hint">Düyməyə vurulmanı ana komputerə göndərin</string>
<string name="sendkeystrokes_disabled_toast">Düyməə vuruşun göndərilməsi söndürülüb - onu ayarlardan aktiv edin</string>
<string name="sendkeystrokes_wrong_data">Səhv mime növü - \'text/x-keystrokes\' üçün lazımdır</string>
<string name="sendkeystrokes_sent_text">%2s cihazına %1s göndərin</string>
<string name="sendkeystrokes_pref_category_summary">Bu modul, düyməyə vurmaqla, qoşulmuş ana komputerə göndərərərk başqa tətbiqlərin mətn hissəsininlərini mübadilə etməyə imkan verir</string>
<string name="sendkeystrokes_pref_category_title">Düymələrə vuruşları göndərin</string>
<string name="sendkeystrokes_pref_enabled">Düyməyə vuruşun göndərilməsini aktiv edin</string>
<string name="sendkeystrokes_pref_enabled_summary">\'text/x-keystrokes\' mime növü ilə verilənləri dinləyin</string>
<string name="sendkeystrokes_safe_text_enabled">Təhlükəsiz mətni dərhal göndərin</string>
<string name="sendkeystrokes_safe_text_enabled_summary">Yalnız qısa nömrəli sətirləri təsdiqləmədən göndərin</string>
<string name="pref_plugin_mousepad_send_keystrokes">Düymə vuruşu kimi göndərmək</string>
<string name="mouse_receiver_plugin_description">Uzaqdakı siçanın hərəkətini qəbul etmək</string>
<string name="mouse_receiver_plugin_name">Siçanı qəbul edən</string>
<string name="mouse_receiver_no_permissions">Xüsusi İmkanlarda xidməti aktiv etməlisiniz</string>
<string name="category_connected_devices">Qoşulmuş cihazlar</string>
<string name="category_not_paired_devices">Mövcud cihazlar</string>
<string name="category_remembered_devices">Yadda saxlanılan cihazlar</string>
<string name="device_menu_plugins">Plaqin ayarları</string>
<string name="device_menu_unpair">Ayırmaq</string>
<string name="pair_new_device">Yeni cihaz qoşmaq</string>
<string name="unknown_device">Naməlum Cihaz</string>
<string name="error_not_reachable">Cihaz əlçatmazdır</string>
<string name="error_already_paired">Cihaz artıq qoşulub</string>
<string name="error_could_not_send_package">Paket göndərilə bilmədi</string>
<string name="error_timed_out">Vaxt bitdi</string>
<string name="error_canceled_by_user">İstifadəçi ləğv etdi</string>
<string name="error_canceled_by_other_peer">Digər istifadəçi ləğv etdi</string>
<string name="encryption_info_title">Şifrələmə məlumatı</string>
<string name="encryption_info_msg_no_ssl">Digər cihaz köhnə şifrələmə metodu istifadə edən KDE Connect\'in sonuncu versiyasını istifadə etmir.</string>
<string name="my_device_fingerprint">Cihazınızın sertifikatının SHA256 şifrə izi:</string>
<string name="remote_device_fingerprint">Uzaq cihaz sertifikatının SHA256 şifrə izi:</string>
<string name="pair_requested">Qoşulma soruşuldu</string>
<string name="pairing_request_from">%1s tərəfindən qoşulma sorğusu</string>
<plurals name="incoming_file_title">
<item quantity="one">%1$d fayl %2$s\'dn alınır</item>
<item quantity="other">%1$d fayl %2$s\'dn alınır</item>
</plurals>
<plurals name="incoming_files_text">
<item quantity="one">Fayl: %1s</item>
<item quantity="other">(Fayl %2$d %3$d) : %1$s</item>
</plurals>
<plurals name="outgoing_file_title">
<item quantity="one">%1$d fayl %2$s\'a(ə) göndərilir</item>
<item quantity="other">%1$d fayl %2$s\'a(ə) göndərilir</item>
</plurals>
<plurals name="outgoing_files_text">
<item quantity="one">Fayl: %1$s</item>
<item quantity="other">(Fayl %2$d %3$d) : %1$s</item>
</plurals>
<plurals name="received_files_title">
<item quantity="one">Fayl %1$s\'dn alındı</item>
<item quantity="other">%2$d fayl %1$s\'dn alındı</item>
</plurals>
<plurals name="received_files_fail_title">
<item quantity="one">Faylın %1$sdn alınması baş tutmadı</item>
<item quantity="other">%3$d-n %2$d faylının %1$s\'dn alınması baş tutmadı</item>
</plurals>
<plurals name="sent_files_title">
<item quantity="one">Faylı %1$s\'a(ə) göndərmək</item>
<item quantity="other">%2$d faylı %1$s göndərmək</item>
</plurals>
<plurals name="send_files_fail_title">
<item quantity="one">faylı %1$s\'a(ə) göndərmək baş tutmadı</item>
<item quantity="other">%3$d-n %2$d faylını %1$s\'a(ə) göndərək baş tutmadı</item>
</plurals>
<string name="tap_to_open">Açmaq üçün toxunun</string>
<string name="received_file_text">\'%1s\' açmaq üçün toxunun</string>
<string name="cannot_create_file">%s faylı yaradıla bilmir</string>
<string name="tap_to_answer">Cavab üçün toxunun</string>
<string name="right_click">Sağ Klik göndərmək</string>
<string name="middle_click">Orta Klik göndərmək</string>
<string name="show_keyboard">Klaviaturanı göstərmək</string>
<string name="device_not_paired">Cihaz qoşulmayıb</string>
<string name="request_pairing">Qoşulma tələbi</string>
<string name="pairing_accept">Qəbul etmək</string>
<string name="pairing_reject">İmtina etmək</string>
<string name="settings">Ayarlar</string>
<string name="mpris_play">Səsləndirmək</string>
<string name="mpris_pause">Fasilə</string>
<string name="mpris_previous">Əvvəlki</string>
<string name="mpris_rew">Geri almaq</string>
<string name="mpris_ff">Sürətli irəli</string>
<string name="mpris_next">Sonrakı</string>
<string name="mpris_volume">Səs səviyyəsi</string>
<string name="mpris_time_settings_title">İrəli/Geri düymələri</string>
<string name="mpris_time_settings_summary">Basıldığında sürətli irəli/geriyə üçün vaxtı ayarlamaq</string>
<string-array name="mpris_time_entries">
<item>10 saniyə</item>
<item>20 saniyə</item>
<item>30 saniyə</item>
<item>1 dəqiqə</item>
<item>2 dəqiqə</item>
</string-array>
<string name="mpris_notification_settings_title">Media idarəetmə bildirişlərini göstərmək</string>
<string name="mpris_notification_settings_summary">KDE Connect açmadan media oynadıcınızın idarəsinə icazə vermək</string>
<string name="share_to">Paylaşmaq...</string>
<string name="protocol_version_newer">Bu cihaz yeni protokol versiyası istifadə edir</string>
<string name="plugin_settings_with_name">%s ayarları</string>
<string name="invalid_device_name">Səhv cihaz adı</string>
<string name="shareplugin_text_saved">Mətn alındı, mübadilə buferində saxlanıldı</string>
<string name="custom_devices_settings">Fərdi cihaz siyahısı</string>
<string name="custom_device_list">Cihazı İP ilə əlavə etmək</string>
<string name="custom_device_deleted">Fərdi cihaz silindi</string>
<string name="custom_device_list_help">Əgər cihazınız avtomatik aşkar edilməmişsə, Üzən Fəaliyyət Düyməsinə vuraraq onun onun İP ünvanını və host adını daxil edə bilərsiniz</string>
<string name="custom_device_fab_hint">Cihaz əlavə etmək</string>
<string name="undo">Geriyə qaytarmaq</string>
<string name="share_notification_preference">Səsli bildirişlər</string>
<string name="share_notification_preference_summary">Fayl qəbul edilərkən vibrasiya və səsli bildiriş</string>
<string name="share_destination_customize">Hədəf qovluğunu təyin etmək</string>
<string name="share_destination_customize_summary_disabled">Alınan fayllar Yüklənənlər\'də saxlanılacaq</string>
<string name="share_destination_customize_summary_enabled">Fayllar aşağıdakı qovluqda saxlanılacaq</string>
<string name="share_destination_folder_preference">Hədəf qovluğu</string>
<string name="share">Paylaşmaq</string>
<string name="share_received_file">\"%s\" paylaşmaq</string>
<string name="title_activity_notification_filter">Bildiriş filtri</string>
<string name="filter_apps_info">Bildirişlər seçilmiş tətbiqlər üçün eyniləşdiriləcəkdir</string>
<string name="sftp_sdcard_num">SD kart %d</string>
<string name="sftp_sdcard">SD kart</string>
<string name="sftp_readonly">(yalnız oxumaq)</string>
<string name="sftp_camera">Kamera şəkilləri</string>
<string name="add_device_dialog_title">Cihaz əlavə etmək</string>
<string name="add_device_hint">Host_adı və ya İP ünvanı</string>
<string name="sftp_preference_detected_sdcards">SD kartı aşkar edildi</string>
<string name="sftp_preference_edit_sdcard_title">SD karta düzəliş</string>
<string name="sftp_preference_configured_storage_locations">Saxlama yerini tənzimləmək</string>
<string name="sftp_preference_add_storage_location_title">Saxlama yeri əlavə etmək</string>
<string name="sftp_preference_edit_storage_location">Saxlama yerinə düzəliş</string>
<string name="sftp_preference_add_camera_shortcut">Kamera qovluğu qısayolu yaratmaq</string>
<string name="sftp_preference_add_camera_shortcut_summary_on">Kamera qovluğuna qısayolu əlavə etmək</string>
<string name="sftp_preference_add_camera_shortcut_summary_off">Kamera qovluğuna qısayol əlavə etməmək</string>
<string name="sftp_storage_preference_storage_location">Saxlama yeri</string>
<string name="sftp_storage_preference_storage_location_already_configured">Bu yer artıq tənzimlənib</string>
<string name="sftp_storage_preference_click_to_select">klikləyərək seçin</string>
<string name="sftp_storage_preference_display_name">Görünən adı</string>
<string name="sftp_storage_preference_display_name_already_used">Bu ad artıq istifadə olunub</string>
<string name="sftp_storage_preference_display_name_cannot_be_empty">Görünən ad boş ola bilməz</string>
<string name="sftp_action_mode_menu_delete">Silmək</string>
<string name="sftp_no_sdcard_detected">SD kart aşkar edilmədi</string>
<string name="sftp_no_storage_locations_configured">Saxlama yeri tənzimlənməyib</string>
<string name="sftp_saf_permission_explanation">Fayllara uzaqdan daxil olmaq üçün saxlama yerlərini konfiqurasiya etməlisiniz</string>
<string name="no_players_connected">Pleyer tapılmadı</string>
<string name="send_files">Faylları göndərmək</string>
<string name="pairing_title">KDE Connect Cihazları</string>
<string name="pairing_description">Eyni şəbəkədəki KDE Connect işləyən digər cihazlar burada görünməlidir</string>
<string name="device_rename_title">Cihazın adını dəyişmək</string>
<string name="device_rename_confirm">Adını Dəyişmək</string>
<string name="refresh">Təzələmək</string>
<string name="unreachable_description">Bu qoşulan cihaz əlçatan deyil. Bu cihazın sizinki ilə eyni şəbəkəyə qoşulduğundan əmin olun.</string>
<string name="no_wifi">"Siz Wi-Fi şəbəkəsinə qoşulmamısınız, belə ki, siz digər cihazları görə bilməzsiniz. Wi-Fi\'ı aktiv etmək üçün buraya vurun."</string>
<string name="on_non_trusted_message">Etibarlı şəbəkədə deyil, avtomatik aşkar edilmə söndürüldü.</string>
<string name="no_file_browser">Fayllara baxma vasitəsi quraşdırılmayıb.</string>
<string name="pref_plugin_telepathy">SMS göndərmək</string>
<string name="pref_plugin_telepathy_desc">İş Masanızdan mətn ismarıcı göndərin</string>
<string name="pref_plugin_telepathy_mms">MMS göndərmək</string>
<string name="pref_plugin_telepathy_mms_desc">KDE Connect\'dən MMS göndərmək üçün, onu standart SMS tətbiqi kimi təyin etməniz lazımdır.</string>
<string name="findmyphone_title">Telefonumu tapmaq</string>
<string name="findmyphone_title_tablet">Planşetimi tapmaq</string>
<string name="findmyphone_title_tv">TV-ni tapmaq</string>
<string name="findmyphone_description">Cihaz zəng çalır, beləliklə onu tapırsınız</string>
<string name="findmyphone_found">Onu tapmaq</string>
<string name="open">Açmaq</string>
<string name="close">Bağlamaq</string>
<string name="plugins_need_permission">Bəzi qoşmaların işləməsi üçün icazələr lazımdır (daha çox məlumat üçün toxunun):</string>
<string name="permission_explanation">Bu qoşmanın işləməsi üçün icazələr lazımdır</string>
<string name="optional_permission_explanation">Bütün funksiyaların işləməsi üçün əlavə icazələr verməlisiniz</string>
<string name="plugins_need_optional_permission">Bəzi qoşmalarda icazə çatışmamazlığı səbəbindən bir sıra imkanlar söndürülmüşdür (daha çox məlumat üçün toxunun)</string>
<string name="share_optional_permission_explanation">Paylaşılan faylları qəbul etmək üçün saxlama qovluğu seçməlisiniz</string>
<string name="telepathy_permission_explanation">İş Masanızdan telefonunuzdakı SMS\'ləri oxumaq və SMS göndərmək üçün SMS\'ə girişə icazə verməlisiniz</string>
<string name="telephony_permission_explanation">İş Masanızda telefon zənglərini görmək üçün Zəng Tarixçəsinə və Zəng yığımı vəziyyətinə icazə verməlisiniz</string>
<string name="telephony_optional_permission_explanation">Telefon nömrəsi əvəzinə kontaktın adını görmək üçün Kontakt Kitabçasına girişə icazə verməlisiniz</string>
<string name="contacts_permission_explanation">İş Masası vasitəsi ilə kontaktlar kitabçasını paylaşmaq üçün kontaktlara girişə icazə verməlisiniz</string>
<string name="select_ringtone">Zəng səsini seçmək</string>
<string name="telephony_pref_blocked_title">Əngəllənmiş nömrələr</string>
<string name="telephony_pref_blocked_dialog_desc">Bu nömrədən SMS və zənglər göstərilməsin. Hər sətirdə bir nömrə göstərin</string>
<string name="mpris_coverart_description">Mövcud medianın üz qabığı</string>
<string name="device_icon_description">Cihaın nişanı</string>
<string name="settings_icon_description">Ayarlar nişanı</string>
<string name="presenter_fullscreen">Tam_Ekran</string>
<string name="presenter_exit">Təqdimatdan çıxış</string>
<string name="presenter_lock_tip">Siz cihazınızı kilidləyə və səs düymələri ilə əvvəlki/sonrakı slayda keçid edə bilərsiniz</string>
<string name="add_command">Əmr əlavə etmək</string>
<string name="addcommand_explanation">Əmrlər qeyd edilməyib</string>
<string name="addcommand_explanation2">Sİz KDE Connect sistem ayarlarında yeni əmrlər əlavə edə bilərsiniz</string>
<string name="add_command_description">İş Masasında yeni əmr əlavə edə bilərsiniz</string>
<string name="pref_plugin_mprisreceiver">Media Pleyer İdarəsi</string>
<string name="pref_plugin_mprisreceiver_desc">Telefonunuzun media pleyerlərini digər cihazdan idarə edin</string>
<string name="notification_channel_default">Digər bildirişlər</string>
<string name="notification_channel_persistent">Daimi göstərici</string>
<string name="notification_channel_media_control">Media İdarəsi</string>
<string name="notification_channel_filetransfer">Fayl göndərişi</string>
<string name="notification_channel_high_priority">Yüksək üstünlük</string>
<string name="notification_channel_sms_mms">Yeni İsmarıc</string>
<string name="mpris_stop">Cari pleyeri dayandırmaq</string>
<string name="copy_url_to_clipboard">URL\'u mübadilə buferinə kopyalamaq</string>
<string name="clipboard_toast">Mübadilə buferinə kopyalandı</string>
<string name="runcommand_notreachable">Cihaz əlçatan deyil</string>
<string name="runcommand_notpaired">Cihaz qoşulmayıb</string>
<string name="runcommand_nosuchdevice">Belə cihaz yoxdur</string>
<string name="runcommand_noruncommandplugin">Bu cihazda aktiv edilmiş Əmr Başlatma Əlavəsi yoxdur</string>
<string name="pref_plugin_findremotedevice">Uzaq cihazı tapmaq</string>
<string name="pref_plugin_findremotedevice_desc">Uzaq cihazınıza zəng göndərin</string>
<string name="ring">Zəng</string>
<string name="pref_plugin_systemvolume">Sistem səs səviyyəsi</string>
<string name="pref_plugin_systemvolume_desc">Uzaq cihazın sistem səs səviyəsini idarə etmək</string>
<string name="mute">Susdurmaq</string>
<string name="all">Hamısı</string>
<string name="devices">Cihazlar</string>
<string name="settings_rename">Cihazın adı</string>
<string name="settings_dark_mode">Qaranlıq Görünüş</string>
<string name="settings_more_settings_title">Digər ayarlar</string>
<string name="settings_more_settings_text">Hər cihaz üçün ayarları cihazın \'Qoşma Ayarları\' bölməsində tapa bilərsiniz.</string>
<string name="setting_persistent_notification">Daimi bildirişi göstərmək</string>
<string name="setting_persistent_notification_oreo">Daimi bildiriş</string>
<string name="setting_persistent_notification_description">Bildiriş ayarlarında aktiv/deaktiv etmək üçün toxunun</string>
<string name="extra_options">Əlavə seçimlər</string>
<string name="privacy_options">Məxfilik seçimləri</string>
<string name="set_privacy_options">Məxfilik seçimlərini quraşdırın</string>
<string name="block_contents">Bildirişlərin məzmununu bloklamaq</string>
<string name="block_images">Bildirişlərin şəkillərini bloklamaq</string>
<string name="notification_channel_receivenotification">Digar cihazlardan bilsirişlər</string>
<string name="take_picture">Kameranı açmaq</string>
<string name="plugin_photo_desc">Şəkillər çəkmək və göndərməyi asanlaşdırmaq üçün kamera tətbiqini başladın</string>
<string name="no_app_for_opening">Bu faylı açmaq üçün uyğun tətbiq tapılmadı</string>
<string name="remote_keyboard_service">KDE Connect Uzaq Klaviaturası</string>
<string name="presenter_pointer">Kursor</string>
<string name="trusted_networks">Etibarlı şəbəkələr</string>
<string name="trusted_networks_desc">Bilinən şəbəkələrin avtomatik aşkar edilməsini məhdudlaşdırmaq</string>
<string name="add_trusted_network">%1s əlavə etmək</string>
<string name="empty_trusted_networks_list_text">Hələlik hər hansı bir etibarlı şəbəkə əlavə edilməyib</string>
<string name="allow_all_networks_text">Hamısına icazə vermək</string>
<string name="location_permission_needed_title">İcazə tələb edlir</string>
<string name="location_permission_needed_desc">Android, Sizin WiFi şəbəkənizi müəyyənləşdirmək üçün icazə tələb edir</string>
<string name="clipboard_android_x_incompat">Android 10 bütün tətbiqlər üçün mübadilə buferinə girişi aradan qaldırıb. Bu qoşma söndürüləcək.</string>
<string name="mpris_open_url">Burada oxutmağa davam edin</string>
<string name="cant_open_url">Oxutmanı davam etdirmək üçün URL açıla bilmir</string>
<string name="bigscreen_home">Ev</string>
<string name="bigscreen_up">Yuxarı</string>
<string name="bigscreen_left">Sola</string>
<string name="bigscreen_select">Seçim</string>
<string name="bigscreen_right">Sağa</string>
<string name="bigscreen_down">Aşağı</string>
<string name="bigscreen_mic">Mik</string>
<string name="pref_plugin_bigscreen">Böyük ekran məsafədən idarəsi</string>
<string name="pref_plugin_bigscreen_desc">Plasma Böyük Ekran\'ını cihazınızla məsafədən idarə edin</string>
<string name="bigscreen_optional_permission_explanation">Telefonunuzun mikrofon girişini paylaşmaq üçün telefonun səs girişinə icazə verməlisiniz</string>
<string name="bigscreen_speech_extra_prompt">Danışıq</string>
<string name="message_reply_label">CAVAB</string>
<string name="mark_as_read_label">OXUNMUŞ KİMİ İŞARƏLƏMƏK</string>
<string name="user_display_name">Siz</string>
<string name="set_default_sms_app_title">MMS göndərmək</string>
<string name="set_group_message_as_mms_title">MMS qrupu göndərmək</string>
<string name="set_long_text_as_mms_title">Uzun mətni MMS kimi göndərmək</string>
<string name="convert_to_mms_after_title">MMS\'ə çevirmək</string>
<string-array name="convert_to_mms_after_entries">
<item>Bir ismarıcdan sonra</item>
<item>İki ismarıcdan sonra</item>
<item>Üş ismarıcdan sonra1</item>
<item>Dörd ismarıcdan sonra1</item>
<item>Beş ismarıcdan sonra1</item>
</string-array>
<string name="theme_dialog_title">Mövzunu seçin</string>
<string-array name="theme_list">
<item>Batareyaya Qənaət tərəfindən təyin edilr</item>
<item>İşıqlı</item>
<item>Qaranlıq</item>
</string-array>
<string-array name="theme_list_v28">
<item>Standart Sistem</item>
<item>İşıqlı</item>
<item>Qaranlıq</item>
</string-array>
<string name="report_bug">Xəta hesabatı</string>
<string name="donate">Maddi Dəstək</string>
<string name="source_code">Qaynaq Kodu</string>
<string name="licenses">Lisenziyalar</string>
</resources>

View File

@@ -8,8 +8,6 @@
<string name="pref_plugin_telephony_desc">Envia notificacions per a les trucades entrants</string>
<string name="pref_plugin_battery">Informa de la bateria</string>
<string name="pref_plugin_battery_desc">Informa periòdicament sobre l\'estat de la bateria</string>
<string name="pref_plugin_connectivity_report">Informa de la connectivitat</string>
<string name="pref_plugin_connectivity_report_desc">Informar la intensitat i l\'estat del senyal de la xarxa</string>
<string name="pref_plugin_sftp">Exposa el sistema de fitxers</string>
<string name="pref_plugin_sftp_desc">Permet navegar de forma remota pel sistema de fitxers del dispositiu</string>
<string name="pref_plugin_clipboard">Sincronitza el porta-retalls</string>
@@ -18,7 +16,7 @@
<string name="pref_plugin_mousepad">Entrada remota</string>
<string name="pref_plugin_mousepad_desc">Usa el vostre telèfon o tauleta com un ratolí i un teclat</string>
<string name="pref_plugin_presenter">Presentació de diapositives remota</string>
<string name="pref_plugin_presenter_desc">Usa el dispositiu per a canviar les diapositives d\'una presentació</string>
<string name="pref_plugin_presenter_desc">Usa el dispositiu per a canviar les dispositives d\'una presentació</string>
<string name="pref_plugin_remotekeyboard">Rep les pulsacions remotes de tecla</string>
<string name="pref_plugin_remotekeyboard_desc">Rep els esdeveniments de pulsacions de tecla des de dispositius remots</string>
<string name="pref_plugin_mpris">Controls multimèdia</string>
@@ -32,7 +30,7 @@
<string name="pref_plugin_notifications">Sincronitza les notificacions</string>
<string name="pref_plugin_notifications_desc">Accedeix a les vostres notificacions des d\'altres dispositius</string>
<string name="pref_plugin_receive_notifications">Rep les notificacions</string>
<string name="pref_plugin_receive_notifications_desc">Rep notificacions des d\'altres dispositius i mostrar-les a l\'Android</string>
<string name="pref_plugin_receive_notifications_desc">Rep notificacions des d\'altres dispositius i mostrar-los a l\'Android</string>
<string name="pref_plugin_sharereceiver">Comparteix i rep</string>
<string name="pref_plugin_sharereceiver_desc">Comparteix els fitxers i URL entre els dispositius</string>
<string name="device_list_empty">No hi ha cap dispositiu</string>
@@ -76,26 +74,11 @@
<item>Forta</item>
<item>La més forta</item>
</string-array>
<string name="sendkeystrokes_send_to">Envia les pulsacions de tecla a</string>
<string name="sendkeystrokes_textbox_hint">Envia les pulsacions de tecla a la màquina</string>
<string name="sendkeystrokes_disabled_toast">L\'enviament de les pulsacions de tecla està inhabilitat -habiliteu-lo a la configuració-</string>
<string name="sendkeystrokes_wrong_data">El tipus MIME no és vàlid -ha de ser «text/x-keystrokes»-</string>
<string name="sendkeystrokes_sent_text">Envia %1s al dispositiu %2s</string>
<string name="sendkeystrokes_pref_category_summary">Aquest mòdul permet que les altres aplicacions comparteixin segments de text com a pulsacions de tecla que s\'enviaran a la màquina connectada</string>
<string name="sendkeystrokes_pref_category_title">Envia les pulsacions de tecla</string>
<string name="sendkeystrokes_pref_enabled">Activa l\'enviament de les pulsacions de tecla</string>
<string name="sendkeystrokes_pref_enabled_summary">Escolta per a les dades amb el tipus MIME «text/x-keystrokes»</string>
<string name="sendkeystrokes_safe_text_enabled">Envia immediatament un text segur</string>
<string name="sendkeystrokes_safe_text_enabled_summary">Només envia cadenes curtes numèriques sense confirmació</string>
<string name="pref_plugin_mousepad_send_keystrokes">Envia com a pulsacions de tecla</string>
<string name="mouse_receiver_plugin_description">Rep el moviment del ratolí remot</string>
<string name="mouse_receiver_plugin_name">Receptor del ratolí</string>
<string name="mouse_receiver_no_permissions">Cal que habiliteu el servei Accessibilitat</string>
<string name="category_connected_devices">Dispositius connectats</string>
<string name="category_not_paired_devices">Dispositius disponibles</string>
<string name="category_remembered_devices">Dispositius recordats</string>
<string name="device_menu_plugins">Arranjament dels connectors</string>
<string name="device_menu_unpair">Desaparella</string>
<string name="device_menu_plugins">Arranjament del connector</string>
<string name="device_menu_unpair">Desparella</string>
<string name="pair_new_device">Aparella amb un dispositiu nou</string>
<string name="unknown_device">Dispositiu desconegut</string>
<string name="error_not_reachable">No es pot accedir al dispositiu</string>
@@ -106,8 +89,8 @@
<string name="error_canceled_by_other_peer">Cancel·lat per l\'altre parell</string>
<string name="encryption_info_title">Informació de l\'encriptatge</string>
<string name="encryption_info_msg_no_ssl">L\'altre dispositiu no usa una versió recent del KDE Connect, s\'utilitzarà el mètode d\'encriptatge antic.</string>
<string name="my_device_fingerprint">L\'empremta digital SHA256 del certificat del vostre dispositiu és:</string>
<string name="remote_device_fingerprint">L\'empremta digital SHA256 del certificat del dispositiu remot és:</string>
<string name="my_device_fingerprint">L\'empremta digital SHA1 del certificat del vostre dispositiu és:</string>
<string name="remote_device_fingerprint">L\'empremta digital SHA1 del certificat del dispositiu remot és:</string>
<string name="pair_requested">S\'ha demanat aparellar</string>
<string name="pairing_request_from">S\'ha demanat aparellar des de %1s</string>
<plurals name="incoming_file_title">
@@ -146,8 +129,8 @@
<string name="received_file_text">Toqueu per a obrir «%1s»</string>
<string name="cannot_create_file">No s\'ha pogut crear el fitxer %s</string>
<string name="tap_to_answer">Toqueu per a respondre</string>
<string name="right_click">Envia un clic dret</string>
<string name="middle_click">Envia un clic del mig</string>
<string name="right_click">Envia un clic del botó dret</string>
<string name="middle_click">Envia un clic del botó del mig</string>
<string name="show_keyboard">Mostra el teclat</string>
<string name="device_not_paired">El dispositiu no està aparellat</string>
<string name="request_pairing">Demana aparellar</string>
@@ -174,7 +157,7 @@
<string name="mpris_notification_settings_summary">Permet controlar els reproductors multimèdia sense obrir el KDE Connect</string>
<string name="share_to">Comparteix amb...</string>
<string name="protocol_version_newer">Aquest dispositiu usa una versió nova del protocol</string>
<string name="plugin_settings_with_name">Configuració del %s</string>
<string name="plugin_settings_with_name">Ajustaments del %s</string>
<string name="invalid_device_name">El nom del dispositiu no és vàlid</string>
<string name="shareplugin_text_saved">S\'ha rebut text i s\'ha desat al porta-retalls</string>
<string name="custom_devices_settings">Llista personalitzada de dispositius</string>
@@ -183,7 +166,7 @@
<string name="custom_device_list_help">Si el dispositiu no es detecta automàticament, podeu afegir la seva adreça IP o el nom de la màquina fent clic al botó flotant d\'acció</string>
<string name="custom_device_fab_hint">Afegeix un dispositiu</string>
<string name="undo">Desfés</string>
<string name="share_notification_preference">Notificacions sonores</string>
<string name="share_notification_preference">Rebombori de les notificacions</string>
<string name="share_notification_preference_summary">Vibra i reprodueix un so en rebre un fitxer</string>
<string name="share_destination_customize">Personalitza el directori de destinació</string>
<string name="share_destination_customize_summary_disabled">Els fitxers rebuts apareixeran a Baixades</string>
@@ -243,7 +226,7 @@
<string name="permission_explanation">Aquest connector necessita permisos per a funcionar</string>
<string name="optional_permission_explanation">Us caldrà concedir permisos extres per a accedir a totes les característiques</string>
<string name="plugins_need_optional_permission">Alguns connectors tenen característiques desactivades per la falta de permís (toqueu per a més informació):</string>
<string name="share_optional_permission_explanation">Per a rebre fitxers compartits cal triar un directori de destinació</string>
<string name="share_optional_permission_explanation">Per a compartir fitxers entre el telèfon i l\'escriptori, haureu de donar accés a l\'emmagatzematge del telèfon</string>
<string name="telepathy_permission_explanation">Per a llegir i escriure SMS des de l\'escriptori, haureu de donar permís als SMS</string>
<string name="telephony_permission_explanation">Per a veure les trucades telefòniques des de l\'escriptori, haureu de donar permís d\'accés al registre de trucades telefòniques i a l\'estat del telèfon</string>
<string name="telephony_optional_permission_explanation">Per a veure un nom de contacte en comptes d\'un número de telèfon, haureu de donar permís als contactes del telèfon</string>
@@ -268,13 +251,12 @@
<string name="notification_channel_media_control">Control multimèdia</string>
<string name="notification_channel_filetransfer">Transferència de fitxers</string>
<string name="notification_channel_high_priority">Prioritat alta</string>
<string name="notification_channel_sms_mms">Missatge nou</string>
<string name="mpris_stop">Atura el reproductor actual</string>
<string name="copy_url_to_clipboard">Copia l\'URL al porta-retalls</string>
<string name="clipboard_toast">Copiat al porta-retalls</string>
<string name="runcommand_notreachable">No es pot accedir al dispositiu</string>
<string name="runcommand_notpaired">El dispositiu no està aparellat</string>
<string name="runcommand_nosuchdevice">El dispositiu no existeix</string>
<string name="runcommand_nosuchdevice">No existeix aquest dispositiu</string>
<string name="runcommand_noruncommandplugin">Aquest dispositiu no té el connector d\'executar ordres activat</string>
<string name="pref_plugin_findremotedevice">Cerca el dispositiu remot</string>
<string name="pref_plugin_findremotedevice_desc">Truca al dispositiu remot</string>
@@ -286,11 +268,11 @@
<string name="devices">Dispositius</string>
<string name="settings_rename">Nom del dispositiu</string>
<string name="settings_dark_mode">Tema fosc</string>
<string name="settings_more_settings_title">Més opcions</string>
<string name="settings_more_settings_text">La configuració per dispositiu es pot trobar a «Arranjament dels connectors» des d\'un dispositiu.</string>
<string name="settings_more_settings_title">Més ajustaments</string>
<string name="settings_more_settings_text">Els ajustaments per dispositiu es poden trobar a «Arranjament del connector» des d\'un dispositiu.</string>
<string name="setting_persistent_notification">Mostra les notificacions persistents</string>
<string name="setting_persistent_notification_oreo">Notificacions persistents</string>
<string name="setting_persistent_notification_description">Tocar per a des/activar la configuració de les notificacions</string>
<string name="setting_persistent_notification_description">Tocar per a des/activar els ajustaments de les notificacions</string>
<string name="extra_options">Opcions extres</string>
<string name="privacy_options">Opcions de privadesa</string>
<string name="set_privacy_options">Establiu les opcions de privadesa</string>
@@ -308,28 +290,31 @@
<string name="empty_trusted_networks_list_text">Encara no heu afegit cap xarxa de confiança</string>
<string name="allow_all_networks_text">Permet totes</string>
<string name="location_permission_needed_title">Es requereix permís</string>
<string name="location_permission_needed_desc">L\'Android requereix el permís d\'ubicació per a identificar la xarxa Wi-Fi</string>
<string name="location_permission_needed_desc">L\'Android requereix el permís d\'ubicació per a identificar la xarxa WiFi</string>
<string name="clipboard_android_x_incompat">L\'Android 10 ha tret l\'accés al porta-retalls a totes les aplicacions. Aquest connector estarà inhabilitat.</string>
<string name="mpris_open_url">Continua reproduint aquí</string>
<string name="cant_open_url">No s\'ha pogut obrir l\'URL per a continuar reproduint</string>
<string name="bigscreen_home">Inici</string>
<string name="bigscreen_up">Amunt</string>
<string name="bigscreen_up">Dalt</string>
<string name="bigscreen_left">Esquerra</string>
<string name="bigscreen_select">Selecció</string>
<string name="bigscreen_right">Dreta</string>
<string name="bigscreen_down">Avall</string>
<string name="bigscreen_down">Baix</string>
<string name="bigscreen_mic">Micròfon</string>
<string name="pref_plugin_bigscreen">Bigscreen remota</string>
<string name="pref_plugin_bigscreen_desc">Useu el dispositiu com a remot per a la Bigscreen del Plasma</string>
<string name="bigscreen_optional_permission_explanation">Per a compartir l\'entrada del micròfon del telèfon cal donar accés a l\'entrada d\'àudio del telèfon</string>
<string name="bigscreen_speech_extra_prompt">Veu</string>
<string name="message_reply_label">RESPON</string>
<string name="mark_as_read_label">MARCA COM A LLEGIT</string>
<string name="user_display_name">Vós</string>
<string name="set_default_sms_app_title">Envia un MMS</string>
<string name="set_group_message_as_mms_title">Envia un MMS de grup</string>
<string name="set_long_text_as_mms_title">Envia un text llarg com a MMS</string>
<string name="convert_to_mms_after_title">Converteix a MMS</string>
<string name="sms_pref_set_mmsc_dialog_desc">Estableix el MMSC</string>
<string name="sms_pref_set_mmsc_title">MMSC</string>
<string name="sms_pref_set_mms_proxy_dialog_desc">Estableix el servidor intermediari de MMS</string>
<string name="sms_pref_set_mms_proxy_title">Servidor intermediari de MMS</string>
<string name="sms_pref_set_mms_port_dialog_desc">Estableix el port de MMS</string>
<string name="sms_pref_set_mms_port_title">Port de MMS</string>
<string-array name="convert_to_mms_after_entries">
<item>Després d\'un missatge</item>
<item>Després de dos missatges</item>
@@ -348,8 +333,4 @@
<item>Clar</item>
<item>Fosc</item>
</string-array>
<string name="report_bug">Informa d\'un error</string>
<string name="donate">Donació de diners</string>
<string name="source_code">Codi font</string>
<string name="licenses">Llicències</string>
</resources>

View File

@@ -8,8 +8,6 @@
<string name="pref_plugin_telephony_desc">Posílat upozornění na příchozí hovory</string>
<string name="pref_plugin_battery">Hlášení baterie</string>
<string name="pref_plugin_battery_desc">Periodicky hlásit stav baterky</string>
<string name="pref_plugin_connectivity_report">Hlášení spojení</string>
<string name="pref_plugin_connectivity_report_desc">Nahlásit stav a sílu signálu sítě</string>
<string name="pref_plugin_sftp">Přístup k souborovému systému</string>
<string name="pref_plugin_sftp_desc">Umožní vám vzdáleně prohlížet souborový systém tohoto zařízení</string>
<string name="pref_plugin_clipboard">Synchronizace schránky</string>
@@ -76,21 +74,6 @@
<item>Silná</item>
<item>Nejsilnější</item>
</string-array>
<string name="sendkeystrokes_send_to">Posílat úhozy kláves na</string>
<string name="sendkeystrokes_textbox_hint">Posílat úhozy kláves na hostitele</string>
<string name="sendkeystrokes_disabled_toast">Odesílání stisků klávesnice je zakázáno - povolte jej v nastavení</string>
<string name="sendkeystrokes_wrong_data">Neplatný typ MIME - musí být \'text/x-keystrokes\'</string>
<string name="sendkeystrokes_sent_text">Poslat %1s na zařízení %2s</string>
<string name="sendkeystrokes_pref_category_summary">Tento modul umožňuje ostatním aplikacím sdílet kusy textu jako úhozy kláves, které budou odeslány na jiný připojený stroj</string>
<string name="sendkeystrokes_pref_category_title">Posílat úhozy kláves</string>
<string name="sendkeystrokes_pref_enabled">Povolit odesílání úhozů kláves</string>
<string name="sendkeystrokes_pref_enabled_summary">Naslouchat datům s typem MIME \'text/x-keystrokes\'</string>
<string name="sendkeystrokes_safe_text_enabled">Poslat bezpečný text ihned</string>
<string name="sendkeystrokes_safe_text_enabled_summary">Poslat krátké číselné řetězce bez potvrzení</string>
<string name="pref_plugin_mousepad_send_keystrokes">Posílat jako úhozy kláves</string>
<string name="mouse_receiver_plugin_description">Přijímat vzdálený pohyb myši</string>
<string name="mouse_receiver_plugin_name">Příjemce myši</string>
<string name="mouse_receiver_no_permissions">Musíte povolit Službu Zpřístupnění.</string>
<string name="category_connected_devices">Připojená zařízení</string>
<string name="category_not_paired_devices">Dostupná zařízení</string>
<string name="category_remembered_devices">Zapamatovaná zařízení</string>
@@ -106,8 +89,8 @@
<string name="error_canceled_by_other_peer">Přerušeno druhým uživatelem</string>
<string name="encryption_info_title">Informace o šifrování</string>
<string name="encryption_info_msg_no_ssl">Druhé zařízení nepoužívá poslední verzi KDE connect. Bude použita stará metoda šifrování.</string>
<string name="my_device_fingerprint">Otisk SHA256 certifikátu vašeho zařízení je:</string>
<string name="remote_device_fingerprint">Otisk certifikátu SHA256 vzdáleného zařízení je:</string>
<string name="my_device_fingerprint">Otisk SHA1 certifikátu vašeho zařízení je:</string>
<string name="remote_device_fingerprint">Otisk SHA1 certifikátu vzdáleného zařízení je:</string>
<string name="pair_requested">Bylo vyžádáno párování</string>
<string name="pairing_request_from">Požadavek o párování z %1s</string>
<plurals name="incoming_file_title">
@@ -259,7 +242,7 @@
<string name="permission_explanation">Tento modul potřebuje pro práci povolení</string>
<string name="optional_permission_explanation">Pro zpřístupnění všech funkcí potřebujete další oprávnění</string>
<string name="plugins_need_optional_permission">Některé moduly mají vypnuté vlastnosti, kvůli nedostatečným oprávněním (ťukněte pro více informací):</string>
<string name="share_optional_permission_explanation">Pro příjem souborů je potřeba vybrat cílový adresář</string>
<string name="share_optional_permission_explanation">Pro sdílení souborů mezi telefonem a počítačem potřebujete udělit oprávnění k úložišti telefonu</string>
<string name="telepathy_permission_explanation">Pro čtení a psaní SMS z počítače musíte udělit oprávnění k SMS</string>
<string name="telephony_permission_explanation">Pro zobrazení telefonátů v počítači musíte udělit oprávnění k záznamům telefonování a stavu telefonu</string>
<string name="telephony_optional_permission_explanation">Pro zobrazení jména kontaktu u telefonního čísla je potřeba udělit oprávnění ke kontaktům v telefonu</string>
@@ -284,7 +267,6 @@
<string name="notification_channel_media_control">Ovládání médií</string>
<string name="notification_channel_filetransfer">Přenos souboru</string>
<string name="notification_channel_high_priority">Vysoká priorita</string>
<string name="notification_channel_sms_mms">Nová zpráva</string>
<string name="mpris_stop">Zastavit současný přehrávač</string>
<string name="copy_url_to_clipboard">Kopírovat URL do schránky</string>
<string name="clipboard_toast">Zkopírováno do schránky</string>
@@ -339,13 +321,16 @@
<string name="pref_plugin_bigscreen_desc">Používejte své zařízení jako ovladač pro Plasma Bigscreen</string>
<string name="bigscreen_optional_permission_explanation">Pro sdílení vstupu mikrofonu z vašeho telefonu je potřeba udělit přístup ke vstupnímu audio zařízení telefonu</string>
<string name="bigscreen_speech_extra_prompt">Mluvené slovo</string>
<string name="message_reply_label">ODPOVĚĎ</string>
<string name="mark_as_read_label">OZNAČIT JAKO PŘEČTENÉ</string>
<string name="user_display_name">Vy</string>
<string name="set_default_sms_app_title">Poslat MMS</string>
<string name="set_group_message_as_mms_title">Poslat skupinovou MMS</string>
<string name="set_long_text_as_mms_title">Poslat dlouhý text jako MMS</string>
<string name="convert_to_mms_after_title">Převést na MMS</string>
<string name="sms_pref_set_mmsc_dialog_desc">Nastavit MMSC</string>
<string name="sms_pref_set_mmsc_title">MMSC</string>
<string name="sms_pref_set_mms_proxy_dialog_desc">Nastavit MMS proxy</string>
<string name="sms_pref_set_mms_proxy_title">MMS proxy</string>
<string name="sms_pref_set_mms_port_dialog_desc">Nastavit port MMS</string>
<string name="sms_pref_set_mms_port_title">Port MMS</string>
<string-array name="convert_to_mms_after_entries">
<item>Po jedné zprávě</item>
<item>Po dvou zprávách</item>
@@ -364,8 +349,4 @@
<item>Světlý</item>
<item>Tmavý</item>
</string-array>
<string name="report_bug">Nahlásit chybu</string>
<string name="donate">Přispět</string>
<string name="source_code">Zdrojový kód</string>
<string name="licenses">Licence</string>
</resources>

View File

@@ -74,6 +74,8 @@
<string name="error_canceled_by_other_peer">Annulleret af modpart</string>
<string name="encryption_info_title">Krypteringsinfo</string>
<string name="encryption_info_msg_no_ssl">Den anden enhed bruger ikke en nylig version af KDE Connect, og bruger dermed den forældede krypteringsmetode.</string>
<string name="my_device_fingerprint">SHA1-fingeraftrykket for dit enhedscertifikat er:</string>
<string name="remote_device_fingerprint">SHA1-fingeraftrykket for det eksterne enhedscertifikat er:</string>
<string name="pair_requested">Anmodet om parring</string>
<string name="pairing_request_from">Parringsanmodning fra %1s</string>
<string name="received_file_text">Tap for at åbne \"%1s\"</string>
@@ -137,6 +139,7 @@
<string name="permission_explanation">Dette plugin kræver tilladelser for at virke</string>
<string name="optional_permission_explanation">Du skal give ekstra tilladelser for at aktivere alle funktioner</string>
<string name="plugins_need_optional_permission">Nogle plugins har deaktiverede funktioner pga. manglende tilladelser (tap for mere info):</string>
<string name="share_optional_permission_explanation">For at dele filer mellem din telefon og din desktop skal du give adgang til telefonens datalager.</string>
<string name="telepathy_permission_explanation">For at læse og skrive sms\'er fra din desktop, skal du give tilladelse til sms</string>
<string name="telephony_optional_permission_explanation">For at se et kontaktnavn i stedet for et telefonnummer, skal du give adgang til telefonens kontakter</string>
<string-array name="convert_to_mms_after_entries">

View File

@@ -3,7 +3,6 @@
<string name="kde_connect">KDE Connect</string>
<string name="foreground_notification_no_devices">Keine bestehenden Verbindungen</string>
<string name="foreground_notification_devices">Verbunden mit %s</string>
<string name="foreground_notification_send_clipboard">Zwischenablage senden</string>
<string name="pref_plugin_telephony">Telefon-Integration</string>
<string name="pref_plugin_telephony_desc">Verbundene Geräte bei eingehenden Anrufen benachrichtigen</string>
<string name="pref_plugin_battery">Akkubericht</string>
@@ -12,7 +11,6 @@
<string name="pref_plugin_sftp_desc">Das Durchsuchen des Dateisystems auf verbundenen Geräten erlauben</string>
<string name="pref_plugin_clipboard">Abgleich der Zwischenablage</string>
<string name="pref_plugin_clipboard_desc">Den Inhalt der Zwischenablage mit verbundenen Geräten teilen</string>
<string name="pref_plugin_clipboard_sent">Zwischenablage versendet</string>
<string name="pref_plugin_mousepad">Ferneingabe</string>
<string name="pref_plugin_mousepad_desc">Das Gerät als Touchpad und/oder Tastatur verwenden</string>
<string name="pref_plugin_presenter">Fernbedienung für Präsentationen</string>
@@ -35,7 +33,6 @@
<string name="pref_plugin_sharereceiver_desc">Dateien und Adressen (URLs) mit verbundenen Geräten teilen</string>
<string name="device_list_empty">Keine Geräte</string>
<string name="ok">OK</string>
<string name="sad_ok">OK :(</string>
<string name="cancel">Abbrechen</string>
<string name="open_settings">Einstellungen öffnen</string>
<string name="no_permissions">Sie müssen die Erlaubnis zum Zugriff auf die Benachrichtigungen erteilen</string>
@@ -74,11 +71,6 @@
<item>Stark</item>
<item>Stärkste</item>
</string-array>
<string name="sendkeystrokes_send_to">Tastendruck senden an</string>
<string name="sendkeystrokes_textbox_hint">Tastendruck an Rechner senden</string>
<string name="sendkeystrokes_sent_text">%1s an Gerät %2s senden</string>
<string name="sendkeystrokes_pref_category_title">Tastendrücke senden</string>
<string name="pref_plugin_mousepad_send_keystrokes">Als Tastendruck senden</string>
<string name="category_connected_devices">Verbundene Geräte</string>
<string name="category_not_paired_devices">Verfügbare Geräte</string>
<string name="category_remembered_devices">Gemerkte Geräte</string>
@@ -94,8 +86,8 @@
<string name="error_canceled_by_other_peer">Abbruch durch Gegenstelle</string>
<string name="encryption_info_title">Verschlüsselungsinformationen</string>
<string name="encryption_info_msg_no_ssl">Das andere Gerät verwendet eine ältere Version von KDE Connect. Daher muss eine veraltete Verschlüsselungsmethode verwendet werden</string>
<string name="my_device_fingerprint">Der SHA256-Fingerabdruck Ihres Gerätezertifikats lautet:</string>
<string name="remote_device_fingerprint">Der SHA256-Fingerabdruck des Gerätezertifikats der Gegenstelle lautet:</string>
<string name="my_device_fingerprint">Der SHA1-Fingerabdruck Ihres Gerätezertifikats lautet:</string>
<string name="remote_device_fingerprint">Der SHA1-Fingerabdruck des Gerätezertifikats der Gegenstelle lautet:</string>
<string name="pair_requested">Verbindung angefordert</string>
<string name="pairing_request_from">Kopplungsanfrage von %1s</string>
<plurals name="incoming_file_title">
@@ -130,7 +122,6 @@
<item quantity="one">Die Datei kann nicht an %1$s gesendet werden</item>
<item quantity="other">%2$d der %3$d Dateien können nicht an %1$s gesendet werden</item>
</plurals>
<string name="tap_to_open">Tippen um zu öffnen</string>
<string name="received_file_text">Tippen um „%1s“ zu öffnen</string>
<string name="cannot_create_file">Die Datei %s kann nicht erstellt werden</string>
<string name="tap_to_answer">Zum Antworten tippen</string>
@@ -173,7 +164,7 @@
<string name="undo">Rückgängig machen</string>
<string name="share_notification_preference">Ausführliche Benachrichtigungen</string>
<string name="share_notification_preference_summary">Beim Empfang einer Datei vibrieren und einen Sound abspielen</string>
<string name="share_destination_customize">Zielordner anpassen</string>
<string name="share_destination_customize">Zielverzeichnis anpassen</string>
<string name="share_destination_customize_summary_disabled">Empfangene Dateien werden im Ordner Downloads gespeichert</string>
<string name="share_destination_customize_summary_enabled">Dateien werden im folgenden Verzeichnis gespeichert</string>
<string name="share_destination_folder_preference">Zielverzeichnis</string>
@@ -217,7 +208,6 @@
<string name="no_file_browser">Es sind keine Dateiverwaltungsprogramme installiert</string>
<string name="pref_plugin_telepathy">SMS senden</string>
<string name="pref_plugin_telepathy_desc">SMS von Ihrer Arbeitsfläche senden</string>
<string name="pref_plugin_telepathy_mms">MMS senden</string>
<string name="findmyphone_title">Mein Telefon suchen</string>
<string name="findmyphone_title_tablet">Mein Tablet suchen</string>
<string name="findmyphone_title_tv">Meinen Fernseher suchen</string>
@@ -229,6 +219,7 @@
<string name="permission_explanation">Dieses Modul benötigt zusätzliche Berechtigungen</string>
<string name="optional_permission_explanation">Es müssen weitere Berechtigungen erteilt werden, um alle Funktionen nutzen zu können</string>
<string name="plugins_need_optional_permission">Einige Module haben eingeschränkte Funktionen wegen fehlender Berechtigungen, tippen Sie für weitere Informationen:</string>
<string name="share_optional_permission_explanation">Um Dateien zwischen Rechner und Telefon auszutauschen, muss der Zugriff auf den Telefonspeicher gewährt werden</string>
<string name="telepathy_permission_explanation">Um SMS vom Rechner aus zu lesen und zu versenden, muss der Zugriff auf die SMS-Funktion gewährt werden</string>
<string name="telephony_permission_explanation">Um eingehende Anrufe auf der Arbeitsfläche anzuzeigen, muss der Zugriff auf die Anrufliste und den Telefonstatus gewährt werden</string>
<string name="telephony_optional_permission_explanation">Um einen Namen anstelle der Telefonnummer anzuzeigen, muss der Zugriff auf das Adressbuch gewährt werden</string>
@@ -253,7 +244,6 @@
<string name="notification_channel_media_control">Medienkontrolle</string>
<string name="notification_channel_filetransfer">Dateiübertragung</string>
<string name="notification_channel_high_priority">Hohe Priorität</string>
<string name="notification_channel_sms_mms">Neue Nachricht</string>
<string name="mpris_stop">Die aktuelle Medienwiedergabe beenden</string>
<string name="copy_url_to_clipboard">Adresse in die Zwischenablage kopieren</string>
<string name="clipboard_toast">In die Zwischenablage kopiert</string>
@@ -289,40 +279,22 @@
<string name="presenter_pointer">Laserpointer</string>
<string name="trusted_networks">Vertrauenswürdiges Netzwerk</string>
<string name="add_trusted_network">%1s hinzufügen</string>
<string name="allow_all_networks_text">Alle erlauben</string>
<string name="location_permission_needed_title">Berechtigung erforderlich</string>
<string name="bigscreen_up">Oben</string>
<string name="bigscreen_left">Links</string>
<string name="bigscreen_select">Auswählen</string>
<string name="bigscreen_right">Rechts</string>
<string name="bigscreen_down">Unten</string>
<string name="bigscreen_speech_extra_prompt">Sprache</string>
<string name="message_reply_label">Antworten</string>
<string name="mark_as_read_label">Als gelesen markieren</string>
<string name="user_display_name">Sie</string>
<string name="set_default_sms_app_title">MMS senden</string>
<string name="set_long_text_as_mms_title">Langen Text als MMS senden</string>
<string name="convert_to_mms_after_title">Umwandeln in MMS</string>
<string-array name="convert_to_mms_after_entries">
<item>Nach einer Nachricht</item>
<item>Nach zwei Nachrichten</item>
<item>Nach drei Nachrichten</item>
<item>Nach vier Nachrichten</item>
<item>Nach fünf Nachrichten</item>
<item>After one message</item>
<item>After two messages</item>
<item>After three messages</item>
<item>After four messages</item>
<item>After five messages</item>
</string-array>
<string name="theme_dialog_title">Design auswählen</string>
<string-array name="theme_list">
<item>Set by Battery Saver</item>
<item>Hell</item>
<item>Dunkel</item>
<item/>
<item>Dark</item>
</string-array>
<string-array name="theme_list_v28">
<item>Systemvoreinstellung</item>
<item>Hell</item>
<item>Dunkel</item>
<item/>
<item/>
<item>Dark</item>
</string-array>
<string name="report_bug">Probleme oder Wünsche berichten</string>
<string name="donate">Spenden</string>
<string name="source_code">Quelltext</string>
<string name="licenses">Lizenzen</string>
</resources>

View File

@@ -1,30 +1,20 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="kde_connect">KDE Connect</string>
<string name="foreground_notification_no_devices">Δεν είναι συνδεδεμένο σε συσκευή</string>
<string name="foreground_notification_devices">Συνδεδεμένό σε: %s</string>
<string name="foreground_notification_send_clipboard">Αποστολή προχείρου</string>
<string name="pref_plugin_telephony">Ειδοποιήσεις τηλεφωνίας</string>
<string name="pref_plugin_telephony_desc">Αποστολή ειδοποιήσεων για εισερχόμενες κλήσεις</string>
<string name="pref_plugin_battery">Αναφορά μπαταρίας</string>
<string name="pref_plugin_battery_desc">Περιοδική αναφορά κατάστασης μπαταρίας</string>
<string name="pref_plugin_sftp">Αποκάλυψη συστήματος αρχείων</string>
<string name="pref_plugin_sftp_desc">Επιτρέπει την απομακρυσμένη περιήγηση του συστήματος αρχείων του κινητού</string>
<string name="pref_plugin_clipboard">Συγχρονισμός προχείρου</string>
<string name="pref_plugin_clipboard_desc">Διαμοιρασμός περιεχομένου προχείρου</string>
<string name="pref_plugin_clipboard_sent">Το πρόχειρο εστάλη</string>
<string name="pref_plugin_mousepad">Απομακρυσμένη είσοδος στοιχείων</string>
<string name="pref_plugin_mousepad_desc">Χρήση του τηλεφώνου ή της ταμπλέτας σας ως επιφάνεια αφής και πληκτρολόγιο</string>
<string name="pref_plugin_presenter">Απομακρυσμένος έλεγχος παρουσίασης διαφανειών</string>
<string name="pref_plugin_presenter_desc">Χρησιμοποιήστε τη συσκευή σας για να αλλάξετε διαφάνειες σε μία παρουσίαση</string>
<string name="pref_plugin_remotekeyboard">Λήψη απομακρυσμένων πληκτρολογήσεων</string>
<string name="pref_plugin_remotekeyboard_desc">Λήψη συμβάντων πληκτρολόγησης από απομακρυσμένες συσκευές</string>
<string name="pref_plugin_mpris">Κονσόλα πολυμέσων</string>
<string name="pref_plugin_mpris_desc">Παρέχει ένα τηλεχειριστήριο για την αναπαραγωγή πολυμέσων</string>
<string name="pref_plugin_runcommand">Εκτέλεση εντολής</string>
<string name="pref_plugin_runcommand_desc">Εκτέλεση απομακρυσμένων εντολών από το τηλέφωνο ή την ταμπλέτα</string>
<string name="pref_plugin_contacts">Πρόγραμμα συγχρονισμού επαφών</string>
<string name="pref_plugin_contacts_desc">Επιτρέπει το συγχρονισμό του βιβλίου επαφών της συσκευής</string>
<string name="pref_plugin_ping">Ping</string>
<string name="pref_plugin_ping_desc">Αποστολή και λήψη pings</string>
<string name="pref_plugin_notifications">Συγχρονισμός ειδοποιήσεων</string>
@@ -35,12 +25,9 @@
<string name="pref_plugin_sharereceiver_desc">Διαμοιρασμός αρχείων και URL μεταξύ συσκευών</string>
<string name="device_list_empty">Χωρίς συσκευές</string>
<string name="ok">Εντάξει</string>
<string name="sad_ok">Εντάξει :(</string>
<string name="cancel">Ακύρωση</string>
<string name="open_settings">Ρυθμίσεις ανοίγματος</string>
<string name="no_permissions">Απαιτείται παραχώρηση δικαιωμάτων για την πρόσβαση σε ειδοποιήσεις</string>
<string name="no_permission_mprisreceiver">Για να ελέγξετε τους αναπαραγωγείς πολυμέσων απαιτείται να παραχωρήσετε πρόσβαση στις ειδοποιήσεις</string>
<string name="no_permissions_remotekeyboard">Για να λαμβάνετε πατήματα πλήκτρων απαιτείται να ενεργοποιήσετε το πληκτρολόγιο απομακρυσμένης σύνδεσης του KDE</string>
<string name="send_ping">Αποστολή ping</string>
<string name="open_mpris_controls">Έλεγχος πολυμέσων</string>
<string name="remotekeyboard_editing_only_title">Χειρισμός απομακρυσμένων πλήκτρων μόνο στην επεξεργασία</string>
@@ -48,11 +35,9 @@
<string name="remotekeyboard_connected">Η σύνδεση με απομακρυσμένο πληκτρολόγιο είναι ενεργή</string>
<string name="remotekeyboard_multiple_connections">Υπάρχουν περισσότερες της μίας συνδέσεις με απομακρυσμένο πληκτρολόγιο, επιλέξτε ποια συσκευή θα διαμορφώσετε</string>
<string name="open_mousepad">Απομακρυσμένη είσοδος στοιχείων</string>
<string name="mousepad_info">Μετακινείστε το δάκτυλο στην οθόνη για να μετακινηθεί ο δρομέας του ποντικιού. Χτυπήστε για κλικ και χρησιμοποιήστε δύο/τρία δάκτυλα για δεξί και μεσαίο κλικ. Χρησιμοποιήστε 2 δάκτυλα για κύλιση. Πιέστε με διάρκεια για μετακίνηση και απόθεση.</string>
<string name="mousepad_double_tap_settings_title">Ρύθμιση δύο δακτύλων για την ενέργεια χτυπήματος</string>
<string name="mousepad_triple_tap_settings_title">Ρύθμιση τριών δακτύλων για την ενέργεια χτυπήματος</string>
<string name="mousepad_sensitivity_settings_title">Ρύθμιση ευαισθησίας της οθόνης αφής</string>
<string name="mousepad_acceleration_profile_settings_title">Ρύθμιση επιτάχυνσης δείκτη</string>
<string name="mousepad_scroll_direction_title">Κατεύθυνση ανάστροφης κύλησης</string>
<string-array name="mousepad_tap_entries">
<item>Δεξί κλικ</item>
@@ -67,12 +52,12 @@
<item>Το ταχύτερο</item>
</string-array>
<string-array name="mousepad_acceleration_profile_entries">
<item>Χωρίς επιτάχυνση</item>
<item>Η πιο αδύναμη</item>
<item>Πιο αδύναμη</item>
<item>Μέση</item>
<item>Πιο δυνατή</item>
<item>Η πιο δυνατή</item>
<item>No Acceleration</item>
<item>Weakest</item>
<item>Weaker</item>
<item>Medium</item>
<item>Stronger</item>
<item>Strongest</item>
</string-array>
<string name="category_connected_devices">Συνδεδεμένες συσκευές</string>
<string name="category_not_paired_devices">Διαθέσιμες συσκευές</string>
@@ -89,44 +74,11 @@
<string name="error_canceled_by_other_peer">Ακυρώθηκε από άλλον χρήστη</string>
<string name="encryption_info_title">Πληροφορίες κρυπτογράφησης</string>
<string name="encryption_info_msg_no_ssl">Η άλλη συσκευή δεν χρησιμοποιεί μια πρόσφατη έκδοση του KDE Connect, θα χρησιμοποιηθεί η παλαιά μέθοδος κρυπτογράφησης.</string>
<string name="remote_device_fingerprint">Το ίχνος SHA256 του πιστοποιητικού της απομακρυσμένης συσκευής είναι:</string>
<string name="my_device_fingerprint">Το ίχνος SHA1 του πιστοποιητικού της συσκευής σας είναι:</string>
<string name="remote_device_fingerprint">Το ίχνος SHA1 του πιστοποιητικού της απομακρυσμένης συσκευής είναι:</string>
<string name="pair_requested">Ζητήθηκε σύζευξη</string>
<string name="pairing_request_from">Αίτημα σύζευξης από %1s</string>
<plurals name="incoming_file_title">
<item quantity="one">Ελήφθη %1$d αρχείο από %2$s`</item>
<item quantity="other">Ελήφθησαν %1$d αρχεία από %2$s</item>
</plurals>
<plurals name="incoming_files_text">
<item quantity="one">Αρχείο: %1s</item>
<item quantity="other">(Αρχείο %2$d από %3$d) : %1$s</item>
</plurals>
<plurals name="outgoing_file_title">
<item quantity="one">Αποστολή %1$d αρχείου σε %2$s</item>
<item quantity="other">Αποστολή %1$d αρχείων σε %2$s</item>
</plurals>
<plurals name="outgoing_files_text">
<item quantity="one">Αρχείο: %1$s</item>
<item quantity="other">(Αρχείο %2$d από %3$d) : %1$s</item>
</plurals>
<plurals name="received_files_title">
<item quantity="one">Ελήφθη αρχείο από %1$s</item>
<item quantity="other">Ελήφθησαν %2$d αρχεία από %1$s</item>
</plurals>
<plurals name="received_files_fail_title">
<item quantity="one">Αποτυχία λήψης αρχείου από %1$s</item>
<item quantity="other">Αποτυχία λήψης %2$d από %3$d αρχείου από %1$s</item>
</plurals>
<plurals name="sent_files_title">
<item quantity="one">Εστάλη αρχείο στο %1$s</item>
<item quantity="other">Εστάλησαν %2$d αρχεία στο %1$s</item>
</plurals>
<plurals name="send_files_fail_title">
<item quantity="one">Αποτυχία αποστολής αρχείου στο %1$s</item>
<item quantity="other">Αποτυχία αποστολής %2$d σπό %3$d αρχείων στο %1$s</item>
</plurals>
<string name="tap_to_open">Χτυπήστε για άνοιγμα</string>
<string name="received_file_text">Χτυπήστε για άνοιγμα \'%1s\'</string>
<string name="cannot_create_file">Αδυναμία δημιουργίας αρχείου %s</string>
<string name="tap_to_answer">Χτυπήστε για να απαντήσετε</string>
<string name="right_click">Αποστολή δεξιού κλικ</string>
<string name="middle_click">Αποστολή μεσαίου κλικ</string>
@@ -135,16 +87,13 @@
<string name="request_pairing">Αίτημα σύζευξης</string>
<string name="pairing_accept">Αποδοχή</string>
<string name="pairing_reject">Απόρριψη</string>
<string name="settings">Ρυθμίσεις</string>
<string name="mpris_play">Αναπαραγωγή</string>
<string name="mpris_pause">Παύση</string>
<string name="mpris_previous">Προηγούμενο</string>
<string name="mpris_rew">Ταχεία ώθηση όπισθεν</string>
<string name="mpris_ff">Ταχεία προώθηση</string>
<string name="mpris_next">Επόμενο</string>
<string name="mpris_volume">Τόμος</string>
<string name="mpris_time_settings_title">Κουμπιά ταχείας ώθησης</string>
<string name="mpris_time_settings_summary">Χρονική προσαρμογή ταχείας ώθησης ανάλογα με την πίεση</string>
<string-array name="mpris_time_entries">
<item>10 seconds</item>
<item>20 seconds</item>
@@ -152,53 +101,24 @@
<item>1 λεπτό</item>
<item>2 λεπτά</item>
</string-array>
<string name="mpris_notification_settings_title">Εμφάνιση ειδοποίησης κονσόλας πολυμέσων</string>
<string name="mpris_notification_settings_summary">Να επιτρέπεται ο έλεγχος των αναπαραφωγέων πολυμέσων χωρίς άνοιγμα του KDE Connect</string>
<string name="share_to">Διαμοιρασμός με…</string>
<string name="protocol_version_newer">Η συσκευή αυτή χρησιμοποιεί νεότερη έκδοση πρωτοκόλλου</string>
<string name="plugin_settings_with_name">%s ρυθμίσεις</string>
<string name="invalid_device_name">Μη έγκυρο όνομα συσκευής</string>
<string name="shareplugin_text_saved">Ελήφθη κείμενο, αποθηκεύτηκε στο πρόχειρο</string>
<string name="custom_devices_settings">Προσαρμοσμένη λίστα συσκευών</string>
<string name="custom_device_list">Προσθήκη συσκευών ανά IP</string>
<string name="custom_device_deleted">Η προσαρμοσμένη λίστα διαγράφηκε</string>
<string name="custom_device_list_help">Αν η συσκευή σας δεν εντοπίζεται αυτόματα μπορείτε να προσθέσετε την IP διεύθυνσή της ή το όνομά της με κλικ στο κουμπί αιωρούμενης ενέργειας</string>
<string name="custom_device_fab_hint">Προσθήκη συσκευής</string>
<string name="undo">Αναίρεση</string>
<string name="share_notification_preference">Θορυβώδεις ειδοποιήσεις</string>
<string name="share_notification_preference_summary">Δόνηση και ηχητική ένδειξη με τη λήψη αρχείου</string>
<string name="share_destination_customize">Προσαρμογή καταλόγου προορισμού</string>
<string name="share_destination_customize_summary_disabled">Τα ληφθέντα αρχεία θα εμφανίζονται στις Λήψεις</string>
<string name="share_destination_customize_summary_enabled">Τα αρχεία θα αποθηκεύονται στον παρακάτω κατάλογο</string>
<string name="share_destination_folder_preference">Κατάλογος προορισμού</string>
<string name="share">Διαμοιρασμός</string>
<string name="share_received_file">Διαμοιρασμός «%s»</string>
<string name="title_activity_notification_filter">Φιλτράρισμα ειδοποιήσεων</string>
<string name="filter_apps_info">Οι ειδοποιήσεις θα συγχρονίζονται για επιλεγμένες εφαρμογές.</string>
<string name="sftp_sdcard_num">SD card %d</string>
<string name="sftp_sdcard">SD card</string>
<string name="sftp_readonly">(ανάγνωση μόνο)</string>
<string name="sftp_camera">Φωτογραφίες</string>
<string name="add_device_dialog_title">Προσθήκη συσκευής</string>
<string name="add_device_hint">Όνομα ή IP διεύθυνση</string>
<string name="sftp_preference_detected_sdcards">Εντοπισμένες SD κάρτες</string>
<string name="sftp_preference_edit_sdcard_title">Επεξεργασία SD κάρτας</string>
<string name="sftp_preference_configured_storage_locations">Διαμορφωμένες τοποθεσίες αποθήκης</string>
<string name="sftp_preference_add_storage_location_title">Προσθήκη τοποθεσίας αποθήκης</string>
<string name="sftp_preference_edit_storage_location">Επεξεργασία τοποθεσίας αποθήκης</string>
<string name="sftp_preference_add_camera_shortcut">Προσθήκη συντόμευσης φακέλου κάμερας</string>
<string name="sftp_preference_add_camera_shortcut_summary_on">Προσθήκη συντόμευσης στο φάκελο της κάμερας</string>
<string name="sftp_preference_add_camera_shortcut_summary_off">Να μην προστεθεί συντόμευση στο φάκελο της κάμερας</string>
<string name="sftp_storage_preference_storage_location">Τοποθεσία αποθήκης</string>
<string name="sftp_storage_preference_storage_location_already_configured">Αυτή η τοποθεσία έχει ήδη διαμορφωθεί</string>
<string name="sftp_storage_preference_click_to_select">κλικ για επιλογή</string>
<string name="sftp_storage_preference_display_name">Όνομα οθόνης</string>
<string name="sftp_storage_preference_display_name_already_used">Αυτό το όνομα οθόνης είναι σε χρήση</string>
<string name="sftp_storage_preference_display_name_cannot_be_empty">Το όνομα οθόνης δε γίνεται να είναι κενό</string>
<string name="sftp_action_mode_menu_delete">Διαγραφή</string>
<string name="sftp_no_sdcard_detected">Δεν εντοπίστηκε SD κάρτα</string>
<string name="sftp_no_storage_locations_configured">Δεν διαμορφώθηκαν τοποθεσίες αποθήκης</string>
<string name="sftp_saf_permission_explanation">Για να έχετε απομακρυσμένη πρόσβαση σε αρχεία απαιτείται να διαμορφώσετε τοποθεσίες αποθήκης</string>
<string name="no_players_connected">Δεν βρέθηκαν συσκευές αναπαραγωγής</string>
<string name="send_files">Αποστολή αρχείων</string>
<string name="pairing_title">Συσκευές KDE Connect</string>
@@ -207,127 +127,36 @@
<string name="device_rename_confirm">Μετονομασία</string>
<string name="refresh">Ανανέωση</string>
<string name="unreachable_description">Αυτή η συζευγμένη συσκευή δεν είναι προσβάσιμη. Βεβαιωθείτε ότι είναι συνδεδεμένη στο δίκτυό σας.</string>
<string name="no_wifi">Δεν είστε συνδεδεμένοι σε ασύρματο δίκτυο, έτσι ίσως να μη βλέπετε καμία συσκευή.Κάνετε κλικ εδώ για να ενεργοποιήσετε το Wi-Fi.</string>
<string name="on_non_trusted_message">Δεν είστε σε έμπιστο δίκτυο: ο αυτόματος εντοπισμός είναι ανενεργός.</string>
<string name="no_file_browser">Δεν υπάρχουν εγκατεστημένοι περιηγητές αρχείων.</string>
<string name="pref_plugin_telepathy">Αποστολή SMS</string>
<string name="pref_plugin_telepathy_desc">Αποστολή μηνυμάτων κειμένου από τον υπολογιστή σας</string>
<string name="pref_plugin_telepathy_mms">Αποστολή MMS</string>
<string name="pref_plugin_telepathy_mms_desc">Για να μπορείτε να στέλνετε MMS από το KDE Connect απαιτείται να το ρυθμίσετε ως την προκαθορισμένη εφαρμογή για SMS.</string>
<string name="findmyphone_title">Αναζήτηση του κινητού μου</string>
<string name="findmyphone_title_tablet">Αναζήτηση του πινακίου μου</string>
<string name="findmyphone_title_tv">Αναζήτηση της τηλεόρασής μου</string>
<string name="findmyphone_title_tablet">Εύρεση της ταμπλέτας μου</string>
<string name="findmyphone_description">Καλεί αυτή τη συσκευή ώστε να την εντοπίσετε</string>
<string name="findmyphone_found">Βρέθηκε</string>
<string name="open">Άνοιγμα</string>
<string name="close">Κλείσιμο</string>
<string name="plugins_need_permission">Κάποια πρόσθετα απαιτούν δικαιώματα για να λειτουργήσουν (χτυπήστε για περισσότερες πληροφορίες):</string>
<string name="permission_explanation">Αυτό το πρόσθετο χρειάζεται δικαιώματα για να λειτουργήσει</string>
<string name="optional_permission_explanation">Απαιτείται παραχώρηση επιπλέον δικαιωμάτων για την ενεργοποίηση όλων των λειτουργιών</string>
<string name="plugins_need_optional_permission">Κάποια πρόσθετα έχουν λειτουργίες ανενεργές εξαιτίας της απουσίας δικαιωμάτων (χτυπήστε για περισσότερες πληροφορίες):</string>
<string name="share_optional_permission_explanation">Για να λάβετε κοινόχρηστα αρχεία πρέπει να επιλέξετε έναν κατάλογο προορισμού</string>
<string name="share_optional_permission_explanation">Για το διαμοιρασμό αρχείων ανάμεσα στο τηλέφωνο και τον υπολογιστή σας χρειάζεται να παραχωρήσετε πρόσβαση στον αποθηκευτικό χώρο του τηλεφώνου σας</string>
<string name="telepathy_permission_explanation">Για να διαβάσετε και να γράψετε SMS από την επιφάνεια εργασίας, χρειάζεται να δώσετε δικαιώματα στο SMS</string>
<string name="telephony_permission_explanation">Για να δείτε τηλεφωνικές κλήσεις στην επιφάνεια εργασίας απαιτείται να παραχωρήσετε δικαιώματα σε καταγραφές τηλεφωνικών κλήσεων και στην κατάσταση του τηλεφώνου</string>
<string name="telephony_optional_permission_explanation">Για να δείτε το όνομα επαφής αντί για τον αριθμό κλήσης χρειάζεται να παραχωρήσετε πρόσβαση στις επαφές στο τηλέφωνο</string>
<string name="contacts_permission_explanation">Για να μοιραστείτε το βιβλίο επαφών σας με την επιφάνεια εργασίας, απαιτείται να δώσετε δικαιώματα στις επαφές</string>
<string name="select_ringtone">Επιλογή ήχου κλήσης</string>
<string name="telephony_pref_blocked_title">Αριθμοί σε φραγή</string>
<string name="telephony_pref_blocked_dialog_desc">Να μην εμφανίζονται κλήσεις ή SMS από αυτούς τους αριθμούς. Καθορίστε έναν αριθμό ανά γραμμή</string>
<string name="mpris_coverart_description">Καλλιτεχνικό εξώφυλλο των πολυμέσων</string>
<string name="device_icon_description">Εικονίδιο συσκευής</string>
<string name="settings_icon_description">Εικονίδιο ρυθμίσεων</string>
<string name="presenter_fullscreen">Πλήρης οθόνη</string>
<string name="presenter_exit">Έξοδος από την παρουσίαση</string>
<string name="presenter_lock_tip">Μπορείτε να κλειδώσετε τη συσκευή σας και να χρησιμοποιήσετε τα πλήκτρα της έντασης για να μεταβείτε σε προηγούμενη/επόμενη διαφάνεια</string>
<string name="add_command">Προσθήκη εντολής</string>
<string name="addcommand_explanation">Δεν υπάρχουν καταχωρημένες εντολές</string>
<string name="addcommand_explanation2">Μπορείτε να προσθέσετε νέες εντολές στις ρυθμίσεις συστήματος του KDE Connect</string>
<string name="add_command_description">Μπορείτε να προσθέσετε εντολές στην επιφάνεια εργασίας</string>
<string name="pref_plugin_mprisreceiver">Κονσόλα αναπαραγωγέα πολυμέσων</string>
<string name="pref_plugin_mprisreceiver_desc">Ελέγξτε τους αναπαραγωγείς πολυμέσων του τηλεφώνου σας από άλλη συσκευή</string>
<string name="notification_channel_default">Άλλες ειδοποιήσεις</string>
<string name="notification_channel_persistent">Μόνιμος δείκτης</string>
<string name="notification_channel_media_control">Κονσόλα πολυμέσων</string>
<string name="notification_channel_filetransfer">Μεταφορά αρχείου</string>
<string name="notification_channel_high_priority">Υψηλής προτεραιότητας</string>
<string name="notification_channel_sms_mms">Νέο μήνυμα</string>
<string name="mpris_stop">Διακοπή του τρέχοντος αναπαραγωγέα</string>
<string name="copy_url_to_clipboard">Αντιγραφή του URL στο πρόχειρο</string>
<string name="clipboard_toast">Έγινε αντιγραφή στο πρόχειρο</string>
<string name="runcommand_notreachable">Η συσκευή δεν είναι προσβάσιμη</string>
<string name="runcommand_notpaired">Η συσκευή δεν συζεύχθηκε</string>
<string name="runcommand_nosuchdevice">Δεν υπάρχει τέτοια συσκευή</string>
<string name="runcommand_noruncommandplugin">Αυτή η συσκευή δεν έχει ενεργοποιημένο το πρόσθετο εκτέλεσης εντολής</string>
<string name="pref_plugin_findremotedevice">Εύρεση απομακρυσμένης συσκευής</string>
<string name="pref_plugin_findremotedevice_desc">Ενεργοποιήστε τον ήχο κλήσης της απομακρυσμένης συσκευής σας</string>
<string name="ring">Ήχος κλήσης</string>
<string name="pref_plugin_systemvolume">Ένταση συστήματος</string>
<string name="pref_plugin_systemvolume_desc">Ελέγξτε την ένταση του συστήματος της απομακρυσμένης συσκευής</string>
<string name="mute">Σίγαση</string>
<string name="all">Όλα</string>
<string name="devices">Συσκευές</string>
<string name="settings_rename">Όνομα συσκευής</string>
<string name="settings_dark_mode">Σκούρο θέμα</string>
<string name="settings_more_settings_title">Περισσότερες ρυθμίσεις</string>
<string name="settings_more_settings_text">Ρυθμίσεις ανά συσκευή είναι στο \'Ρυθμίσεις προσθέτων\' μέσα από τη συσκευή.</string>
<string name="setting_persistent_notification">Εμφάνιση μόνιμων ειδοποιήσεων</string>
<string name="setting_persistent_notification_oreo">Μόνιμες ειδοποιήσεις</string>
<string name="setting_persistent_notification_description">Χτύπημα για (απ)ενεργοποίηση στις ρυμίσεις ειδοποιήσεων</string>
<string name="extra_options">Επιπλέον επιλογές</string>
<string name="privacy_options">Επιλογές ιδιωτικού απορρήτου</string>
<string name="set_privacy_options">Ρύθμιση επιλογών ιδιωτικού απορρήτου</string>
<string name="block_contents">Φραγή περιεχομένου ειδοποιήσεων</string>
<string name="block_images">Φραγή εικόνων σε ειδοποιήσεις</string>
<string name="notification_channel_receivenotification">Ειδοποιήσεις από άλλες συσκευές</string>
<string name="take_picture">Εκτέλεση κάμερας</string>
<string name="plugin_photo_desc">Εκτέλεση της εφαρμογής κάμερας για διευκόλυνση στη λήψη και μεταφορά φωτογραφιών</string>
<string name="no_app_for_opening">Δεν βρέθηκε κατάλληλη εφαρμογή για το άνοιγμα αυτού του αρχείου</string>
<string name="remote_keyboard_service">Απομακρυσμένο πληκτρολόγιο KDE Connect</string>
<string name="presenter_pointer">Δείκτης</string>
<string name="trusted_networks">Έμπιστα δίκτυα</string>
<string name="trusted_networks_desc">Να περιοριστεί η αυτόματη ανακάλυψη σε γνωστά δίκτυα</string>
<string name="add_trusted_network">Προσθήκη %1s</string>
<string name="empty_trusted_networks_list_text">Δεν έχετε προσθέσει ακόμη κάποιο έμπιστο δίκτυο</string>
<string name="allow_all_networks_text">Να επιτρέπονται όλα</string>
<string name="location_permission_needed_title">Απαιτείται πρόσβαση</string>
<string name="location_permission_needed_desc">Το android απαιτεί το δικαίωμα πρόσβασης στην τοποθεσία για να αναγνωρίσει το WiFI δίκτυό σας</string>
<string name="clipboard_android_x_incompat">Το android έχει αφαιρέσει την πρόσβαση στο πρόχειρο από όλες τις εφαρμογές. Αυτό το πρόσθετο θα απενεργοποιηθεί.</string>
<string name="mpris_open_url">Συνεχίστε να παίζετε εδώ</string>
<string name="cant_open_url">Αδυναμία ανοίγματος URL για να συνεχίσετε να παίζετε</string>
<string name="bigscreen_home">Αρχική</string>
<string name="bigscreen_up">Επάνω</string>
<string name="bigscreen_left">Αριστερά</string>
<string name="bigscreen_select">Επιλογή</string>
<string name="bigscreen_right">Δεξιά</string>
<string name="bigscreen_down">Κάτω</string>
<string name="bigscreen_mic">Μικ</string>
<string name="pref_plugin_bigscreen">Απομακρυσμένη μεγάλη οθόνη</string>
<string name="pref_plugin_bigscreen_desc">Χρησιμοποιήστε τη συσκευή σας ως απομακρυσμένη για το Plasma Bigscreen</string>
<string name="bigscreen_optional_permission_explanation">Για να μοιραστείτε την είσοδο του μικροφώνου από το τηλέφωνό σας απαιτείται να παραχωρήσετε πρόσβαση στην είσοδο ήχου του τηλεφώνου</string>
<string name="bigscreen_speech_extra_prompt">Ομιλία</string>
<string name="message_reply_label">ΑΠΑΝΤΗΣΗ</string>
<string name="mark_as_read_label">ΝΑ ΣΗΜΕΙΩΘΕΙ ΩΣ ΑΝΑΓΝΩΣΜΕΝΟ</string>
<string name="user_display_name">Εσείς</string>
<string name="set_default_sms_app_title">Αποστολή MMS</string>
<string name="set_group_message_as_mms_title">Αποστολή MMS σε ομάδα</string>
<string name="set_long_text_as_mms_title">Αποστολή μεγάλου κειμένου ως MMS</string>
<string name="convert_to_mms_after_title">Μετατροπή σε MMS</string>
<string-array name="convert_to_mms_after_entries">
<item>Μετά από ένα μήνυμα</item>
<item>Μετά από δύο μηνύματα</item>
<item>Μετά από τρία μηνύματα</item>
<item>Μετά από τέσσερα μηνύματα</item>
<item>Μετά από πέντε μηνύματα</item>
<item>After one message</item>
<item>After two messages</item>
<item>After three messages</item>
<item>After four messages</item>
<item>After five messages</item>
</string-array>
<string name="theme_dialog_title">Επιλογή θέματος</string>
<string-array name="theme_list">
<item>Ρύθμιση με την εξοικονόμηση μπαταρίας</item>
<item>Φωτεινό</item>
<item>Σκούρο</item>
<item>Set by Battery Saver</item>
<item/>
<item>Dark</item>
</string-array>
<string-array name="theme_list_v28">
<item>Προκαθορισμένο συστήματος</item>
<item>Φωτεινό</item>
<item>Σκούρο</item>
<item/>
<item/>
<item>Dark</item>
</string-array>
</resources>

View File

@@ -8,8 +8,6 @@
<string name="pref_plugin_telephony_desc">Send notifications for incoming calls</string>
<string name="pref_plugin_battery">Battery report</string>
<string name="pref_plugin_battery_desc">Periodically report battery status</string>
<string name="pref_plugin_connectivity_report">Connectivity report</string>
<string name="pref_plugin_connectivity_report_desc">Report network signal strength and status</string>
<string name="pref_plugin_sftp">Filesystem expose</string>
<string name="pref_plugin_sftp_desc">Allows to browse this device\'s filesystem remotely</string>
<string name="pref_plugin_clipboard">Clipboard sync</string>
@@ -76,18 +74,6 @@
<item>Stronger</item>
<item>Strongest</item>
</string-array>
<string name="sendkeystrokes_send_to">Send keystrokes to</string>
<string name="sendkeystrokes_textbox_hint">Send keystrokes to host</string>
<string name="sendkeystrokes_disabled_toast">Sending keystrokes is disabled - enable it in the settings</string>
<string name="sendkeystrokes_wrong_data">Invalid mime type - needs to be \'text/x-keystrokes\'</string>
<string name="sendkeystrokes_sent_text">Sent %1s to device %2s</string>
<string name="sendkeystrokes_pref_category_summary">This module allows other apps to share text segments as keystrokes which will get send to the connected host</string>
<string name="sendkeystrokes_pref_category_title">Send Keystrokes</string>
<string name="sendkeystrokes_pref_enabled">Enable Keystrokes sending</string>
<string name="sendkeystrokes_pref_enabled_summary">Listen for data with mime type \'text/x-keystrokes\'</string>
<string name="sendkeystrokes_safe_text_enabled">Send safe text immediately</string>
<string name="sendkeystrokes_safe_text_enabled_summary">Send short only-numeric strings without confirmation</string>
<string name="pref_plugin_mousepad_send_keystrokes">Send as keystrokes</string>
<string name="category_connected_devices">Connected devices</string>
<string name="category_not_paired_devices">Available devices</string>
<string name="category_remembered_devices">Remembered devices</string>
@@ -103,7 +89,8 @@
<string name="error_canceled_by_other_peer">Cancelled by other peer</string>
<string name="encryption_info_title">Encryption Info</string>
<string name="encryption_info_msg_no_ssl">The other device doesn\'t use a recent version of KDE Connect, using the legacy encryption method.</string>
<string name="remote_device_fingerprint">SHA256 fingerprint of remote device certificate is:</string>
<string name="my_device_fingerprint">SHA1 fingerprint of your device certificate is:</string>
<string name="remote_device_fingerprint">SHA1 fingerprint of remote device certificate is:</string>
<string name="pair_requested">Pair requested</string>
<string name="pairing_request_from">Pairing request from %1s</string>
<plurals name="incoming_file_title">
@@ -226,8 +213,6 @@
<string name="no_file_browser">There are no file browsers installed.</string>
<string name="pref_plugin_telepathy">Send SMS</string>
<string name="pref_plugin_telepathy_desc">Send text messages from your desktop</string>
<string name="pref_plugin_telepathy_mms">Send MMS</string>
<string name="pref_plugin_telepathy_mms_desc">To be able to send MMS from KDE Connect you need to set it as the default SMS app.</string>
<string name="findmyphone_title">Find my phone</string>
<string name="findmyphone_title_tablet">Find my tablet</string>
<string name="findmyphone_title_tv">Find my TV</string>
@@ -239,7 +224,7 @@
<string name="permission_explanation">This plugin needs permissions to work</string>
<string name="optional_permission_explanation">You need to grant extra permissions to enable all functions</string>
<string name="plugins_need_optional_permission">Some plugins have features disabled because of lack of permission (tap for more info):</string>
<string name="share_optional_permission_explanation">To receive shared files you need to choose a destination directory</string>
<string name="share_optional_permission_explanation">To share files between your phone and your desktop you need to give access to the phone\'s storage</string>
<string name="telepathy_permission_explanation">To read and write SMS from your desktop you need to give permission to SMS</string>
<string name="telephony_permission_explanation">To see phone calls on the desktop you need to give permission to phone call logs and phone state</string>
<string name="telephony_optional_permission_explanation">To see a contact name instead of a phone number you need to give access to the phone\'s contacts</string>
@@ -264,7 +249,6 @@
<string name="notification_channel_media_control">Media control</string>
<string name="notification_channel_filetransfer">File transfer</string>
<string name="notification_channel_high_priority">High priority</string>
<string name="notification_channel_sms_mms">New Message</string>
<string name="mpris_stop">Stop the current player</string>
<string name="copy_url_to_clipboard">Copy URL to clipboard</string>
<string name="clipboard_toast">Copied to clipboard</string>
@@ -319,13 +303,6 @@
<string name="pref_plugin_bigscreen_desc">Use your device as a remote for Plasma Bigscreen</string>
<string name="bigscreen_optional_permission_explanation">To share microphone input from your phone you need to give access to the phone\'s audio input</string>
<string name="bigscreen_speech_extra_prompt">Speech</string>
<string name="message_reply_label">REPLY</string>
<string name="mark_as_read_label">MARK AS READ</string>
<string name="user_display_name">You</string>
<string name="set_default_sms_app_title">Send MMS</string>
<string name="set_group_message_as_mms_title">Send group MMS</string>
<string name="set_long_text_as_mms_title">Send long text as MMS</string>
<string name="convert_to_mms_after_title">Convert to MMS</string>
<string-array name="convert_to_mms_after_entries">
<item>After one message</item>
<item>After two messages</item>
@@ -339,13 +316,4 @@
<item>Light</item>
<item>Dark</item>
</string-array>
<string-array name="theme_list_v28">
<item>System Default</item>
<item>Light</item>
<item>Dark</item>
</string-array>
<string name="report_bug">Report Bug</string>
<string name="donate">Donate</string>
<string name="source_code">Source Code</string>
<string name="licenses">Licences</string>
</resources>

View File

@@ -8,8 +8,6 @@
<string name="pref_plugin_telephony_desc">Enviar notificaciones por llamadas entrantes</string>
<string name="pref_plugin_battery">Informe de la batería</string>
<string name="pref_plugin_battery_desc">Informar periódicamente del estado de la batería</string>
<string name="pref_plugin_connectivity_report">Informe de conectividad</string>
<string name="pref_plugin_connectivity_report_desc">Informe de fuerza de la señal de red y su estado</string>
<string name="pref_plugin_sftp">Mostrar el sistema de archivos</string>
<string name="pref_plugin_sftp_desc">Permite examinar de forma remota el sistema de archivos de este dispositivo</string>
<string name="pref_plugin_clipboard">Sincronización del portapapeles</string>
@@ -76,21 +74,6 @@
<item>Fuerte</item>
<item>Más fuerte</item>
</string-array>
<string name="sendkeystrokes_send_to">Enviar pulsaciones a</string>
<string name="sendkeystrokes_textbox_hint">Enviar pulsaciones al servidor</string>
<string name="sendkeystrokes_disabled_toast">Enviar pulsaciones está desactivado - activelo en las preferencias</string>
<string name="sendkeystrokes_wrong_data">Tipo mime inválido - necesita ser «text/x-keystrokes»</string>
<string name="sendkeystrokes_sent_text">Enviado %1s al dispositivo %2s</string>
<string name="sendkeystrokes_pref_category_summary">Este módulo permite a otras aplicaciones compartir extractos de texto como pulsaciones que son enviadas al servidor conectado</string>
<string name="sendkeystrokes_pref_category_title">Enviar pulsaciones</string>
<string name="sendkeystrokes_pref_enabled">Activar el envío de pulsaciones</string>
<string name="sendkeystrokes_pref_enabled_summary">Escuchar datos con tipo mime «text/x-keystrokes»</string>
<string name="sendkeystrokes_safe_text_enabled">"Envío inmediato de texto seguro "</string>
<string name="sendkeystrokes_safe_text_enabled_summary">Enviar cadenas numéricas cortas sin confirmación</string>
<string name="pref_plugin_mousepad_send_keystrokes">Enviar como pulsaciones</string>
<string name="mouse_receiver_plugin_description">Recibir el movimiento de un ratón remoto</string>
<string name="mouse_receiver_plugin_name">Receptor del ratón</string>
<string name="mouse_receiver_no_permissions">Necesita activar el servicio de accesibilidad</string>
<string name="category_connected_devices">Dispositivos conectados</string>
<string name="category_not_paired_devices">Dispositivos disponibles</string>
<string name="category_remembered_devices">Dispositivos recordados</string>
@@ -106,8 +89,8 @@
<string name="error_canceled_by_other_peer">Cancelado por la otra parte</string>
<string name="encryption_info_title">Información de cifrado</string>
<string name="encryption_info_msg_no_ssl">El otro dispositivo no dispone de una versión reciente de KDE Connect, se usará un método de cifrado antiguo.</string>
<string name="my_device_fingerprint">La huella digital SHA256 del certificado de su dispositivo es:</string>
<string name="remote_device_fingerprint">La huella digital SHA256 del certificado del dispositivo remoto es:</string>
<string name="my_device_fingerprint">La huella digital SHA1 del certificado de su dispositivo es:</string>
<string name="remote_device_fingerprint">La huella digital SHA1 del certificado del dispositivo remoto es:</string>
<string name="pair_requested">Vinculación solicitada</string>
<string name="pairing_request_from">Solicitud de vinculación de %1s</string>
<plurals name="incoming_file_title">
@@ -230,8 +213,6 @@
<string name="no_file_browser">No hay navegadores de archivos instalados.</string>
<string name="pref_plugin_telepathy">Enviar SMS</string>
<string name="pref_plugin_telepathy_desc">Enviar mensajes de texto desde su escritorio</string>
<string name="pref_plugin_telepathy_mms">Enviar MMS</string>
<string name="pref_plugin_telepathy_mms_desc">Para poder enviar MMS desde KDE Connect necesita configurarlo como la aplicación por omisión de SMS.</string>
<string name="findmyphone_title">Encontrar mi teléfono</string>
<string name="findmyphone_title_tablet">Encontrar mi tableta</string>
<string name="findmyphone_title_tv">Encontrar mi TV</string>
@@ -243,7 +224,7 @@
<string name="permission_explanation">Este complemento necesita permisos para funcionar</string>
<string name="optional_permission_explanation">Debe otorgar permisos extra para activar todas las funciones</string>
<string name="plugins_need_optional_permission">Algunos complementos tienen funcionalidades desactivadas por falta de permisos (pulse para más información):</string>
<string name="share_optional_permission_explanation">Para recibir archivos compartidos debe elegir un directorio destino</string>
<string name="share_optional_permission_explanation">Para compartir archivos entre su teléfono y su escritorio, necesita dar acceso al almacenamiento de su teléfono</string>
<string name="telepathy_permission_explanation">Para leer y escribir SMS desde su escritorio, necesita dar permisos para SMS</string>
<string name="telephony_permission_explanation">Para ver las llamadas telefónicas en el escritorio, necesita dar permisos al registro de llamadas telefónicas y al estado del teléfono</string>
<string name="telephony_optional_permission_explanation">Para ver el nombre de un contacto en lugar de un número telefónico, necesita dar acceso a los contactos de su teléfono</string>
@@ -268,7 +249,6 @@
<string name="notification_channel_media_control">Control multimedia</string>
<string name="notification_channel_filetransfer">Transferencia de archivo</string>
<string name="notification_channel_high_priority">Alta prioridad</string>
<string name="notification_channel_sms_mms">Nuevo mensaje</string>
<string name="mpris_stop">Parar el reproductor actual</string>
<string name="copy_url_to_clipboard">Copiar URL al portapapeles</string>
<string name="clipboard_toast">Copiado en el portapapeles</string>
@@ -323,19 +303,12 @@
<string name="pref_plugin_bigscreen_desc">Use su dispositivo como mando remoto para Plasma Bigscreen</string>
<string name="bigscreen_optional_permission_explanation">Para compartir la entrada del micrófono desde su teléfono, necesita dar acceso a la entrada de audio de su teléfono</string>
<string name="bigscreen_speech_extra_prompt">Habla</string>
<string name="message_reply_label">Responder</string>
<string name="mark_as_read_label">Marcar como leído</string>
<string name="user_display_name"></string>
<string name="set_default_sms_app_title">Enviar MMS</string>
<string name="set_group_message_as_mms_title">Enviar MMS a un grupo</string>
<string name="set_long_text_as_mms_title">Enviar textos largos como MMS</string>
<string name="convert_to_mms_after_title">Convertir a MMS</string>
<string-array name="convert_to_mms_after_entries">
<item>Tras un mensaje</item>
<item>Tras dos mensajes</item>
<item>Tras tres mensajes</item>
<item>Tras cuatro mensajes</item>
<item>Tras cinco mensajes</item>
<item>After one message</item>
<item>After two messages</item>
<item>After three messages</item>
<item>After four messages</item>
<item>After five messages</item>
</string-array>
<string name="theme_dialog_title">Elegir tema</string>
<string-array name="theme_list">
@@ -343,13 +316,4 @@
<item>Claro</item>
<item>Oscuro</item>
</string-array>
<string-array name="theme_list_v28">
<item>Valor por omisión del sistema</item>
<item>Claro</item>
<item>Oscuro</item>
</string-array>
<string name="report_bug">Notificar error</string>
<string name="donate">Donar</string>
<string name="source_code">Código fuente</string>
<string name="licenses">Licencias</string>
</resources>

View File

@@ -15,7 +15,7 @@
<string name="pref_plugin_clipboard_sent">Lõikepuhvrist saadud</string>
<string name="pref_plugin_mousepad">Kaugsisestus</string>
<string name="pref_plugin_mousepad_desc">Telefoni või tahvli kasutamine puuteplaadi ja klaviatuurina</string>
<string name="pref_plugin_presenter">Slaidiseansi pult</string>
<string name="pref_plugin_presenter">Kaugslaidiseanss</string>
<string name="pref_plugin_presenter_desc">Seadme kasutamine esitluse slaidide vahetamiseks</string>
<string name="pref_plugin_remotekeyboard">Kaugklahvivajutuste vastuvõtmine</string>
<string name="pref_plugin_remotekeyboard_desc">Kaugseadmete klahvivajutuste vastuvõtmine</string>
@@ -89,6 +89,8 @@
<string name="error_canceled_by_other_peer">Teine pool katkestas</string>
<string name="encryption_info_title">Krüptimise teave</string>
<string name="encryption_info_msg_no_ssl">Teine seade ei kasuta KDE Connecti uusimat versiooni ja tarvitab krüptimisel pärandmeetodit.</string>
<string name="my_device_fingerprint">Sinu seadme sertifikaadi SHA1 sõrmejälg on:</string>
<string name="remote_device_fingerprint">Kaugseadme sertifikaadi SHA1 sõrmejälg on:</string>
<string name="pair_requested">Paardumise soov</string>
<string name="pairing_request_from">Paardumise soov seadmest %1s</string>
<plurals name="incoming_file_title">
@@ -209,10 +211,8 @@
<string name="no_wifi">Sul puudub ühendus Wi-Fi võrguga, mistõttu sa ei näe ühtegi seadet. Klõpsa siia Wi-Fi sisselülitamiseks.</string>
<string name="on_non_trusted_message">See ei ole usaldusväärne võrk: automaatne tuvastamine on keelatud.</string>
<string name="no_file_browser">Ühtegi failisirvijat pole paigaldatud</string>
<string name="pref_plugin_telepathy">SMS-ide saatmine</string>
<string name="pref_plugin_telepathy">Saada SMS</string>
<string name="pref_plugin_telepathy_desc">Tekstisõnumite saatmine oma töölaualt</string>
<string name="pref_plugin_telepathy_mms">MMS-ide saatmine</string>
<string name="pref_plugin_telepathy_mms_desc">KDE Connecti kaudu MMS-ide saatmiseks tuleb see määrata SMS-ide vaikerakenduseks.</string>
<string name="findmyphone_title">Leia mu telefon</string>
<string name="findmyphone_title_tablet">Leia mu tahvel</string>
<string name="findmyphone_title_tv">Leia mu teler</string>
@@ -224,6 +224,7 @@
<string name="permission_explanation">See plugin vajab töötamiseks õigusi</string>
<string name="optional_permission_explanation">Kõigi funktsioonide lubamiseks tuleb sul anda lisaõigusi</string>
<string name="plugins_need_optional_permission">Mõne plugina osa omadusi on keelatud õiguste puudumise tõttu (koputa rohkema teabe saamiseks):</string>
<string name="share_optional_permission_explanation">Failide jagamiseks telefoni ja töölau vahel tuleb anda telefonile ligipääs</string>
<string name="telepathy_permission_explanation">SMS-ide lugemiseks ja kirjutamiseks töölaual tuleb anda õigused SMS-ile</string>
<string name="telephony_permission_explanation">Kõnede nägemiseks töölaual tuleb anda õigused telefonikõnede logile ja telefoni olekule</string>
<string name="telephony_optional_permission_explanation">Telefoninumbri asemel kontakti nime nägemiseks tuleb anda õigused telefoni kontaktidele</string>
@@ -248,7 +249,6 @@
<string name="notification_channel_media_control">Meedia juhtimine</string>
<string name="notification_channel_filetransfer">Failiülekanne</string>
<string name="notification_channel_high_priority">Kõrge prioriteediga</string>
<string name="notification_channel_sms_mms">Uus sõnum</string>
<string name="mpris_stop">Peata aktiivne mängija</string>
<string name="copy_url_to_clipboard">Kopeeri URL lõikepuhvrisse</string>
<string name="clipboard_toast">Kopeeriti lõikepuhvrisse</string>
@@ -299,12 +299,10 @@
<string name="bigscreen_right">Paremal</string>
<string name="bigscreen_down">All</string>
<string name="bigscreen_mic">Mikrofon</string>
<string name="pref_plugin_bigscreen">Suurekraani pult</string>
<string name="pref_plugin_bigscreen_desc">Oma seadme kasutamine Plasma suurekraani puldina</string>
<string name="pref_plugin_bigscreen">Kaugsuurekraan</string>
<string name="pref_plugin_bigscreen_desc">Oma seadme kasutamine Plasma kaugsuurekraanina</string>
<string name="bigscreen_optional_permission_explanation">Oma telefoni mikrofonisisendi jagamiseks tuleb anda juurdepääs telefoni helisisendile</string>
<string name="bigscreen_speech_extra_prompt">Kõne</string>
<string name="message_reply_label">VASTA</string>
<string name="mark_as_read_label">MÄRGI LOETUKS</string>
<string-array name="convert_to_mms_after_entries">
<item>After one message</item>
<item>After two messages</item>
@@ -318,9 +316,4 @@
<item>Hele</item>
<item>Tume</item>
</string-array>
<string-array name="theme_list_v28">
<item>Süsteemi vaikeväärtus</item>
<item>Hele</item>
<item>Tume</item>
</string-array>
</resources>

View File

@@ -89,7 +89,8 @@
<string name="error_canceled_by_other_peer">Beste kideak utzita</string>
<string name="encryption_info_title">Zifratze informazioa</string>
<string name="encryption_info_msg_no_ssl">Beste gailuak ez du oraintsuko KDE Connect bertsio bat erabiltzen, erabili aurreko bertsioetako metodoa.</string>
<string name="remote_device_fingerprint">Urruneko gailuaren ziurtagiriaren SHA256 hatz-marka hau da:</string>
<string name="my_device_fingerprint">Zure gailuaren ziurtagiriaren SHA1 hatz-marka hau da:</string>
<string name="remote_device_fingerprint">Urruneko gailuaren ziurtagiriaren SHA1 hatz-marka hau da:</string>
<string name="pair_requested">Parekatzea eskatu da</string>
<string name="pairing_request_from">Parekatzeko eskaria %1s-tik</string>
<plurals name="incoming_file_title">
@@ -210,10 +211,8 @@
<string name="no_wifi">Ez zaude Wi-Fi sare batera konektatuta, baliteke gailurik ez ikustea. Egin klik hemen Wi-Fia gaitzeko.</string>
<string name="on_non_trusted_message">Ez dago konfiantza duen sare batean: aurkitze automatikoa desgaituta dago.</string>
<string name="no_file_browser">Ez dago fitxategi arakatzailerik instalatuta.</string>
<string name="pref_plugin_telepathy">Bidali SMS</string>
<string name="pref_plugin_telepathy">Bidali SMSa</string>
<string name="pref_plugin_telepathy_desc">Bidali testu-mezuak zure mahaigainetik</string>
<string name="pref_plugin_telepathy_mms">Bidali MMS</string>
<string name="pref_plugin_telepathy_mms_desc">KDE Connect bidez MMSak bidali ahal izateko, SMS aplikazio lehenetsi gisa ezarri behar duzu.</string>
<string name="findmyphone_title">Bilatu nire telefonoa</string>
<string name="findmyphone_title_tablet">Bilatu nire tableta</string>
<string name="findmyphone_title_tv">Aurkitu nire TB</string>
@@ -225,7 +224,7 @@
<string name="permission_explanation">Plugin honek baimena behar du funtzionatzeko</string>
<string name="optional_permission_explanation">Baimen gehiago eman behar dituzu funtzio guztiak gaitzeko</string>
<string name="plugins_need_optional_permission">Plugin batzuek desgaitutako eginbideak dituzte baimenak faltan dituztelako (tak egin informazio gehiagorako):</string>
<string name="share_optional_permission_explanation">Partekatutako fitxategiak jasotzeko jomugako direktorio bat aukeratu behar duzu</string>
<string name="share_optional_permission_explanation">Zure telefonoa eta mahaigainaren artean fitxategiak partekatzeko telefonoaren biltegiratzea atzitzeko baimena eman behar duzu</string>
<string name="telepathy_permission_explanation">SMSak zure mahaigainetik bidali ahal izateko, SMSak erabiltzeko baimena eman behar duzu</string>
<string name="telephony_permission_explanation">Telefono deiak zure mahaigainetik ikusteko, telefono deien egunkarira eta telefonoaren egoerara baimena eman behar duzu</string>
<string name="telephony_optional_permission_explanation">Telefono zenbakiaren ordez kontaktuaren izena ikusteko telefonoko kontaktuak atzitzeko baimena eman behar duzu</string>
@@ -250,7 +249,6 @@
<string name="notification_channel_media_control">Euskarrien kontrola</string>
<string name="notification_channel_filetransfer">Fitxategi transferentzia</string>
<string name="notification_channel_high_priority">Lehentasun handia</string>
<string name="notification_channel_sms_mms">Mezu berria</string>
<string name="mpris_stop">Gelditu uneko jotzailea</string>
<string name="copy_url_to_clipboard">Kopiatu URLa arbelera</string>
<string name="clipboard_toast">Arbelera kopiatua</string>
@@ -305,19 +303,12 @@
<string name="pref_plugin_bigscreen_desc">Erabili zure gailua Plasma Bigscreen-en urrutiko aginte gisa</string>
<string name="bigscreen_optional_permission_explanation">Zure telefonoko mikrofonoko sarrerakoa partekatzeko, telefonoko audio sarrerakora sarbidea eman behar diozu</string>
<string name="bigscreen_speech_extra_prompt">Hizketa</string>
<string name="message_reply_label">ERANTZUN</string>
<string name="mark_as_read_label">MARKATU IRAKURRITAKO GISA</string>
<string name="user_display_name">Zu</string>
<string name="set_default_sms_app_title">Bidali MMS</string>
<string name="set_group_message_as_mms_title">Bidali taldeko MMS</string>
<string name="set_long_text_as_mms_title">Bidali testu luzea MMS gisa</string>
<string name="convert_to_mms_after_title">Bihurtu MMS</string>
<string-array name="convert_to_mms_after_entries">
<item>Mezu baten ondoren</item>
<item>Bi mezu ondoren</item>
<item>Hiru mezu ondoren</item>
<item>Lau mezu ondoren</item>
<item>Bost mezu ondoren</item>
<item>After one message</item>
<item>After two messages</item>
<item>After three messages</item>
<item>After four messages</item>
<item>After five messages</item>
</string-array>
<string name="theme_dialog_title">Aukeratu gaia</string>
<string-array name="theme_list">
@@ -325,9 +316,4 @@
<item>Argia</item>
<item>Iluna</item>
</string-array>
<string-array name="theme_list_v28">
<item>Sistemako lehenetsia</item>
<item>Argia</item>
<item>Iluna</item>
</string-array>
</resources>

View File

@@ -89,7 +89,8 @@
<string name="error_canceled_by_other_peer">Vertaiskäyttäjä perui</string>
<string name="encryption_info_title">Salaustiedot</string>
<string name="encryption_info_msg_no_ssl">Toinen laite ei käytä KDE Connectin uudehkoa versiota, joten käytetään vanhaa salausmenetelmää.</string>
<string name="remote_device_fingerprint">Etälaitteen varmenteen SHA256-sormenjälki on:</string>
<string name="my_device_fingerprint">Laitteen varmenteen SHA1-sormenjälki on:</string>
<string name="remote_device_fingerprint">Etälaitteen varmenteen SHA1-sormenjälki on:</string>
<string name="pair_requested">Paripyyntö</string>
<string name="pairing_request_from">Paripyyntö laitteesta %1s</string>
<plurals name="incoming_file_title">
@@ -212,8 +213,6 @@
<string name="no_file_browser">Tiedostoselaimia ei asennettu.</string>
<string name="pref_plugin_telepathy">Lähetä tekstiviesti</string>
<string name="pref_plugin_telepathy_desc">Lähetä tekstiviestejä työpöydältäsi</string>
<string name="pref_plugin_telepathy_mms">Lähetä multimediaviesti</string>
<string name="pref_plugin_telepathy_mms_desc">Multimediaviestien lähettämiseksi KDE Connect on asetettava oletustekstiviestisovellukseksi.</string>
<string name="findmyphone_title">Löydä puhelimeni</string>
<string name="findmyphone_title_tablet">Löydä tablettini</string>
<string name="findmyphone_title_tv">Etsi televeisioni</string>
@@ -225,7 +224,7 @@
<string name="permission_explanation">Liitännäinen tarvitsee toimiakseen lisäkäyttöoikeuksia</string>
<string name="optional_permission_explanation">Kaikkien toimintojen käyttämiseksi sinun on annettava lisäkäyttöoikeuksia</string>
<string name="plugins_need_optional_permission">Jotkin liitännäisten ominaisuudet eivät ole käytössä puuttuvien käyttöoikeuksien takia (lisätietoa napsauttamalla):</string>
<string name="share_optional_permission_explanation">Jaettujen tiedostojen vastaanottamiseksi on määritettävä kohdekansio</string>
<string name="share_optional_permission_explanation">Jakaaksesi tiedostoja puhelimen ja työpöydän välillä sinun on annettava käyttöoikeudet puhelimen tallennustilaan</string>
<string name="telepathy_permission_explanation">Lukeaksesi ja lähettääksesi tekstiviestejä työpöydältä sinun on annettava käyttöoikeudet tekstiviesteihin</string>
<string name="telephony_permission_explanation">Puhelujen näyttäminen työpöydällä vaatii käyttöoikeuden puhelulokiin ja puhelimen tilaan</string>
<string name="telephony_optional_permission_explanation">Puhelimen yhteystietoihin on annettava käyttöoikeudet, jotta voit nähdä yhteystiedoissa nimet puhelinnumerojen sijaan</string>
@@ -250,7 +249,6 @@
<string name="notification_channel_media_control">Mediaohjaimet</string>
<string name="notification_channel_filetransfer">Tiedostonsiirto</string>
<string name="notification_channel_high_priority">Korkea etusija</string>
<string name="notification_channel_sms_mms">Uusi viesti</string>
<string name="mpris_stop">Pysäytä nykyinen soitin</string>
<string name="copy_url_to_clipboard">Kopioi verkko-osoite leikepöydälle</string>
<string name="clipboard_toast">Kopioitu leikepöydälle</string>
@@ -305,19 +303,12 @@
<string name="pref_plugin_bigscreen_desc">Käytä laitetta Plasma Bigscreen -kaukosäätimenä</string>
<string name="bigscreen_optional_permission_explanation">Jakaaksesi puhelimen mikrofonisyötteen puhelimen äänisyötteeseen on annettava käyttöoikeus</string>
<string name="bigscreen_speech_extra_prompt">Puhe</string>
<string name="message_reply_label">VASTAA</string>
<string name="mark_as_read_label">MERKITSE LUETUKSI</string>
<string name="user_display_name">Sinä</string>
<string name="set_default_sms_app_title">Lähetä multimediaviesti</string>
<string name="set_group_message_as_mms_title">Lähetä ryhmämultimediaviesti</string>
<string name="set_long_text_as_mms_title">Lähetä pitkä teksti multimediaviestinä</string>
<string name="convert_to_mms_after_title">Muunna multimediaviestiksi</string>
<string-array name="convert_to_mms_after_entries">
<item>Yhden viestin jälkeen</item>
<item>Kahden viestin jälkeen</item>
<item>Kolmen viestin jälkeen</item>
<item>Neljän viestin jälkeen</item>
<item>Viiden viestin jälkeen</item>
<item>After one message</item>
<item>After two messages</item>
<item>After three messages</item>
<item>After four messages</item>
<item>After five messages</item>
</string-array>
<string name="theme_dialog_title">Valitse teema</string>
<string-array name="theme_list">
@@ -325,9 +316,4 @@
<item>Vaalea</item>
<item>Tumma</item>
</string-array>
<string-array name="theme_list_v28">
<item>Järjestelmän oletus</item>
<item>Vaalea</item>
<item>Tumma</item>
</string-array>
</resources>

View File

@@ -8,8 +8,6 @@
<string name="pref_plugin_telephony_desc">Envoie des notifications pour les appels entrants</string>
<string name="pref_plugin_battery">Rapport sur la batterie</string>
<string name="pref_plugin_battery_desc">Rapport périodique sur l\'état de la batterie</string>
<string name="pref_plugin_connectivity_report">Rapport sur la connectivité</string>
<string name="pref_plugin_connectivity_report_desc">Signaler la force du signal du réseau et son état</string>
<string name="pref_plugin_sftp">Exposer le système de fichiers</string>
<string name="pref_plugin_sftp_desc">Permettre de parcourir le système de fichiers du périphérique à distance</string>
<string name="pref_plugin_clipboard">Synchronisation avec le presse-papiers</string>
@@ -46,7 +44,7 @@
<string name="send_ping">Envoyer un « Ping »</string>
<string name="open_mpris_controls">Contrôles multimédia</string>
<string name="remotekeyboard_editing_only_title">Gérer les appuis de touches à distance uniquement lors de l\'édition</string>
<string name="remotekeyboard_not_connected">Aucune connexion active d\'un clavier à distance disponible, établissez-en une dans « KDEConnect ».</string>
<string name="remotekeyboard_not_connected">Aucune connexion active d\'un clavier à distance disponible, établissez-en une dans KDE Connect</string>
<string name="remotekeyboard_connected">La connexion au clavier sans fil est active</string>
<string name="remotekeyboard_multiple_connections">Plusieurs connexions à des claviers sans fil sont disponibles, sélectionnez le périphérique à configurer</string>
<string name="open_mousepad">Contrôle distant</string>
@@ -76,21 +74,6 @@
<item>Relativement forte</item>
<item>Très forte</item>
</string-array>
<string name="sendkeystrokes_send_to">Envoyez les appuis de touches vers</string>
<string name="sendkeystrokes_textbox_hint">Envoyez les appuis de touches vers l\'hôte</string>
<string name="sendkeystrokes_disabled_toast">L\'envoi des appuis de touches est désactivé. Veuillez l\'activer dans la configuration.</string>
<string name="sendkeystrokes_wrong_data">Type « MIME » non valable. Doit être « text/x-keystrokes »</string>
<string name="sendkeystrokes_sent_text">Envoi de %1s vers le périphérique %2s</string>
<string name="sendkeystrokes_pref_category_summary">Ce module permet aux autres applications de partager des portions de texte comme des appuis de touches, qui seront envoyées vers l\'hôte connecté.</string>
<string name="sendkeystrokes_pref_category_title">Envoyez les appuis de touches</string>
<string name="sendkeystrokes_pref_enabled">Autoriser l\'envoi des appuis de touches</string>
<string name="sendkeystrokes_pref_enabled_summary">Attendre des données avec le type « MIME » « text/x-keystrokes »</string>
<string name="sendkeystrokes_safe_text_enabled">Envoyez du texte confirmé immédiatement</string>
<string name="sendkeystrokes_safe_text_enabled_summary">Envoyez des chaînes courtes uniquement numériques sans confirmation</string>
<string name="pref_plugin_mousepad_send_keystrokes">Envoyez comme appuis de touches</string>
<string name="mouse_receiver_plugin_description">Recevoir les mouvements de la souri distante</string>
<string name="mouse_receiver_plugin_name">Récepteur de souris</string>
<string name="mouse_receiver_no_permissions">Vous avez besoin d\'accéder au service « Accessibilité »</string>
<string name="category_connected_devices">Périphériques connectés</string>
<string name="category_not_paired_devices">Périphériques disponibles</string>
<string name="category_remembered_devices">Périphériques mémorisés</string>
@@ -106,8 +89,8 @@
<string name="error_canceled_by_other_peer">Annulé par un autre homologue</string>
<string name="encryption_info_title">Informations de chiffrement</string>
<string name="encryption_info_msg_no_ssl">Ce périphérique n\'utilise pas une version récente de KDE Connect qui utilise l\'ancienne méthode de chiffrement.</string>
<string name="my_device_fingerprint">L\'empreinte SHA256 du certificat de votre périphérique est :</string>
<string name="remote_device_fingerprint">L\'empreinte « SHA256 » du certificat du périphérique distant est :</string>
<string name="my_device_fingerprint">L\'empreinte SHA1 du certificat de votre appareil est :</string>
<string name="remote_device_fingerprint">L\'empreinte SHA1 du certificat du périphérique distant est :</string>
<string name="pair_requested">Paire demandée</string>
<string name="pairing_request_from">Demande d\'association provenant de %1s</string>
<plurals name="incoming_file_title">
@@ -243,7 +226,7 @@
<string name="permission_explanation">Ce module externe nécessite des permissions pour fonctionner</string>
<string name="optional_permission_explanation">Vous devez accorder des permissions supplémentaires pour activer toutes les fonctionnalités</string>
<string name="plugins_need_optional_permission">Certaines fonctionnalités de modules externes sont désactivées faute de permissions suffisantes (tapez pour plus d\'informations) :</string>
<string name="share_optional_permission_explanation">Pour la réception de fichiers partagés, vous devez sélectionner un dossier de destination.</string>
<string name="share_optional_permission_explanation">Pour partager des fichiers entre votre téléphone et votre ordinateur, veuillez permettre l\'accès à la mémoire de stockage du téléphone</string>
<string name="telepathy_permission_explanation">Pour lire et écrire des SMS depuis votre ordinateur, veuillez permettre l\'accès aux SMS</string>
<string name="telephony_permission_explanation">Pour voir les appels depuis votre ordinateur, veuillez permettre l\'accès au journal des appels et à l\'état du téléphone</string>
<string name="telephony_optional_permission_explanation">Pour voir le nom du contact au lieu du numéro de téléphone, veuillez permettre l\'accès aux contacts du téléphone</string>
@@ -268,7 +251,6 @@
<string name="notification_channel_media_control">Contrôle multimédia</string>
<string name="notification_channel_filetransfer">Transfert de fichiers</string>
<string name="notification_channel_high_priority">Haute priorité</string>
<string name="notification_channel_sms_mms">Nouveau message</string>
<string name="mpris_stop">Arrêter le lecteur actuel</string>
<string name="copy_url_to_clipboard">Copier l\'URL dans le presse-papiers</string>
<string name="clipboard_toast">Copié dans le presse-papier</string>
@@ -323,13 +305,16 @@
<string name="pref_plugin_bigscreen_desc">Utiliser votre périphérique comme télécommande pour Plasma Bigscreen</string>
<string name="bigscreen_optional_permission_explanation">Pour partager l\'entrée microphone de votre téléphone, vous devez donner accès à l\'entrée audio du téléphone.</string>
<string name="bigscreen_speech_extra_prompt">Discours</string>
<string name="message_reply_label">RÉPONDRE</string>
<string name="mark_as_read_label">MARQUER COMME LU</string>
<string name="user_display_name">Vous</string>
<string name="set_default_sms_app_title">Envoyer un « MMS »</string>
<string name="set_group_message_as_mms_title">Envoyer un ensemble de « SMS »</string>
<string name="set_long_text_as_mms_title">Envoyer un long message comme un « MMS »</string>
<string name="convert_to_mms_after_title">Convertir en « MMS »</string>
<string name="sms_pref_set_mmsc_dialog_desc">Définir « MMSC »</string>
<string name="sms_pref_set_mmsc_title">MMSC</string>
<string name="sms_pref_set_mms_proxy_dialog_desc">Définir un serveur mandataire de « MMS »</string>
<string name="sms_pref_set_mms_proxy_title">Serveur mandataire de « MMS »</string>
<string name="sms_pref_set_mms_port_dialog_desc">Définir le port « MMS »</string>
<string name="sms_pref_set_mms_port_title">Port « MMS »</string>
<string-array name="convert_to_mms_after_entries">
<item>Après un message</item>
<item>Après deux messages</item>
@@ -348,8 +333,4 @@
<item>Léger</item>
<item>Sombre</item>
</string-array>
<string name="report_bug">Signaler un bogue</string>
<string name="donate">Faire un don</string>
<string name="source_code">Code source</string>
<string name="licenses">Licences</string>
</resources>

View File

@@ -86,6 +86,8 @@
<string name="error_canceled_by_other_peer">Cancelouse remotamente</string>
<string name="encryption_info_title">Información do cifrado</string>
<string name="encryption_info_msg_no_ssl">O outro dispositivo non usa unha versión recente de KDE Connect, usarase un método obsoleto de cifrado.</string>
<string name="my_device_fingerprint">A pegada SHA1 do certificado do seu dispositivo é:</string>
<string name="remote_device_fingerprint">A pegada SHA1 do certificado do dispositivo remoto é:</string>
<string name="pair_requested">Solicitude de emparellamento</string>
<string name="pairing_request_from">Solicitude de emparellamento de %1s.</string>
<plurals name="incoming_file_title">
@@ -216,6 +218,7 @@
<string name="permission_explanation">Este complemento necesita permisos para funcionar.</string>
<string name="optional_permission_explanation">Ten que conceder permisos adicionais para activar todas as funcións.</string>
<string name="plugins_need_optional_permission">Algúns complementos teñen funcionalidades desactivadas por mor dunha falta de permisos (toque para máis información):</string>
<string name="share_optional_permission_explanation">Para compartir ficheiros entre o teléfono e o escritorio ten que dar acceso ao almacenamento do teléfono.</string>
<string name="telepathy_permission_explanation">Para ler e escribir SMS desde o escritorio ten que dar permiso de SMS.</string>
<string name="telephony_permission_explanation">Para ver as chamadas de teléfono no escritorio ten que dar permiso aos rexistros de chamadas telefónicas e ao estado do teléfono</string>
<string name="telephony_optional_permission_explanation">Para ver o nome dun contacto en vez dun número de teléfono ten que dar acceso aos contactos do teléfono.</string>

View File

@@ -1,33 +1,11 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="kde_connect">KDE Connect</string>
<string name="foreground_notification_no_devices">Non connectite a ulle dispositivo</string>
<string name="foreground_notification_devices">Connectite : %s</string>
<string name="foreground_notification_send_clipboard">Invia Area de transferentia</string>
<string name="pref_plugin_telephony">Notificator de telephonia</string>
<string name="pref_plugin_telephony_desc">Invia notificationes per appellos in arrivata</string>
<string name="pref_plugin_battery">Reporto de batteria</string>
<string name="pref_plugin_battery_desc">Periodicamente reporta stato de batteria</string>
<string name="pref_plugin_connectivity_report">Reporto de connectivitate</string>
<string name="pref_plugin_sftp_desc">Permitte navigat in le systema de file de iste dispositivo remotemente</string>
<string name="pref_plugin_clipboard">Sync de area de transferentia</string>
<string name="pref_plugin_clipboard_desc">Comparti le contento de area de transferentia</string>
<string name="pref_plugin_clipboard_sent">Area de transferentia inviate</string>
<string name="pref_plugin_mousepad">Entrata remote</string>
<string name="pref_plugin_presenter">"Sequentia de diapositivas remote"</string>
<string name="pref_plugin_presenter_desc">Usa tu dispositivo per cambiar diapositivas in un presentation</string>
<string name="pref_plugin_mpris">Controlos de Multimedia</string>
<string name="pref_plugin_runcommand">Executa commando</string>
<string name="pref_plugin_ping">Ping</string>
<string name="ok">OK</string>
<string name="sad_ok">OK :(</string>
<string name="cancel">Cancella</string>
<string name="send_ping">Invia Ping</string>
<string name="open_mpris_controls">Controlo mutimedia</string>
<string name="open_mousepad">Entrata remote</string>
<string-array name="mousepad_tap_entries">
<item>Pulsa a dextera</item>
<item>Click in medio</item>
<item>Right click</item>
<item>Middle click</item>
<item>Nihil</item>
</string-array>
<string-array name="mousepad_sensitivity_entries">
@@ -41,32 +19,16 @@
<item>No Acceleration</item>
<item>Weakest</item>
<item>Weaker</item>
<item>Medie</item>
<item>Medium</item>
<item>Stronger</item>
<item>Strongest</item>
</string-array>
<string name="category_connected_devices">Dispositivos connectite</string>
<string name="category_not_paired_devices">Dispositivos disponibile</string>
<string name="device_menu_plugins">"Preferentias de plugin "</string>
<string name="device_menu_unpair">De-Associa</string>
<string name="unknown_device">Dispositivo incognite</string>
<string name="error_not_reachable">Dispositivo non attingibile</string>
<string name="error_timed_out">Expirate</string>
<string name="error_canceled_by_other_peer">Cancellate per altere pare</string>
<string name="pair_requested">Coppiar requirite</string>
<plurals name="outgoing_file_title">
<item quantity="one">"Inviante file %1$d a %2$s"</item>
<item quantity="other">Invia %1$d files %2$s</item>
</plurals>
<plurals name="sent_files_title">
<item quantity="one">"Inviate file a %1$s"</item>
<item quantity="other">"Inviate %2$d files a %1$s"</item>
</plurals>
<string name="pairing_accept">Accepta</string>
<string name="pairing_reject">Rejecta</string>
<string name="settings">Preferentias</string>
<string name="mpris_play">Reproduce</string>
<string name="mpris_pause">Pausa</string>
<string name="mpris_previous">Precedente</string>
<string name="mpris_rew">Rebobina</string>
<string name="mpris_ff">Avantia velocemente</string>
@@ -79,52 +41,13 @@
<item>1 minuta</item>
<item>2 minutas</item>
</string-array>
<string name="custom_device_fab_hint">Adde un dispositivo</string>
<string name="undo">Annulla</string>
<string name="share">Comparti</string>
<string name="sftp_sdcard">Sd Card</string>
<string name="sftp_readonly">(solmente de lectura)</string>
<string name="add_device_dialog_title">Adde dispositivo</string>
<string name="add_device_hint">Nomine de hospite o adresse IP</string>
<string name="sftp_storage_preference_click_to_select">pulsa pro seliger</string>
<string name="sftp_storage_preference_display_name">Nomine de monstrar</string>
<string name="sftp_action_mode_menu_delete">Dele</string>
<string name="send_files">Invia files</string>
<string name="device_rename_confirm">Renomina</string>
<string name="refresh">Refresca</string>
<string name="pref_plugin_telepathy">Invia SMS</string>
<string name="pref_plugin_telepathy_mms">Invia MMS</string>
<string name="open">Aperi</string>
<string name="close">Claude</string>
<string name="device_icon_description">Icone de dispositivo</string>
<string name="settings_icon_description">Icone de Preferentias</string>
<string name="presenter_fullscreen">Schermo plen</string>
<string name="notification_channel_media_control">Controlo de multimedia</string>
<string name="notification_channel_filetransfer">Transferimento de file</string>
<string name="notification_channel_high_priority">Prioritate alte</string>
<string name="notification_channel_sms_mms">Nove message</string>
<string name="copy_url_to_clipboard">Copia URL a area de transferentia</string>
<string name="runcommand_notpaired">Dispositivo non es associate</string>
<string name="mute">Surdina</string>
<string name="all">Omne</string>
<string name="devices">Dispositivos</string>
<string name="settings_rename">Nomine de dispositivo</string>
<string name="settings_more_settings_title">Altere preferentias</string>
<string name="extra_options">Optiones extra</string>
<string name="privacy_options">Optiones de confidentialitate</string>
<string name="presenter_pointer">Punctator</string>
<string name="bigscreen_home">Domo o initio</string>
<string name="bigscreen_up">In alto</string>
<string name="bigscreen_left">Sinistra</string>
<string name="bigscreen_select">Selige</string>
<string name="bigscreen_right">Dextera</string>
<string name="bigscreen_down">A basso</string>
<string name="bigscreen_speech_extra_prompt">Voce</string>
<string name="message_reply_label">RESPONSA</string>
<string name="mark_as_read_label">MARCA COMO LEGITE</string>
<string name="user_display_name">Tu</string>
<string name="set_default_sms_app_title">Invia MMS</string>
<string name="set_group_message_as_mms_title">Invia MMS de gruppo</string>
<string-array name="convert_to_mms_after_entries">
<item>After one message</item>
<item>After two messages</item>
@@ -134,16 +57,12 @@
</string-array>
<string-array name="theme_list">
<item>Set by Battery Saver</item>
<item>Legier</item>
<item>Light</item>
<item>Dark</item>
</string-array>
<string-array name="theme_list_v28">
<item>Predefinite de systema</item>
<item>Legier</item>
<item/>
<item>Light</item>
<item>Dark</item>
</string-array>
<string name="report_bug">Reporta Bug</string>
<string name="donate">Dona</string>
<string name="source_code">Codice fonte</string>
<string name="licenses">Licentias</string>
</resources>

View File

@@ -3,7 +3,6 @@
<string name="kde_connect">KDE Connect</string>
<string name="foreground_notification_no_devices">Belum terkoneksi ke perangkat apa pun</string>
<string name="foreground_notification_devices">Terkoneksi ke: %s</string>
<string name="foreground_notification_send_clipboard">Kirimkan Clipboard</string>
<string name="pref_plugin_telephony">Penotifikasi ponsel</string>
<string name="pref_plugin_telephony_desc">Kirim notifikasi untuk panggilan yang masuk</string>
<string name="pref_plugin_battery">Laporan baterai</string>
@@ -12,10 +11,8 @@
<string name="pref_plugin_sftp_desc">Membolehkan menelusuri sistem file perangkat ini secara jarak jauh</string>
<string name="pref_plugin_clipboard">Sinkron clipboard</string>
<string name="pref_plugin_clipboard_desc">Berbagi konten papan-klip</string>
<string name="pref_plugin_clipboard_sent">Kiriman Clipboard</string>
<string name="pref_plugin_mousepad">Input jarak jauh</string>
<string name="pref_plugin_mousepad_desc">Gunakan ponsel atau tabletmu sebagai touchpad dan keyboard</string>
<string name="pref_plugin_presenter">Remot Salindia</string>
<string name="pref_plugin_presenter_desc">Gunakan perangkatmu untuk mengubah slide dalam sebuah presentasi</string>
<string name="pref_plugin_remotekeyboard">Terima penekanan tuts jarak jauh</string>
<string name="pref_plugin_remotekeyboard_desc">Terima peristiwa tekan-tuts dari perangkat jarak jauh</string>
@@ -35,12 +32,10 @@
<string name="pref_plugin_sharereceiver_desc">Berbagi file-file dan URL-URL antara perangkat</string>
<string name="device_list_empty">Tidak ada perangkat</string>
<string name="ok">Oke</string>
<string name="sad_ok">OKE :(</string>
<string name="cancel">Batal</string>
<string name="open_settings">Buka pengaturan</string>
<string name="no_permissions">Kamu perlu mengabulkan perizinan untuk mengakses notifikasi</string>
<string name="no_permission_mprisreceiver">Untuk dapat mengendalikan pemutar mediamu kamu perlu mengabulkan akses ke notifikasi</string>
<string name="no_permissions_remotekeyboard">Untuk menerima penekanan tombol, kamu perlu mengaktifkan KDE Connect Remote Keyboard</string>
<string name="send_ping">Kirim ping</string>
<string name="open_mpris_controls">Kendali multimedia</string>
<string name="remotekeyboard_editing_only_title">Menangani tuts jarak jauh hanya ketika mengedit</string>
@@ -52,7 +47,6 @@
<string name="mousepad_double_tap_settings_title">Set aksi ketuk dua jari</string>
<string name="mousepad_triple_tap_settings_title">Set aksi ketuk tiga jari</string>
<string name="mousepad_sensitivity_settings_title">Set kepekaan touchpad</string>
<string name="mousepad_acceleration_profile_settings_title">Setel akselerasi pointer</string>
<string name="mousepad_scroll_direction_title">Arah Menggulir Terbalik</string>
<string-array name="mousepad_tap_entries">
<item>Klik kanan</item>
@@ -89,7 +83,8 @@
<string name="error_canceled_by_other_peer">Dibatalkan oleh kawan lain</string>
<string name="encryption_info_title">Info Enkripsi</string>
<string name="encryption_info_msg_no_ssl">Perangkat lain tidaklah menggunakan KDE Connect yang berversi saat ini, menggunakan metode enkripsi kuno.</string>
<string name="remote_device_fingerprint">Sidik jari SHA256 pada sertifikat perangkat jarak jauh adalah:</string>
<string name="my_device_fingerprint">Sidik jari SHA1 pada sertifikat perangkatmu adalah:</string>
<string name="remote_device_fingerprint">Sidik jari SHA1 pada sertifikat perangkat jarak jauh adalah:</string>
<string name="pair_requested">Meminta sanding</string>
<string name="pairing_request_from">Minta penyandingan dari %1s</string>
<plurals name="incoming_file_title">
@@ -98,25 +93,12 @@
<plurals name="incoming_files_text">
<item quantity="other">File: %1s</item>
</plurals>
<plurals name="outgoing_file_title">
<item quantity="other">Mengirim %1$d file ke %2$s</item>
</plurals>
<plurals name="outgoing_files_text">
<item quantity="other">File: %1$s</item>
</plurals>
<plurals name="received_files_title">
<item quantity="other">File yang diterima dari %1$s</item>
</plurals>
<plurals name="received_files_fail_title">
<item quantity="other">Gagal menerima file dari %1$s</item>
</plurals>
<plurals name="sent_files_title">
<item quantity="other">Kiriman file ke %1$s</item>
</plurals>
<plurals name="send_files_fail_title">
<item quantity="other">Gagal mengirim file ke %1$s</item>
</plurals>
<string name="tap_to_open">Ketuk untuk membuka</string>
<string name="received_file_text">Ketuk untuk membuka \'%1s\'</string>
<string name="cannot_create_file">Gak bisa menciptakan file %s</string>
<string name="tap_to_answer">Ketuk untuk menjawab</string>
@@ -153,10 +135,6 @@
<string name="shareplugin_text_saved">Teks diterima, tersimpan ke papan-klip</string>
<string name="custom_devices_settings">Kustom daftar perangkat</string>
<string name="custom_device_list">Tambahkan perangkat dengan IP</string>
<string name="custom_device_deleted">Perangkat kustom yang dihapus</string>
<string name="custom_device_list_help">Jika perangkatmu tidak terdeteksi secara otomatis, kamu bisa menambahkan alamat IP atau nama host-nya dengan mengeklik Tombol Aksi Yang Mengambang</string>
<string name="custom_device_fab_hint">Tambahkan sebuah perangkat</string>
<string name="undo">Urungkan</string>
<string name="share_notification_preference">Notifikasi bising</string>
<string name="share_notification_preference_summary">Getar dan putarkan suara ketika menerima sebuah file</string>
<string name="share_destination_customize">Menyesuaikan tujuan direktori</string>
@@ -171,53 +149,28 @@
<string name="sftp_sdcard">Kartu SD</string>
<string name="sftp_readonly">(hanya baca)</string>
<string name="sftp_camera">Gambar kamera</string>
<string name="add_device_dialog_title">Tambahkan perangkat</string>
<string name="add_device_hint">Alamat IP atau hostname</string>
<string name="sftp_preference_detected_sdcards">Kartu SD terdeteksi</string>
<string name="sftp_preference_edit_sdcard_title">Edit kartu SD</string>
<string name="sftp_preference_configured_storage_locations">Lokasi penyimpanan terkonfigurasi</string>
<string name="sftp_preference_add_storage_location_title">Tambahkan lokasi penyimpanan</string>
<string name="sftp_preference_edit_storage_location">Edit lokasi penyimpanan</string>
<string name="sftp_preference_add_camera_shortcut">Tambahkan shortcut folder kamera</string>
<string name="sftp_preference_add_camera_shortcut_summary_on">Tambahkan sebuah shortcut ke folder kamera</string>
<string name="sftp_preference_add_camera_shortcut_summary_off">Jangan tambahkan sebuah shortcut ke folder kamera</string>
<string name="sftp_storage_preference_storage_location">Lokasi penyimpanan</string>
<string name="sftp_storage_preference_storage_location_already_configured">Lokasi ini sudah dikonfigurasi</string>
<string name="sftp_storage_preference_click_to_select">klik untuk pilih</string>
<string name="sftp_storage_preference_display_name">Tampilan nama</string>
<string name="sftp_storage_preference_display_name_already_used">Tampilan nama ini sudah digunakan</string>
<string name="sftp_storage_preference_display_name_cannot_be_empty">Tampilan nama tidak boleh kosong</string>
<string name="sftp_action_mode_menu_delete">Hapus</string>
<string name="sftp_no_sdcard_detected">Tidak ada kartu SD yang terdeteksi</string>
<string name="sftp_no_storage_locations_configured">Tidak ada lokasi penyimpanan yang dikonfigurasi</string>
<string name="sftp_saf_permission_explanation">Untuk mengakses file secara jarak jauh, kamu harus mengkonfigurasi lokasi penyimpanan</string>
<string name="no_players_connected">Tidak ada pemutar yang ditemukan</string>
<string name="send_files">Kirim file</string>
<string name="pairing_title">Perangkat KDE Connect</string>
<string name="pairing_description">Perangkat lain yang menjalankan KDE Connect dalam jaringanmu yang sama seharusnya muncul di sini.</string>
<string name="pairing_description">Perangkat lain menjalankan KDE Connect dalam jaringanmu yang sama yang seharusnya muncul di sini.</string>
<string name="device_rename_title">Ubah nama perangkat</string>
<string name="device_rename_confirm">Ubah Nama</string>
<string name="refresh">Segarkan</string>
<string name="unreachable_description">Perangkat yang disandingkan ini tidak dapat dicapai. Pastikan ia terkoneksi ke jaringanmu yang sama.</string>
<string name="no_wifi">Kamu belum terkoneksi ke jaringan Wi-Fi, sehingga kamu tidak bisa melihat perangkat apapun. Klik di sini untuk memfungsikan Wi-Fi.</string>
<string name="on_non_trusted_message">Bukan pada jaringan yang dipercaya: autodiscovery telah dinonfungsikan.</string>
<string name="no_file_browser">Tidak adanya penelusur file yang terinstal.</string>
<string name="pref_plugin_telepathy">Kirim SMS</string>
<string name="pref_plugin_telepathy_desc">Kirim teks perpesanan dari desktopmu</string>
<string name="pref_plugin_telepathy_mms">Kirim MMS</string>
<string name="pref_plugin_telepathy_mms_desc">Supaya bisa mengirim MMS dari KDE Connect, kamu perlu mengaturnya sebagai aplikasi SMS default.</string>
<string name="findmyphone_title">Temukan ponselku</string>
<string name="findmyphone_title_tablet">Temukan tabletku</string>
<string name="findmyphone_title_tv">Temukan TV-ku</string>
<string name="findmyphone_description">Deringkan perangkat ini sehingga kamu bisa menemukannya</string>
<string name="findmyphone_found">Ketemu</string>
<string name="open">Buka</string>
<string name="close">Tutup</string>
<string name="plugins_need_permission">Beberapa plugin perlu perizinan untuk kerja (ketuk untuk info selebihnya):</string>
<string name="permission_explanation">Plugin ini perlu perizinan untuk kerja</string>
<string name="optional_permission_explanation">Kamu perlu mengabulkan perizinan extra untuk memfungsikan semua fungsian</string>
<string name="plugins_need_optional_permission">Beberapa plugin yang memiliki fitur dinonfungsikan karena kurangnya perizinan (ketuk untuk info selebihnya):</string>
<string name="share_optional_permission_explanation">Untuk menerima file yang dibagikan kamu perlu memilih sebuah direktori tujuan</string>
<string name="share_optional_permission_explanation">Untuk membagikan file antara teleponmu dan desktopmu kamu harus memberikan akses ke penyimpanan teleponmu</string>
<string name="telepathy_permission_explanation">Untuk membaca dan menulis SMS dari desktopmu kamu harus memberikan perizinan untuk SMS</string>
<string name="telephony_permission_explanation">Untuk melihat panggilan ponsel pada desktop kamu harus memberikan perizinan untuk log panggilan ponsel dan keadaan ponsel</string>
<string name="telephony_optional_permission_explanation">Untuk melihat nama kontak alih-alih nomor ponsel, kamu harus memberikan akses ke kontak ponsel</string>
@@ -228,102 +181,31 @@
<string name="mpris_coverart_description">Seni sampul media saat ini</string>
<string name="device_icon_description">Ikon perangkat</string>
<string name="settings_icon_description">Ikon pengaturan</string>
<string name="presenter_fullscreen">Layar penuh</string>
<string name="presenter_exit">Keluarkan presentasi</string>
<string name="presenter_lock_tip">Kamu bisa mengunci perangkatmu dan gunakanlah tombol volume untuk menuju ke slide sebelumnya/selanjutnya</string>
<string name="add_command">Tambahkan sebuah perintah</string>
<string name="addcommand_explanation">Tidak ada perintah yang diregister</string>
<string name="addcommand_explanation2">"Kamu bisa menambahkan perintah baru dalam System Settings KDE Connect "</string>
<string name="add_command_description">Kamu bisa menambahkan perintah pada desktop</string>
<string name="pref_plugin_mprisreceiver">Kendali Pemutar Media</string>
<string name="pref_plugin_mprisreceiver_desc">Kendalikan pemutar media ponselmu dari perangkat lainnya</string>
<string name="notification_channel_default">Notifikasi lainnya</string>
<string name="notification_channel_persistent">Indikator kukuh</string>
<string name="notification_channel_media_control">Kontrol multimedia</string>
<string name="notification_channel_filetransfer">Transfer file</string>
<string name="notification_channel_high_priority">Prioritas tinggi</string>
<string name="notification_channel_sms_mms">Pesan Baru</string>
<string name="mpris_stop">Hentikan player saat ini</string>
<string name="copy_url_to_clipboard">Salin URL ke clipboard</string>
<string name="clipboard_toast">Disalin ke clipboard</string>
<string name="runcommand_notreachable">Perangkat tidak tercapai</string>
<string name="runcommand_notpaired">Perangkat tidak tersanding</string>
<string name="runcommand_nosuchdevice">Di sini tidak ada perangkat seperti itu</string>
<string name="runcommand_noruncommandplugin">Perangkat ini tidak memiliki Plugin Run Command yang difungsikan</string>
<string name="pref_plugin_findremotedevice">Temukan perangkat remot</string>
<string name="pref_plugin_findremotedevice_desc">Deringkan perangkat remotmu</string>
<string name="ring">Deringkan</string>
<string name="pref_plugin_systemvolume">System volume</string>
<string name="pref_plugin_systemvolume_desc">Kendalikan volume sistem pada perangkat remot</string>
<string name="mute">Bungkam</string>
<string name="all">Semua</string>
<string name="devices">Perangkat</string>
<string name="settings_rename">Nama perangkat</string>
<string name="settings_dark_mode">Tema gelap</string>
<string name="settings_more_settings_title">Pengaturan selebihnya</string>
<string name="settings_more_settings_text">Tiap pengaturan perangkat bisa ditemukan dibawah \'pengaturan Plugin\' dari setiap sebuah perangkat.</string>
<string name="setting_persistent_notification">Tampilkan notifikasi kukuh</string>
<string name="setting_persistent_notification_oreo">Notifikasi kukuh</string>
<string name="setting_persistent_notification_description">Ketuk untuk memfungsikan/menonfungsikan dalam pengaturan Notifikasi</string>
<string name="extra_options">Opsi ekstra</string>
<string name="privacy_options">Opsi privasi</string>
<string name="set_privacy_options">Atur opsi privasimu</string>
<string name="block_contents">Blokir konten-konten notifikasi</string>
<string name="block_images">Blokir citra-citra dalam notifikasi</string>
<string name="notification_channel_receivenotification">Notifikasi dari perangkat lainnya</string>
<string name="take_picture">Luncurkan kamera</string>
<string name="plugin_photo_desc">Luncurkan sebuah aplikasi kamera agar memudahkan pe</string>
<string name="no_app_for_opening">Tidak menemukan aplikasi yang pantas untuk membuka file ini</string>
<string name="remote_keyboard_service">Keyboard Remote KDE Connect</string>
<string name="presenter_pointer">Penunjuk</string>
<string name="trusted_networks">Jaringan terpercaya</string>
<string name="trusted_networks_desc">Membatasi autodiscovery untuk mengetahui jaringan</string>
<string name="add_trusted_network">Tambahkan %1s</string>
<string name="empty_trusted_networks_list_text">Kamu belum memiliki jaringan terpercaya apa pun yang ditambahkan</string>
<string name="allow_all_networks_text">Bolehkan semua</string>
<string name="location_permission_needed_title">Diperlukan perizinan</string>
<string name="location_permission_needed_desc">Android memerlukan perizinan Lokasi untuk mengidentifikasi jaringan WiFi kamu</string>
<string name="clipboard_android_x_incompat">Android 10 telah menghapus akses clipboard ke semua aplikasi. Plugin ini akan dinonfungsikan.</string>
<string name="mpris_open_url">Lanjut memutar di sini</string>
<string name="cant_open_url">Tidak bisa membuka URL untuk melanjutkan pemutaran</string>
<string name="bigscreen_home">Rumah</string>
<string name="bigscreen_up">Naik</string>
<string name="bigscreen_left">Kiri</string>
<string name="bigscreen_select">Pilih</string>
<string name="bigscreen_right">Kanan</string>
<string name="bigscreen_down">Turun</string>
<string name="bigscreen_mic">Mic</string>
<string name="pref_plugin_bigscreen">Remot bigscreen</string>
<string name="pref_plugin_bigscreen_desc">Gunakan perangkatmu sebagai remot untuk Plasma Bigsreen</string>
<string name="bigscreen_optional_permission_explanation">Untuk membagikan input mikrofon dari ponselmu kamu perlu memberikan akses terhadap input audio si ponsel</string>
<string name="bigscreen_speech_extra_prompt">Ucapan</string>
<string name="message_reply_label">BALAS</string>
<string name="mark_as_read_label">TANDAI SEBAGAI SUDAH DIBACA</string>
<string name="user_display_name">KAMU</string>
<string name="set_default_sms_app_title">Kirim MMS</string>
<string name="set_group_message_as_mms_title">Kirim MMS grup</string>
<string name="set_long_text_as_mms_title">Kirim pesan text panjang sebagai MMS</string>
<string name="convert_to_mms_after_title">Konversikan ke MMS</string>
<string-array name="convert_to_mms_after_entries">
<item>Setelah satu pesan</item>
<item>Setelah dua pesan</item>
<item>Setelah tiga pesan</item>
<item>Setelah empat pesan</item>
<item>Setelah lima pesan</item>
<item>After one message</item>
<item>After two messages</item>
<item>After three messages</item>
<item>After four messages</item>
<item>After five messages</item>
</string-array>
<string name="theme_dialog_title">Pilih tema</string>
<string-array name="theme_list">
<item>Atur berdasarkan Hemat Baterai</item>
<item>Terang</item>
<item>Gelap</item>
<item>Set by Battery Saver</item>
<item/>
<item>Dark</item>
</string-array>
<string-array name="theme_list_v28">
<item>Sistem Default</item>
<item>Terang</item>
<item>Gelap</item>
<item/>
<item/>
<item>Dark</item>
</string-array>
<string name="report_bug">Laporkan Bug</string>
<string name="donate">Donasi</string>
<string name="source_code">Kode Sumber</string>
<string name="licenses">Lisensi</string>
</resources>

View File

@@ -8,8 +8,6 @@
<string name="pref_plugin_telephony_desc">Invia notifiche per le chiamate in ingresso</string>
<string name="pref_plugin_battery">Livello batteria</string>
<string name="pref_plugin_battery_desc">Comunica periodicamente lo stato della batteria</string>
<string name="pref_plugin_connectivity_report">Indicatore di connettività</string>
<string name="pref_plugin_connectivity_report_desc">Riporta la potenza e lo stato del segnale di rete</string>
<string name="pref_plugin_sftp">Esposizione filesystem</string>
<string name="pref_plugin_sftp_desc">Consente di navigare da remoto il filesystem del dispositivo</string>
<string name="pref_plugin_clipboard">Sincronizzazione appunti</string>
@@ -76,21 +74,6 @@
<item>Più forte</item>
<item>La più forte</item>
</string-array>
<string name="sendkeystrokes_send_to">Invia combinazioni di tasti a</string>
<string name="sendkeystrokes_textbox_hint">Invia combinazioni di tasti all\'host</string>
<string name="sendkeystrokes_disabled_toast">L\'invio di combinazioni di tasti è disabilitato: abilitalo nelle impostazioni</string>
<string name="sendkeystrokes_wrong_data">Tipo MIME non valido: deve essere «text/x-keystrokes»</string>
<string name="sendkeystrokes_sent_text">Inviato %1s al dispositivo %2s</string>
<string name="sendkeystrokes_pref_category_summary">Questo modulo consente ad altre applicazioni di condividere segmenti di testo come sequenze di tasti che saranno inviate all\'host connesso</string>
<string name="sendkeystrokes_pref_category_title">Invia combinazioni di tasti</string>
<string name="sendkeystrokes_pref_enabled">Abilita l\'invio di combinazioni di tasti</string>
<string name="sendkeystrokes_pref_enabled_summary">Intercetta i dati con il tipo MIME «text/x-keystrokes»</string>
<string name="sendkeystrokes_safe_text_enabled">Invia subito un testo sicuro</string>
<string name="sendkeystrokes_safe_text_enabled_summary">Invia brevi stringhe composte da soli numeriche senza conferma</string>
<string name="pref_plugin_mousepad_send_keystrokes">Invia come combinazioni di tasti</string>
<string name="mouse_receiver_plugin_description">Ricevi i movimenti remoti del mouse</string>
<string name="mouse_receiver_plugin_name">Ricevitore del mouse</string>
<string name="mouse_receiver_no_permissions">Devi abilitare Servizio di accessibilità</string>
<string name="category_connected_devices">Dispositivi connessi</string>
<string name="category_not_paired_devices">Dispositivi disponibili</string>
<string name="category_remembered_devices">Dispositivi memorizzati</string>
@@ -106,8 +89,8 @@
<string name="error_canceled_by_other_peer">Annullata dal dispositivo remoto</string>
<string name="encryption_info_title">Informazioni di cifratura</string>
<string name="encryption_info_msg_no_ssl">L\'altro dispositivo non utilizza una versione recente di KDE Connect, utilizzando il metodo di cifratura precedente.</string>
<string name="my_device_fingerprint">L\'impronta digitale SHA256 del certificato di dispositivo è:</string>
<string name="remote_device_fingerprint">L\'impronta digitale SHA256 del certificato del dispositivo remoto è:</string>
<string name="my_device_fingerprint">L\'impronta digitale SHA1 del certificato di dispositivo è:</string>
<string name="remote_device_fingerprint">L\'impronta digitale SHA1 del certificato di dispositivo remoto è:</string>
<string name="pair_requested">Richiesta di associazione</string>
<string name="pairing_request_from">Richiesta associazione da %1s</string>
<plurals name="incoming_file_title">
@@ -243,7 +226,7 @@
<string name="permission_explanation">Questa estensione ha bisogno di permessi per funzionare</string>
<string name="optional_permission_explanation">Devi concedere permessi aggiuntivi per abilitare tutte le funzioni</string>
<string name="plugins_need_optional_permission">Alcune estensioni hanno funzioni disabilitate per una mancanza di permessi (tocca per maggiori informazioni):</string>
<string name="share_optional_permission_explanation">Per ricevere file condivisi è necessario scegliere una cartella di destinazione</string>
<string name="share_optional_permission_explanation">Per condividere i file tra il telefono e il tuo desktop devi dare accesso alla memoria del telefono</string>
<string name="telepathy_permission_explanation">Per leggere e scrivere SMS dal tuo desktop, devi concedere l\'autorizzazione per SMS</string>
<string name="telephony_permission_explanation">Per vedere le chiamate telefoniche dal desktop devi dare l\'autorizzazione per accedere al registro delle chiamate e allo stato del telefono</string>
<string name="telephony_optional_permission_explanation">Per vedere il nome di un contatto invece del numero di telefono devi dare accesso alla rubrica del telefono</string>
@@ -268,7 +251,6 @@
<string name="notification_channel_media_control">Controllo multimediale</string>
<string name="notification_channel_filetransfer">Trasferimento file</string>
<string name="notification_channel_high_priority">Priorità alta</string>
<string name="notification_channel_sms_mms">Nuovo messaggio</string>
<string name="mpris_stop">Ferma il lettore attuale</string>
<string name="copy_url_to_clipboard">Copia l\'URL negli appunti</string>
<string name="clipboard_toast">Copiato negli appunti</string>
@@ -323,13 +305,16 @@
<string name="pref_plugin_bigscreen_desc">Utilizza il tuo dispositivo come telecomando per Plasma Bigscreen</string>
<string name="bigscreen_optional_permission_explanation">Per condividere l\'ingresso del microfono dal telefono è necessario consentire l\'accesso all\'ingresso audio del telefono</string>
<string name="bigscreen_speech_extra_prompt">Parlato</string>
<string name="message_reply_label">RISPONDI</string>
<string name="mark_as_read_label">MARCA COME LETTO</string>
<string name="user_display_name">Tu</string>
<string name="set_default_sms_app_title">Invia MMS</string>
<string name="set_group_message_as_mms_title">Invia MMS di gruppo</string>
<string name="set_long_text_as_mms_title">Invia testo lungo come MMS</string>
<string name="convert_to_mms_after_title">Converti in MMS</string>
<string name="sms_pref_set_mmsc_dialog_desc">Imposta MMSC</string>
<string name="sms_pref_set_mmsc_title">MMSC</string>
<string name="sms_pref_set_mms_proxy_dialog_desc">Imposta proxy MMS</string>
<string name="sms_pref_set_mms_proxy_title">Proxy MMS</string>
<string name="sms_pref_set_mms_port_dialog_desc">Impostare porta MMS</string>
<string name="sms_pref_set_mms_port_title">Porta MMS</string>
<string-array name="convert_to_mms_after_entries">
<item>Dopo un messaggio</item>
<item>Dopo due messaggi</item>
@@ -348,8 +333,4 @@
<item>Chiaro</item>
<item>Scuro</item>
</string-array>
<string name="report_bug">Segnala un errore</string>
<string name="donate">Fai una donazione</string>
<string name="source_code">Codice sorgente</string>
<string name="licenses">Licenze</string>
</resources>

View File

@@ -74,6 +74,8 @@
<string name="error_canceled_by_other_peer">בוטל על ידי מישהו אחר</string>
<string name="encryption_info_title">פרטי הצפנה</string>
<string name="encryption_info_msg_no_ssl">ההתקן השני אינו משתמש בגרסה האחרונה של KDE Connect, משתמש בשיטת ההצפנה הישנה.</string>
<string name="my_device_fingerprint">טביעת האצבע SHA1 של ההתקן היא:</string>
<string name="remote_device_fingerprint">"טביעת האצבע SHA1 של ההתקן המרוחק היא: "</string>
<string name="pair_requested">בקשת התאמה</string>
<string name="pairing_request_from">בוקשה התאמה מ־%1s</string>
<string name="received_file_text">לחץ כדי לפתוח את \"%1s\"</string>

View File

@@ -86,6 +86,8 @@
<string name="error_canceled_by_other_peer">他のピアにキャンセルされました</string>
<string name="encryption_info_title">暗号化情報</string>
<string name="encryption_info_msg_no_ssl">他のデバイスは最近のバージョンの KDE Connect を利用していません。古い暗号化方式を使用しています</string>
<string name="my_device_fingerprint">このデバイスの証明書の SHA1 フィンガープリント:</string>
<string name="remote_device_fingerprint">リモートデバイスの証明書の SHA1 フィンガープリント:</string>
<string name="pair_requested">ペアリング要求済み</string>
<string name="pairing_request_from">%1s からペアリングを要求されました</string>
<plurals name="incoming_file_title">
@@ -208,6 +210,7 @@
<string name="permission_explanation">このプラグインが機能するには権限が必要です</string>
<string name="optional_permission_explanation">すべての機能を有効にするには、追加の権限を許可する必要があります</string>
<string name="plugins_need_optional_permission">権限が不足しているため、いくつかのプラグインの機能は無効化されています (タップして詳細情報を表示):</string>
<string name="share_optional_permission_explanation">スマートフォンとデスクトップ間でファイルを共有するには、端末のストレージへのアクセスを許可する必要があります</string>
<string name="telepathy_permission_explanation">デスクトップから SMS を送受信するには SMS の権限を付与する必要があります</string>
<string name="telephony_permission_explanation">デスクトップで通話を表示するために、電話の状態と通話履歴の権限を許可する必要があります</string>
<string name="telephony_optional_permission_explanation">電話番号ではなく連絡先名を見るには、端末の連絡先へのアクセスを許可する必要があります</string>

View File

@@ -89,6 +89,8 @@
<string name="error_canceled_by_other_peer">다른 쪽에서 취소함</string>
<string name="encryption_info_title">암호화 정보</string>
<string name="encryption_info_msg_no_ssl">다른 장치에서 KDE Connect의 최근 버전을 실행하고 있지 않아서 레거시 암호화를 사용합니다.</string>
<string name="my_device_fingerprint">내 장치 인증서의 SHA1 지문:</string>
<string name="remote_device_fingerprint">원격 장치 인증서의 SHA1 지문:</string>
<string name="pair_requested">연결 요청됨</string>
<string name="pairing_request_from">%1s에서 연결 요청</string>
<plurals name="incoming_file_title">
@@ -203,8 +205,6 @@
<string name="no_file_browser">설치된 파일 탐색기가 없습니다.</string>
<string name="pref_plugin_telepathy">SMS 보내기</string>
<string name="pref_plugin_telepathy_desc">데스크톱에서 문자 메시지 보내기</string>
<string name="pref_plugin_telepathy_mms">MMS 보내기</string>
<string name="pref_plugin_telepathy_mms_desc">KDE Connect에서 MMS를 보내려면 기본 SMS 앱으로 설정해야 합니다.</string>
<string name="findmyphone_title">내 휴대폰 찾기</string>
<string name="findmyphone_title_tablet">내 태블릿 찾기</string>
<string name="findmyphone_title_tv">내 TV 찾기</string>
@@ -216,6 +216,7 @@
<string name="permission_explanation">이 플러그인을 사용하려면 권한이 필요합니다</string>
<string name="optional_permission_explanation">모든 기능을 사용하려면 추가 권한이 필요합니다</string>
<string name="plugins_need_optional_permission">일부 플러그인은 권한이 없어서 비활성화되었습니다(정보를 보려면 누르기):</string>
<string name="share_optional_permission_explanation">휴대폰과 데스크톱간 파일을 공유하려면 휴대폰 저장소 접근 권한이 필요합니다</string>
<string name="telepathy_permission_explanation">데스크톱에서 문자 메시지를 읽고 보내려면 문자 메시지 접근 권한이 필요합니다</string>
<string name="telephony_permission_explanation">데스크톱에서 통화와 문자 메시지를 보려면 통화 기록 및 휴대폰 상태 접근 권한이 필요합니다</string>
<string name="telephony_optional_permission_explanation">전화번호 대신 연락처에 등록된 이름을 보려면 주소록 접근 권한이 필요합니다</string>
@@ -240,7 +241,6 @@
<string name="notification_channel_media_control">미디어 제어</string>
<string name="notification_channel_filetransfer">파일 전송</string>
<string name="notification_channel_high_priority">높은 우선 순위</string>
<string name="notification_channel_sms_mms">새 메시지</string>
<string name="mpris_stop">현재 재생기 정지</string>
<string name="copy_url_to_clipboard">클립보드로 URL 복사</string>
<string name="clipboard_toast">클립보드에 복사됨</string>
@@ -295,19 +295,12 @@
<string name="pref_plugin_bigscreen_desc">내 장치를 Plasma 큰 화면의 리모콘으로 사용</string>
<string name="bigscreen_optional_permission_explanation">휴대폰 마이크 입력을 공유하려면 오디오 입력 접근 권한이 필요합니다</string>
<string name="bigscreen_speech_extra_prompt">말하기</string>
<string name="message_reply_label">답장</string>
<string name="mark_as_read_label">읽은 상태로 표시</string>
<string name="user_display_name"></string>
<string name="set_default_sms_app_title">MMS 보내기</string>
<string name="set_group_message_as_mms_title">그룹 MMS 보내기</string>
<string name="set_long_text_as_mms_title">긴 텍스트를 MMS로 보내기</string>
<string name="convert_to_mms_after_title">MMS로 변환</string>
<string-array name="convert_to_mms_after_entries">
<item>메시지 1개 이후</item>
<item>메시지 2개 이후</item>
<item>메시지 3개 이후</item>
<item>메시지 4개 이후</item>
<item>메시지 5개 이후</item>
<item>After one message</item>
<item>After two messages</item>
<item>After three messages</item>
<item>After four messages</item>
<item>After five messages</item>
</string-array>
<string name="theme_dialog_title">테마 선택</string>
<string-array name="theme_list">
@@ -315,9 +308,4 @@
<item>밝음</item>
<item>어두움</item>
</string-array>
<string-array name="theme_list_v28">
<item>시스템 기본값</item>
<item>밝음</item>
<item>어두움</item>
</string-array>
</resources>

View File

@@ -89,7 +89,8 @@
<string name="error_canceled_by_other_peer">Lygiarangis atsisakė</string>
<string name="encryption_info_title">Šifravimo informacija</string>
<string name="encryption_info_msg_no_ssl">Kitas įrenginys nenaudoja paskiausios KDE Connect versijos, naudojamas pasenęs šifravimo metodas.</string>
<string name="remote_device_fingerprint">Nuotolinio įrenginio liudijimo SHA256 kontrolinis kodas yra:</string>
<string name="my_device_fingerprint">Jūsų įrenginio liudijimo SHA1 kontrolinis kodas yra:</string>
<string name="remote_device_fingerprint">Nuotolinio įrenginio liudijimo SHA1 kontrolinis kodas yra:</string>
<string name="pair_requested">Užklaustas suporavimas</string>
<string name="pairing_request_from">Suporavimo užklausa iš %1s</string>
<plurals name="incoming_file_title">
@@ -228,8 +229,6 @@
<string name="no_file_browser">Nėra įdiegta jokių failų tvarkytuvių.</string>
<string name="pref_plugin_telepathy">Siųsti SMS žinutę</string>
<string name="pref_plugin_telepathy_desc">Siųsti tekstines žinutes iš savo darbalaukio</string>
<string name="pref_plugin_telepathy_mms">Siųsti MMS žinutę</string>
<string name="pref_plugin_telepathy_mms_desc">Norėdami siųsti MMS iš KDE Connect, turite nustatyti ją kaip numatytąją SMS programėlę.</string>
<string name="findmyphone_title">Rasti telefoną</string>
<string name="findmyphone_title_tablet">Rasti planšetę</string>
<string name="findmyphone_title_tv">Rasti televizorių</string>
@@ -241,7 +240,7 @@
<string name="permission_explanation">Šis papildinys tam, kad veiktų, reikalauja leidimų</string>
<string name="optional_permission_explanation">Norėdami įjungti visas funkcijas, turite suteikti papildomus leidimus</string>
<string name="plugins_need_optional_permission">Kai kurių papildinių ypatybės, dėl leidimų trūkumo, buvo išjungtos (bakstelėkite išsamesnei informacijai):</string>
<string name="share_optional_permission_explanation">Norėdami gauti bendrinamus failus, turite pasirinkti paskirties katalogą</string>
<string name="share_optional_permission_explanation">Norėdami bendrinti failus tarp savo telefono ir savo darbalaukio, turite suteikti prieigą prie telefono saugyklos</string>
<string name="telepathy_permission_explanation">Norėdami skaityti ir rašyti SMS žinutes iš savo darbalaukio, turite suteikti prieigą prie SMS žinučių</string>
<string name="telephony_permission_explanation">Norėdami matyti telefono skambučius darbalaukyje, turite suteikti prieigą prie telefono skambučių žurnalo ir telefono būsenos</string>
<string name="telephony_optional_permission_explanation">Norėdami vietoj adresato numerio matyti adresato vardą, turite suteikti priegą prie telefono adresatų</string>
@@ -266,7 +265,6 @@
<string name="notification_channel_media_control">Įvairialypės terpės valdymas</string>
<string name="notification_channel_filetransfer">Failų persiuntimas</string>
<string name="notification_channel_high_priority">Didelė pirmenybė</string>
<string name="notification_channel_sms_mms">Nauja žinutė</string>
<string name="mpris_stop">Stabdyti dabartinę leistuvę</string>
<string name="copy_url_to_clipboard">Kopijuoti URL į iškarpinę</string>
<string name="clipboard_toast">Nukopijuota į iškarpinę</string>
@@ -321,19 +319,12 @@
<string name="pref_plugin_bigscreen_desc">Naudoti savo įrenginį kaip Plasma Bigscreen nuotolinį pultą</string>
<string name="bigscreen_optional_permission_explanation">Norėdami bendrinti mikrofono įvesti iš savo telefono, turite suteikti priegą prie telefono garso įvesties</string>
<string name="bigscreen_speech_extra_prompt">Šneka</string>
<string name="message_reply_label">ATSAKYTI</string>
<string name="mark_as_read_label">ŽYMĖTI KAIP SKAITYTĄ</string>
<string name="user_display_name">Jūs</string>
<string name="set_default_sms_app_title">Siųsti MMS žinutę</string>
<string name="set_group_message_as_mms_title">Siųsti grupinę MMS žinutę</string>
<string name="set_long_text_as_mms_title">Siųsti ilgą tekstą kaip MMS žinutę</string>
<string name="convert_to_mms_after_title">Kovertuoti į MMS žinutę</string>
<string-array name="convert_to_mms_after_entries">
<item>Po vienos žinutės</item>
<item>Po dviejų žinučių</item>
<item>Po trijų žinučių</item>
<item>Po keturių žinučių</item>
<item>Po penkių žinučių</item>
<item>After one message</item>
<item>After two messages</item>
<item>After three messages</item>
<item>After four messages</item>
<item>After five messages</item>
</string-array>
<string name="theme_dialog_title">Pasirinkite apipavidalinimą</string>
<string-array name="theme_list">
@@ -341,13 +332,4 @@
<item>Šviesus</item>
<item>Tamsus</item>
</string-array>
<string-array name="theme_list_v28">
<item>Sistemos numatytasis</item>
<item>Šviesus</item>
<item>Tamsus</item>
</string-array>
<string name="report_bug">Pranešti apie programos klaidą</string>
<string name="donate">Paaukoti</string>
<string name="source_code">Pradinis kodas</string>
<string name="licenses">Licencijos</string>
</resources>

View File

@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="primaryDark">@android:color/black</color>
<color name="primaryDark">#333333</color>
<color name="darkGrey">#555555</color>
<color name="darkToolbarBackground">#222222</color>
<color name="darkStatusBarBackground">#333333</color>
@@ -8,13 +8,10 @@
<color name="on_high_contrast">@android:color/white</color>
<color name="text_color_primary">@android:color/white</color>
<color name="text_color">@android:color/white</color>
<color name="toolbar_color">@android:color/black</color>
<color name="card_stroke_color">#8C8C8C</color>
<color name="activity_background">@android:color/black</color>
<item name="lightMode" type="bool">false</item>
<color name="toolbar_color">#222222</color>
<!-- This is for dark theme. In dark theme both selected and unselected text in the
navigation bar should be white. This is different from the light theme as both states have
different colors so light theme has a selector for this value-->
<color name="state_list_drawer_text">@android:color/white</color>
</resources>
</resources>

View File

@@ -8,8 +8,6 @@
<string name="pref_plugin_telephony_desc">Stuur meldingen voor inkomende oproepen</string>
<string name="pref_plugin_battery">Batterijrapportage</string>
<string name="pref_plugin_battery_desc">Rapporteer periodiek de status van de batterij</string>
<string name="pref_plugin_connectivity_report">Rapport over connectiviteit</string>
<string name="pref_plugin_connectivity_report_desc">Signaalsterkte en status van netwerk rapporteren</string>
<string name="pref_plugin_sftp">Bestandssysteem blootstellen</string>
<string name="pref_plugin_sftp_desc">Het bladeren in het bestandssysteem van het apparaat op afstand toestaan</string>
<string name="pref_plugin_clipboard">Klembordsynchronisatie</string>
@@ -76,21 +74,6 @@
<item>Sterker</item>
<item>Sterkst</item>
</string-array>
<string name="sendkeystrokes_send_to">Toetsaanslagen verzenden naar</string>
<string name="sendkeystrokes_textbox_hint">Toetsaanslagen verzenden naar host</string>
<string name="sendkeystrokes_disabled_toast">Verzenden van toetsaanslagen is uitgeschakeld - schakel het in in de instellingen</string>
<string name="sendkeystrokes_wrong_data">Ongeldig mime-type - moet \'text/x-keystrokes\' zijn</string>
<string name="sendkeystrokes_sent_text">%1s verzenden naar apparaat %2s</string>
<string name="sendkeystrokes_pref_category_summary">Deze module biedt andere toepassingen om tekstsegmenten als toetsaanslagen te delen die verzonden gaan worden naar de verbonden host</string>
<string name="sendkeystrokes_pref_category_title">Toetsaanslagen verzenden</string>
<string name="sendkeystrokes_pref_enabled">Toetsaanslagen verzenden inschakelen</string>
<string name="sendkeystrokes_pref_enabled_summary">Luister naar gegevens met mime-type \'text/x-keystrokes\'</string>
<string name="sendkeystrokes_safe_text_enabled">Stuur tekst voor opslag onmiddellijk</string>
<string name="sendkeystrokes_safe_text_enabled_summary">Stuur korte alleen-numerieke tekenreeks zonder confirmatie</string>
<string name="pref_plugin_mousepad_send_keystrokes">Als toetsaanslagen verzenden</string>
<string name="mouse_receiver_plugin_description">Muisbewegingen van afstand ontvangen</string>
<string name="mouse_receiver_plugin_name">Muisontvanger</string>
<string name="mouse_receiver_no_permissions">U moet service toegankelijkheid inschakelen</string>
<string name="category_connected_devices">Verbonden apparaten</string>
<string name="category_not_paired_devices">Beschikbare apparaten</string>
<string name="category_remembered_devices">Onthouden apparaten</string>
@@ -106,8 +89,8 @@
<string name="error_canceled_by_other_peer">Geannuleerd door andere kant</string>
<string name="encryption_info_title">Versleutelde informatie</string>
<string name="encryption_info_msg_no_ssl">Het andere apparaat gebruikt geen recente versie van KDE Connect, de verouderde versleutelingsmethode zal worden gebruikt.</string>
<string name="my_device_fingerprint">De SHA256 vingerafdruk van het certificaat van uw apparaat is:</string>
<string name="remote_device_fingerprint">De SHA256 vingerafdruk van het certificaat van het apparaat op afstand is:</string>
<string name="my_device_fingerprint">De SHA1 vingerafdruk van het certificaat van uw apparaat is:</string>
<string name="remote_device_fingerprint">De SHA1 vingerafdruk van het certificaat van het apparaat op afstand is:</string>
<string name="pair_requested">Paarvorming gevraagd</string>
<string name="pairing_request_from">Verzoek om een paar te maken van %1s</string>
<plurals name="incoming_file_title">
@@ -243,7 +226,7 @@
<string name="permission_explanation">Deze plug-in heeft toestemming nodig om te werken</string>
<string name="optional_permission_explanation">U moet toestemming geven om alle functies in te schakelen</string>
<string name="plugins_need_optional_permission">Sommige plug-ins hebben functies uitgeschakeld vanwege ontbrekende toestemming (tik voor meer informatie):</string>
<string name="share_optional_permission_explanation">Om gedeelde bestanden te ontvangen moet u een bestemmingsmap kiezen</string>
<string name="share_optional_permission_explanation">Om bestanden tussen uw telefoon en uw bureaublad te delen moet u toegang geven tot de opslag van uw telefoon</string>
<string name="telepathy_permission_explanation">Om een SMS te lezen of te schrijven vanaf uw bureaublad moet u toestemming geven tot SMS</string>
<string name="telephony_permission_explanation">Om telefoonoproepen te zien op het bureaublad moet u toestemming geven tot telefoonoproeplogs en telefoonstatus</string>
<string name="telephony_optional_permission_explanation">Om een naam van een contactpersoon te zien in plaats van een telefoonnummer moet u toegang geven tot de contacten in uw telefoon</string>
@@ -268,7 +251,6 @@
<string name="notification_channel_media_control">Besturing van media</string>
<string name="notification_channel_filetransfer">Bestandsoverdracht</string>
<string name="notification_channel_high_priority">Hoge prioriteit</string>
<string name="notification_channel_sms_mms">Nieuw bericht</string>
<string name="mpris_stop">Stop de huidige speler</string>
<string name="copy_url_to_clipboard">URL-adres kopiëren naar klembord</string>
<string name="clipboard_toast">Gekopieerd naar klembord</string>
@@ -323,13 +305,16 @@
<string name="pref_plugin_bigscreen_desc">Gebruik uw apparaat als een Bigscreen op afstand</string>
<string name="bigscreen_optional_permission_explanation">Om microfooninvoer vanaf uw telefoon te delen moet u toegang geven tot de geluidsinvoer van de telefoon</string>
<string name="bigscreen_speech_extra_prompt">Spraak</string>
<string name="message_reply_label">BEANTWOORDEN</string>
<string name="mark_as_read_label">MARKEREN ALS GELEZEN</string>
<string name="user_display_name">U</string>
<string name="set_default_sms_app_title">MMS verzenden</string>
<string name="set_group_message_as_mms_title">MMS verzenden naar groep</string>
<string name="set_long_text_as_mms_title">Lange tekst als MMS verzenden</string>
<string name="convert_to_mms_after_title">Naar MMS converteren</string>
<string name="sms_pref_set_mmsc_dialog_desc">MMSC instellen</string>
<string name="sms_pref_set_mmsc_title">MMSC</string>
<string name="sms_pref_set_mms_proxy_dialog_desc">MMS-proxy instellen</string>
<string name="sms_pref_set_mms_proxy_title">MMS-proxy</string>
<string name="sms_pref_set_mms_port_dialog_desc">MMS-poort instellen</string>
<string name="sms_pref_set_mms_port_title">MMS-poort</string>
<string-array name="convert_to_mms_after_entries">
<item>Na één bericht</item>
<item>Na twee berichten</item>
@@ -348,8 +333,4 @@
<item>Licht</item>
<item>Donker</item>
</string-array>
<string name="report_bug">Bug rapporteren</string>
<string name="donate">Doneren</string>
<string name="source_code">Broncode</string>
<string name="licenses">Licenties</string>
</resources>

View File

@@ -8,8 +8,6 @@
<string name="pref_plugin_telephony_desc">Send varsling ved oppringing</string>
<string name="pref_plugin_battery">Batterirapport</string>
<string name="pref_plugin_battery_desc">Meld regelmessig frå om batteristatusen</string>
<string name="pref_plugin_connectivity_report">Sambandsrapport</string>
<string name="pref_plugin_connectivity_report_desc">Rapporter signalstyrke og status for nettverket</string>
<string name="pref_plugin_sftp">Vis filsystem</string>
<string name="pref_plugin_sftp_desc">Tillat lesing av filsystemet frå datamaskina</string>
<string name="pref_plugin_clipboard">Synkroniser utklippstavle</string>
@@ -76,18 +74,6 @@
<item>Sterkare</item>
<item>Sterkast</item>
</string-array>
<string name="sendkeystrokes_send_to">Send tastetrykk til</string>
<string name="sendkeystrokes_textbox_hint">Send tastetrykk til verten</string>
<string name="sendkeystrokes_disabled_toast">Sending av tastetrykk er slått av. Du kan slå det på i innstillingane.</string>
<string name="sendkeystrokes_wrong_data">Ugyldig MIME-type  må vera «text/x-keystrokes»</string>
<string name="sendkeystrokes_sent_text">Sende %1s til eininga %2s</string>
<string name="sendkeystrokes_pref_category_summary">Lèt andre appar dela tekstbitar som tastetrykk, som vert sende til den tilkopla verten</string>
<string name="sendkeystrokes_pref_category_title">Send tastetrykk</string>
<string name="sendkeystrokes_pref_enabled">Slå på sending av tastetrykk</string>
<string name="sendkeystrokes_pref_enabled_summary">Lytt etter data med MIME-typen «text/x-keystrokes»</string>
<string name="sendkeystrokes_safe_text_enabled">Send sikker tekst med ein gong</string>
<string name="sendkeystrokes_safe_text_enabled_summary">Send korte tekstar med berre siffer utan stadfesting</string>
<string name="pref_plugin_mousepad_send_keystrokes">Send som tastetrykk</string>
<string name="category_connected_devices">Tilkopla einingar</string>
<string name="category_not_paired_devices">Tilgjengelege einingar</string>
<string name="category_remembered_devices">Hugsa einingar</string>
@@ -103,7 +89,8 @@
<string name="error_canceled_by_other_peer">Avbroten av den andre eininga</string>
<string name="encryption_info_title">Krypteringsinfo</string>
<string name="encryption_info_msg_no_ssl">Den andre eininga brukar ein gammal versjon av KDE Connect, med ein utdatert krypteringsmetode.</string>
<string name="remote_device_fingerprint">SHA-256-fingeravtrykket til fjerneiningssertifikatet er:</string>
<string name="my_device_fingerprint">SHA-fingeravtrykket til einingssertifikatet er:</string>
<string name="remote_device_fingerprint">SHA-fingeravtrykket fjerneiningssertifikatet er:</string>
<string name="pair_requested">Paringsførespurnad</string>
<string name="pairing_request_from">Paringsførespurnad frå %1s</string>
<plurals name="incoming_file_title">
@@ -226,8 +213,6 @@
<string name="no_file_browser">Ingen filhandsamarar er installerte.</string>
<string name="pref_plugin_telepathy">Send SMS</string>
<string name="pref_plugin_telepathy_desc">Send tekstmeldingar frå datamaskina</string>
<string name="pref_plugin_telepathy_mms">Send MMS</string>
<string name="pref_plugin_telepathy_mms_desc">Du må velja KDE Connect som standard­app for å kunna senda MMS.</string>
<string name="findmyphone_title">Finn telefonen min</string>
<string name="findmyphone_title_tablet">Finn nettbrettet mitt</string>
<string name="findmyphone_title_tv">Finn TV-en min</string>
@@ -239,7 +224,7 @@
<string name="permission_explanation">Dette tillegget treng utvida løyve for å fungera</string>
<string name="optional_permission_explanation">Du må gje utvida løyve for at alle funksjonane skal fungera</string>
<string name="plugins_need_optional_permission">På grunn av manglande løyve vil desse funksjonane ikkje verka (trykk på dei for meir informasjon):</string>
<string name="share_optional_permission_explanation">For å kunna ta imot delte filer må du velja ei målmappe</string>
<string name="share_optional_permission_explanation">For å kunna dela filer mellom telefonen og datamaskina må du gje appen lese- og skriveløyve til lagringsområdet på telefonen</string>
<string name="telepathy_permission_explanation">For å kunna lesa og skriva tekstmeldingar frå datamaskina må du gje appen tilgang til SMS</string>
<string name="telephony_permission_explanation">For å kunna sjå telefonsamtalar på datamaskina må du gje appen tilgang til samtaleloggar og telefonstatus</string>
<string name="telephony_optional_permission_explanation">For å kunna sjå namn på kontaktar i staden for berre telefonnummeret må du gje appen tilgang til kontaktlista di</string>
@@ -264,7 +249,6 @@
<string name="notification_channel_media_control">Mediestyring</string>
<string name="notification_channel_filetransfer">Filoverføring</string>
<string name="notification_channel_high_priority">Høg prioritet</string>
<string name="notification_channel_sms_mms">Ny melding</string>
<string name="mpris_stop">Stopp gjeldande avspelar</string>
<string name="copy_url_to_clipboard">Kopier adresse til utklippstavla</string>
<string name="clipboard_toast">Kopiert til utklippstavla</string>
@@ -319,19 +303,12 @@
<string name="pref_plugin_bigscreen_desc">Bruk eininga som fjernkontroll for Plasma Bigscreen</string>
<string name="bigscreen_optional_permission_explanation">For å kunna dela mikrofon­lyd frå telefonen må du gje appen mikrofontilgang</string>
<string name="bigscreen_speech_extra_prompt">Tale</string>
<string name="message_reply_label">SVAR</string>
<string name="mark_as_read_label">MERK SOM LESEN</string>
<string name="user_display_name">Du</string>
<string name="set_default_sms_app_title">Send MMS</string>
<string name="set_group_message_as_mms_title">Send gruppe-MMS</string>
<string name="set_long_text_as_mms_title">Send lang tekst som MMS</string>
<string name="convert_to_mms_after_title">Gjer om til MMS</string>
<string-array name="convert_to_mms_after_entries">
<item>Etter éi melding</item>
<item>Etter to meldingar</item>
<item>Etter tre meldingar</item>
<item>Etter fire meldingar</item>
<item>Etter fem meldingar</item>
<item>After one message</item>
<item>After two messages</item>
<item>After three messages</item>
<item>After four messages</item>
<item>After five messages</item>
</string-array>
<string name="theme_dialog_title">Vel tema</string>
<string-array name="theme_list">
@@ -339,13 +316,4 @@
<item>Lyst</item>
<item>Mørkt</item>
</string-array>
<string-array name="theme_list_v28">
<item>Systemstandard</item>
<item>Lyst</item>
<item>Mørk</item>
</string-array>
<string name="report_bug">Meld frå om feil</string>
<string name="donate">Gje pengegåve</string>
<string name="source_code">Kjeldekode</string>
<string name="licenses">Lisensar</string>
</resources>

View File

@@ -1,50 +1,45 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="kde_connect">KDE Connect</string>
<string name="foreground_notification_no_devices">Niepołączony z żadnym urządzeniem</string>
<string name="foreground_notification_devices">Połączony z: %s</string>
<string name="foreground_notification_send_clipboard">Wysyłanie schowka</string>
<string name="pref_plugin_telephony">Powiadomienia o dzwonieniu</string>
<string name="pref_plugin_telephony_desc">Wysyła na inne urządzenie powiadomienia o rozmowach przychodzących na to urządzenie</string>
<string name="pref_plugin_battery">Zgłaszanie stanu baterii</string>
<string name="pref_plugin_battery_desc">Okresowo zgłasza stan naładowania baterii</string>
<string name="pref_plugin_connectivity_report">Zgłaszanie łączności</string>
<string name="pref_plugin_connectivity_report_desc">Zgłasza siłę i stanu sygnału sieciowego</string>
<string name="foreground_notification_no_devices">Niepodłączony do żadnego urządzenia</string>
<string name="foreground_notification_devices">Podłączony do: %s</string>
<string name="pref_plugin_telephony">Powiadomienia telefonu</string>
<string name="pref_plugin_telephony_desc">Wysyła powiadomienia o rozmowach przychodzących</string>
<string name="pref_plugin_battery">Stan baterii</string>
<string name="pref_plugin_battery_desc">Okresowo powiadamia o stanie baterii</string>
<string name="pref_plugin_sftp">Udostępnianie systemu plików</string>
<string name="pref_plugin_sftp_desc">Umożliwia przeglądanie systemu plików tego urządzenia z innego urządzenia</string>
<string name="pref_plugin_clipboard">Współdzielenie schowka</string>
<string name="pref_plugin_clipboard_desc">Współdzieli schowek między urządzeniami</string>
<string name="pref_plugin_clipboard_sent">Wysłano ze schowka</string>
<string name="pref_plugin_mousepad">Obsługa zdalna</string>
<string name="pref_plugin_mousepad_desc">Umożliwia użycie telefonu lub tabletu jako gładzika i klawiatury</string>
<string name="pref_plugin_sftp_desc">Daje dostęp do plików innemu urządzeniu</string>
<string name="pref_plugin_clipboard">Synchronizacja schowka</string>
<string name="pref_plugin_clipboard_desc">Udostępnia zawartość schowka</string>
<string name="pref_plugin_mousepad">Sterowanie z urządzenia przenośnego</string>
<string name="pref_plugin_mousepad_desc">Telefon lub tablet służy jako gładzik i klawiatura</string>
<string name="pref_plugin_presenter">Sterowanie prezentacją</string>
<string name="pref_plugin_presenter_desc">Przełącza strony przy użyciu telefonu</string>
<string name="pref_plugin_remotekeyboard">Odbieranie naciśnięć klawiszy</string>
<string name="pref_plugin_presenter_desc">Przełącza przeźrocza przy użyciu telefonu</string>
<string name="pref_plugin_remotekeyboard">Odbieranie zdalnych naciśnięć klawiszy</string>
<string name="pref_plugin_remotekeyboard_desc">Odbiera naciśnięcia klawiszy z innego urządzenia</string>
<string name="pref_plugin_mpris">Sterowanie odtwarzaczem</string>
<string name="pref_plugin_mpris_desc">Steruje odtwarzaczami z tego urządzenia na innym urządzeniu</string>
<string name="pref_plugin_mpris">Sterowanie multimediami</string>
<string name="pref_plugin_mpris_desc">Steruje odtwarzaczem multimedialnym</string>
<string name="pref_plugin_runcommand">Wykonywanie poleceń</string>
<string name="pref_plugin_runcommand_desc">Wykonuje polecenia na innym urządzeniu z tego urządzenia</string>
<string name="pref_plugin_contacts">Współdzielenie kontaktów</string>
<string name="pref_plugin_contacts_desc">Współdzieli książkę kontaktów między urządzeniami</string>
<string name="pref_plugin_ping">Wysłanie pingów</string>
<string name="pref_plugin_ping_desc">Odbiera i wysyła pingi między urządzeniami</string>
<string name="pref_plugin_notifications">Współdzielenie powiadomień</string>
<string name="pref_plugin_runcommand_desc">Wykonuje zdalne polecenia z telefonu lub tabletu</string>
<string name="pref_plugin_contacts">Synchronizacja kontaktów</string>
<string name="pref_plugin_contacts_desc">Synchronizuje książkę kontaktów urządzenia</string>
<string name="pref_plugin_ping">Ping</string>
<string name="pref_plugin_ping_desc">Wysyła i odbiera pingi</string>
<string name="pref_plugin_notifications">Synchronizacja powiadomień</string>
<string name="pref_plugin_notifications_desc">Wysyła powiadomienia na inne urządzenia</string>
<string name="pref_plugin_receive_notifications">Odbieranie powiadomień</string>
<string name="pref_plugin_receive_notifications_desc">Odbiera powiadomienia z innych urządzeń na to urządzenie</string>
<string name="pref_plugin_receive_notifications_desc">Odbiera powiadomienia z innych urządzeń</string>
<string name="pref_plugin_sharereceiver">Udostępnianie i pobieranie</string>
<string name="pref_plugin_sharereceiver_desc">Udostępnia pliki i adresy URL pomiędzy urządzeniami</string>
<string name="device_list_empty">Brak urządzeń</string>
<string name="ok">OK</string>
<string name="sad_ok">OK :(</string>
<string name="cancel">Anuluj</string>
<string name="open_settings">Otwórz ustawienia</string>
<string name="no_permissions">Aby uzyskać dostęp do powiadomień, należy przydzielić uprawnienia</string>
<string name="no_permission_mprisreceiver">Aby móc sterować odtwarzaczami na tym urządzeniu, należy udzielić dostępu do powiadomień</string>
<string name="no_permission_mprisreceiver">Aby móc sterować odtwarzaczami multimedialnymi, należy udzielić dostępu powiadomieniom</string>
<string name="no_permissions_remotekeyboard">Aby otrzymywać naciśnięcia klawiszy, należy włączyć zdalną klawiaturę KDE Connect</string>
<string name="send_ping">Wyślij ping</string>
<string name="open_mpris_controls">Sterowanie odtwarzaczem</string>
<string name="open_mpris_controls">Sterowanie multimediami</string>
<string name="remotekeyboard_editing_only_title">Obsługuj zdalne naciśnięcia klawiszy tylko podczas edycji</string>
<string name="remotekeyboard_not_connected">Nie istnieje połączenie zdalnej klawiatury, nawiąż takie połączenie w kdeconnect</string>
<string name="remotekeyboard_connected">Połączenie zdalnej klawiatury jest nawiązane</string>
@@ -76,21 +71,6 @@
<item>Silniejsze</item>
<item>Najsilniejsze</item>
</string-array>
<string name="sendkeystrokes_send_to">Wyślij naciśnięcia klawiszy do</string>
<string name="sendkeystrokes_textbox_hint">Wyślij naciśnięcia klawiszy do gospodarza</string>
<string name="sendkeystrokes_disabled_toast">Wysyłanie naciśnięć klawiszy jest wyłączone - włącz je w ustawieniach</string>
<string name="sendkeystrokes_wrong_data">Nieprawidłowy rodzaj mime - musi być \'text/x-keystrokes\'</string>
<string name="sendkeystrokes_sent_text">Wysłano %1s na urządzenie %2s</string>
<string name="sendkeystrokes_pref_category_summary">Ten moduł umożliwia innym programom współdzielenie odcinków tekstu jako naciśnięć klawiszy, które będą wysyłane do podłączonego gospodarza</string>
<string name="sendkeystrokes_pref_category_title">Wysyłanie naciśnięć klawiszy</string>
<string name="sendkeystrokes_pref_enabled">Włącz wysyłanie naciśnięć klawiszy</string>
<string name="sendkeystrokes_pref_enabled_summary">Nasłuchuj danych o rodzaju mime \'text/x-keystrokes\'</string>
<string name="sendkeystrokes_safe_text_enabled">Wyślij bezpieczny tekst natychmiastowo</string>
<string name="sendkeystrokes_safe_text_enabled_summary">Wyślij krótkie, liczbowe ciągi znaków, bez potwierdzenia</string>
<string name="pref_plugin_mousepad_send_keystrokes">Wysyłaj jako naciśnięcia klawiszy</string>
<string name="mouse_receiver_plugin_description">Odbieranie ruchów myszy</string>
<string name="mouse_receiver_plugin_name">Odbiornik myszy</string>
<string name="mouse_receiver_no_permissions">Musisz włączyć usługę dostępności</string>
<string name="category_connected_devices">Podłączone urządzenia</string>
<string name="category_not_paired_devices">Dostępne urządzenia</string>
<string name="category_remembered_devices">Zapamiętane urządzenia</string>
@@ -106,14 +86,14 @@
<string name="error_canceled_by_other_peer">Inny uczestnik zaniechał</string>
<string name="encryption_info_title">Dane o szyfrowaniu</string>
<string name="encryption_info_msg_no_ssl">Drugie urządzenie nie używa ostatniej wersji KDE Connect, użyto przestarzałego szyfrowania.</string>
<string name="my_device_fingerprint">Odcisk palca SHA256 certyfikatu twojego urządzenia to:</string>
<string name="remote_device_fingerprint">Odcisk palca SHA256 certyfikatu twojego zdalnego urządzenia to:</string>
<string name="my_device_fingerprint">Odcisk palca SHA1 certyfikatu twojego urządzenia to:</string>
<string name="remote_device_fingerprint">Odcisk palca SHA1 certyfikatu twojego zdalnego urządzenia to:</string>
<string name="pair_requested">Zażądano parowania</string>
<string name="pairing_request_from">Żądanie parowania z %1s</string>
<plurals name="incoming_file_title">
<item quantity="one">Pobieranie %1$d pliku z %2$s</item>
<item quantity="few">Pobieranie %1$d plików z %2$s</item>
<item quantity="many">Pobieranie %1$d plików z %2$s</item>
<item quantity="one">Odbieranie %1$d pliku od %2$s</item>
<item quantity="few">Odbieranie %1$d plików od %2$s</item>
<item quantity="many">Odbieranie %1$d plików od %2$s</item>
<item quantity="other"/>
</plurals>
<plurals name="incoming_files_text">
@@ -158,7 +138,6 @@
<item quantity="many">Nie udało się wysłać %2$d z %3$d plików do %1$s</item>
<item quantity="other"/>
</plurals>
<string name="tap_to_open">Stuknij, aby otworzyć</string>
<string name="received_file_text">Stuknij, aby otworzyć \'%1s\'</string>
<string name="cannot_create_file">Nie można utworzyć pliku %s</string>
<string name="tap_to_answer">Stuknij, aby odpowiedzieć</string>
@@ -188,15 +167,15 @@
</string-array>
<string name="mpris_notification_settings_title">Pokaż powiadomienia sterowania mediami</string>
<string name="mpris_notification_settings_summary">Steruje odtwarzaczami bez otwierania KDE Connect</string>
<string name="share_to">Udostępnij urządzeniu...</string>
<string name="share_to">Współdziel z...</string>
<string name="protocol_version_newer">Urządzenie to używa nowszej wersji protokołu</string>
<string name="plugin_settings_with_name">Ustawienia %s</string>
<string name="invalid_device_name">Nieprawidłowa nazwa urządzenia</string>
<string name="shareplugin_text_saved">Otrzymano tekst, zapisano do schowka</string>
<string name="custom_devices_settings">Lista własnych urządzeń</string>
<string name="custom_device_list">Dodaj urządzenie po numerze IP</string>
<string name="custom_device_list">Dodaj urządzenia po numerze IP</string>
<string name="custom_device_deleted">Usunięto własne urządzenie</string>
<string name="custom_device_list_help">Jeśli twoje urządzenie nie zostało samo wykryte, to możesz dodać jego adres IP lub nazwę gospodarza, po dotknięciu pływającego przycisku dodawania</string>
<string name="custom_device_list_help">Jeśli twoje urządzenie nie zostało samo wykryte, to możesz dodać jego adres IP lub nazwę gospodarza klikając na pływającym przycisku działania</string>
<string name="custom_device_fab_hint">Dodaj urządzenie</string>
<string name="undo">Cofnij</string>
<string name="share_notification_preference">Hałaśliwe powiadomienia</string>
@@ -208,12 +187,12 @@
<string name="share">Udostępnij</string>
<string name="share_received_file">Udostępnij \"%s\"</string>
<string name="title_activity_notification_filter">Filtr powiadomień</string>
<string name="filter_apps_info">Współdzieli powiadomienia wybranych programów między urządzeniami.</string>
<string name="filter_apps_info">Powiadomienia zostaną zsynchronizowane z wybranymi aplikacjami.</string>
<string name="sftp_sdcard_num">Karta SD %d</string>
<string name="sftp_sdcard">Karta SD</string>
<string name="sftp_readonly">(tylko do odczytu)</string>
<string name="sftp_camera">Zdjęcia z aparatu</string>
<string name="add_device_dialog_title">Dodawanie urządzenia</string>
<string name="add_device_dialog_title">Dodaj urządzenie</string>
<string name="add_device_hint">Nazwa gospodarza lub adres IP</string>
<string name="sftp_preference_detected_sdcards">Wykryte karty SD</string>
<string name="sftp_preference_edit_sdcard_title">Edytuj kartę SD</string>
@@ -233,37 +212,33 @@
<string name="sftp_no_sdcard_detected">Nie wykryto żadnej karty SD</string>
<string name="sftp_no_storage_locations_configured">Nie ustawiono miejsc w pamięci</string>
<string name="sftp_saf_permission_explanation">Aby przeglądać pliki zdalnie, należy ustawić miejsca w pamięci</string>
<string name="no_players_connected">Nie znaleziono żadnych odtwarzaczy</string>
<string name="no_players_connected">Nie znaleziono żadnego odtwarzacza</string>
<string name="send_files">Wysyłanie plików</string>
<string name="pairing_title">Urządzenia KDE Connect</string>
<string name="pairing_description">Tu powinny pojawić się urządzenia podłączone do tej samej sieci i które także mają uruchomione KDE Connect.</string>
<string name="pairing_description">Tu powinny pojawić się urządzenia podłączone do tej samej sieci i które także mają uruchomione KDE Connect.</string>
<string name="device_rename_title">Zmień nazwę urządzenia</string>
<string name="device_rename_confirm">Zmień nazwę</string>
<string name="refresh">Odśwież</string>
<string name="unreachable_description">To sparowane urządzenie jest nieosiągalne. Upewnij się, że jest podłączone do tej samej sieci.</string>
<string name="no_wifi">Brak połączenia z siecią Wi-Fi, więc może nie być widać urządzeń. Naciśnij tutaj, aby włączyć Wi-Fi.</string>
<string name="on_non_trusted_message">Niezaufana sieć: wyłączono samowykrywanie.</string>
<string name="no_file_browser">Nie wgrano żadnych przeglądarek plików.</string>
<string name="pref_plugin_telepathy">Wysyłanie SMSów</string>
<string name="pref_plugin_telepathy_desc">Wysyła wiadomości tekstowe z komputera</string>
<string name="pref_plugin_telepathy_mms">Wyślij MMSa</string>
<string name="pref_plugin_telepathy_mms_desc">Aby móc wysyłać MMSa z KDE Connect, musisz ustawić go jako domyślny program do SMSów</string>
<string name="findmyphone_title">Poszukiwania telefonu</string>
<string name="findmyphone_title_tablet">Poszukiwania tabletu</string>
<string name="findmyphone_title_tv">Poszukiwania telewizora</string>
<string name="findmyphone_description">Dzwoni z innego urządzenia na to urządzenie</string>
<string name="findmyphone_found">Znaleziony</string>
<string name="findmyphone_description">Dzwoni na dane urządzenie, aby można je odnaleźć.</string>
<string name="open">Otwórz</string>
<string name="close">Zamknij</string>
<string name="plugins_need_permission">Niektóre wtyczki wymagają uprawnień do swojego działania (stuknij, aby dowiedzieć się więcej)</string>
<string name="permission_explanation">Ta wtyczka wymaga uprawnień do działania</string>
<string name="optional_permission_explanation">Musisz przydzielić dodatkowe uprawnienia, aby włączyć wszystkie funkcje</string>
<string name="plugins_need_optional_permission">Niektóre wtyczki mają ograniczone możliwości ze względu na ograniczone uprawnienia (stuknij, aby dowiedzieć się więcej)</string>
<string name="share_optional_permission_explanation">Aby odbierać udostępnianie pliki, musisz wskazać katalog docelowy na nie</string>
<string name="telepathy_permission_explanation">Aby czytać i pisać esemesy na innym urządzeniu, należy nadać uprawnienia do esemesów</string>
<string name="telephony_permission_explanation">Aby widzieć rozmowy telefoniczne na innym urządzeniu, należy nadać uprawnienia do dziennika rozmów i stanu telefonu</string>
<string name="share_optional_permission_explanation">Aby udostępniać pliki z twojego telefonu na twoim komputerze, należy zezwolić na dostęp do pamięci telefonu</string>
<string name="telepathy_permission_explanation">Aby odbierać i wysyłać esemesy z pulpitu, należy nadać uprawnienia do esemesów</string>
<string name="telephony_permission_explanation">Aby widzieć rozmowy telefoniczne na pulpicie, należy nadać uprawnienia do dziennika rozmów i stanu telefonu</string>
<string name="telephony_optional_permission_explanation">Aby widzieć nazwę kontaktu zamiast numeru telefonu, należy zezwolić na dostęp do kontaktów telefonu</string>
<string name="contacts_permission_explanation">Aby współdzielić swoją książkę adresową z innym urządzeniem, musisz nadać uprawnienia do kontaktów</string>
<string name="contacts_permission_explanation">Aby współdzielić swoją książkę adresową z komputerem musisz udzielić uprawnień do kontaktów</string>
<string name="select_ringtone">Wybierz dzwonek</string>
<string name="telephony_pref_blocked_title">Zablokowane numery</string>
<string name="telephony_pref_blocked_dialog_desc">Nie pokazuj rozmów, ani SMSów z tych numerów. Podawaj jeden numer na wiersz</string>
@@ -272,19 +247,17 @@
<string name="settings_icon_description">Ikona ustawień</string>
<string name="presenter_fullscreen">Pełny ekran</string>
<string name="presenter_exit">Zakończ prezentację</string>
<string name="presenter_lock_tip">Możesz zablokować swoje urządzenie i używać przycisków głośności, aby przejść do kolejnej/poprzedniej strony</string>
<string name="presenter_lock_tip">Możesz zablokować swoje urządzenie i używać przycisków głośności, aby przejść do kolejnego/poprzedniego przeźrocza</string>
<string name="add_command">Dodaj polecenie</string>
<string name="addcommand_explanation">Nie zarejestrowano żadnych poleceń</string>
<string name="addcommand_explanation2">Nowe polecenie można dodać w ustawieniach systemowych KDE Connect</string>
<string name="add_command_description">Możesz dodawać polecenia na pulpicie</string>
<string name="pref_plugin_mprisreceiver">Sterowanie odtwarzaczem</string>
<string name="pref_plugin_mprisreceiver_desc">Steruje odtwarzaczami z innego urządzenia na tym urządzeniu</string>
<string name="pref_plugin_mprisreceiver">Sterowanie odtwarzaczem mediów</string>
<string name="pref_plugin_mprisreceiver_desc">Sterowanie odtwarzaczami multimedialnymi z innego urządzenia</string>
<string name="notification_channel_default">Inne powiadomienia</string>
<string name="notification_channel_persistent">Nieznikający wskaźnik</string>
<string name="notification_channel_media_control">Sterowanie multimediami</string>
<string name="notification_channel_filetransfer">Przesyłanie plików</string>
<string name="notification_channel_high_priority">Wysoki priorytet</string>
<string name="notification_channel_sms_mms">Nowa wiadomość</string>
<string name="mpris_stop">Zatrzymaj bieżący odtwarzacz</string>
<string name="copy_url_to_clipboard">Skopiuj adres URL do schowka</string>
<string name="clipboard_toast">Skopiowano do schowka</string>
@@ -292,11 +265,11 @@
<string name="runcommand_notpaired">Urządzenie jest niesparowane</string>
<string name="runcommand_nosuchdevice">Nie ma takiego urządzenia</string>
<string name="runcommand_noruncommandplugin">To urządzenie nie ma włączonej wtyczki wykonywania poleceń</string>
<string name="pref_plugin_findremotedevice">Poszukiwania innego urządzenia</string>
<string name="pref_plugin_findremotedevice_desc">Dzwoni z tego urządzenia na inne urządzenie</string>
<string name="pref_plugin_findremotedevice">Poszukiwania urządzenia przenośnego</string>
<string name="pref_plugin_findremotedevice_desc">Dzwoni na urządzenie przenośne</string>
<string name="ring">Zadzwoń</string>
<string name="pref_plugin_systemvolume">Głośność innego urządzenia</string>
<string name="pref_plugin_systemvolume_desc">Steruje głośnością innego urządzenia z tego urządzenia</string>
<string name="pref_plugin_systemvolume">Głośność systemowa</string>
<string name="pref_plugin_systemvolume_desc">Sterowanie głośnością systemu zdalnego urządzenia</string>
<string name="mute">Wycisz</string>
<string name="all">Wszystkie</string>
<string name="devices">Urządzenia</string>
@@ -307,65 +280,32 @@
<string name="setting_persistent_notification">Pokaż nieznikające powiadomienie</string>
<string name="setting_persistent_notification_oreo">Nieznikające powiadomienie</string>
<string name="setting_persistent_notification_description">Stuknij, aby je ustawić w ustawieniach powiadamiania</string>
<string name="extra_options">Ustawienia dodatkowe</string>
<string name="privacy_options">Ustawienia prywatności</string>
<string name="set_privacy_options">Ustaw swoją prywatność</string>
<string name="extra_options">Opcje dodatkowe</string>
<string name="privacy_options">Opcje prywatności</string>
<string name="set_privacy_options">Ustaw swoje opcje prywatności</string>
<string name="block_contents">Blokuj treści w powiadomieniach</string>
<string name="block_images">Blokuj obrazy w powiadomieniach</string>
<string name="notification_channel_receivenotification">Powiadomienia z innych urządzeń</string>
<string name="take_picture">Uruchamianie aparatu</string>
<string name="plugin_photo_desc">Zezwala na uruchomienie aparatu do łatwego robienia i przesyłanie zdjęć</string>
<string name="take_picture">Uruchom aparat</string>
<string name="plugin_photo_desc">Uruchom aplikację aparatu, aby ułatw robienie i przesyłanie zdjęć</string>
<string name="no_app_for_opening">Nie znaleziono aplikacji do otwarcia tego pliku</string>
<string name="remote_keyboard_service">Zdalna klawiatura KDE Connect</string>
<string name="presenter_pointer">Wskaźnik</string>
<string name="trusted_networks">Sieci zaufane</string>
<string name="trusted_networks_desc">Ogranicz samowykrywanie do znanych sieci</string>
<string name="add_trusted_network">Dodaj %1s</string>
<string name="empty_trusted_networks_list_text">Nie dodałeś jeszcze żadnej zaufanej sieci</string>
<string name="allow_all_networks_text">Zezwól wszystkim</string>
<string name="location_permission_needed_title">Wymagana zgoda</string>
<string name="location_permission_needed_desc">Android wymaga pozwolenia na dostęp do położenia, aby móc rozpoznać twoją sieć WiFi</string>
<string name="clipboard_android_x_incompat">Android 10 odebrał dostęp do schowka wszystkim programom. Ta wtyczka pozostanie wyłączona.</string>
<string name="mpris_open_url">Kontynuuj odtwarzanie tutaj</string>
<string name="cant_open_url">Nie można otworzyć adresu URL, aby kontynuować odtwarzanie</string>
<string name="bigscreen_home">Dom</string>
<string name="bigscreen_up">Góra</string>
<string name="bigscreen_left">Lewo</string>
<string name="bigscreen_select">Wybierz</string>
<string name="bigscreen_right">Prawo</string>
<string name="bigscreen_down">Dół</string>
<string name="bigscreen_mic">Mikrofon</string>
<string name="pref_plugin_bigscreen">Sterowanie Dużym Ekranem</string>
<string name="pref_plugin_bigscreen_desc">Steruje Dużym Ekranem Plazmy</string>
<string name="bigscreen_optional_permission_explanation">Aby zezwolić na używanie mikrofonu twojego telefonu, musisz udzielić do niego dostępu na telefonie</string>
<string name="bigscreen_speech_extra_prompt">Mowa</string>
<string name="message_reply_label">ODPOWIEDZ</string>
<string name="mark_as_read_label">OZNACZ JAKO PRZECZYTANĄ</string>
<string name="user_display_name">Ty</string>
<string name="set_default_sms_app_title">Wyślij SMSa</string>
<string name="set_group_message_as_mms_title">Wyślij MMSa do grupy</string>
<string name="set_long_text_as_mms_title">Wyślij długi tekst jako MMS</string>
<string name="convert_to_mms_after_title">Przekształć na MMS</string>
<string-array name="convert_to_mms_after_entries">
<item>Po jednej wiadomości</item>
<item>Po dwóch wiadomościach</item>
<item>Po trzech wiadomościach</item>
<item>Po czterech wiadomościach</item>
<item>Po pięciu wiadomościach</item>
<item>After one message</item>
<item>After two messages</item>
<item>After three messages</item>
<item>After four messages</item>
<item>After five messages</item>
</string-array>
<string name="theme_dialog_title">Wybierz tryb</string>
<string-array name="theme_list">
<item>Ustaw przy oszczędzaniu energii</item>
<item>Jasny</item>
<item>Ciemny</item>
<item>Set by Battery Saver</item>
<item/>
<item>Dark</item>
</string-array>
<string-array name="theme_list_v28">
<item>Domyślne systemowe</item>
<item>Jasny</item>
<item>Ciemny</item>
<item/>
<item/>
<item>Dark</item>
</string-array>
<string name="report_bug">Zgłoś błąd</string>
<string name="donate">Darowizna</string>
<string name="source_code">Kod źródłowy</string>
<string name="licenses">Licencje</string>
</resources>

View File

@@ -8,15 +8,13 @@
<string name="pref_plugin_telephony_desc">Envia notificações de chamadas recebidas</string>
<string name="pref_plugin_battery">Relatório da bateria</string>
<string name="pref_plugin_battery_desc">Informação periódica do status da bateria</string>
<string name="pref_plugin_connectivity_report">Relatório de conectividade</string>
<string name="pref_plugin_connectivity_report_desc">Reportar o nível de sinal da rede e o status</string>
<string name="pref_plugin_sftp">Exposição do sistema de arquivos</string>
<string name="pref_plugin_sftp_desc">Permite navegar remotamente pelo sistema de arquivos deste telefone</string>
<string name="pref_plugin_clipboard">Sincronizar área de transferência</string>
<string name="pref_plugin_clipboard_desc">Compartilha o conteúdo da área de transferência</string>
<string name="pref_plugin_clipboard_sent">Área de transferência enviada</string>
<string name="pref_plugin_mousepad">Introdução de dados remota</string>
<string name="pref_plugin_mousepad_desc">Use seu celular ou tablet como mouse e teclado</string>
<string name="pref_plugin_mousepad_desc">Use seu telefone ou tablet como mouse e teclado</string>
<string name="pref_plugin_presenter">Apresentação de slides remota</string>
<string name="pref_plugin_presenter_desc">Use o seu dispositivo para mudar os slides de uma apresentação</string>
<string name="pref_plugin_remotekeyboard">Receber pressionamento de teclas remoto</string>
@@ -24,7 +22,7 @@
<string name="pref_plugin_mpris">Controle multimídia</string>
<string name="pref_plugin_mpris_desc">Fornece um controle remoto de seu reprodutor de mídia</string>
<string name="pref_plugin_runcommand">Executar comando</string>
<string name="pref_plugin_runcommand_desc">Aciona comandos remotos a partir do seu celular ou tablet</string>
<string name="pref_plugin_runcommand_desc">Aciona comandos remotos a partir do seu telefone ou tablet</string>
<string name="pref_plugin_contacts">Sincronização de contatos</string>
<string name="pref_plugin_contacts_desc">Permite a sincronização do livro de endereços do dispositivo</string>
<string name="pref_plugin_ping">Ping</string>
@@ -76,10 +74,6 @@
<item>Forte</item>
<item>Muito forte</item>
</string-array>
<string name="sendkeystrokes_sent_text">Enviar %1s para o dispositivo %2s</string>
<string name="mouse_receiver_plugin_description">Receber movimento de mouse remoto</string>
<string name="mouse_receiver_plugin_name">Receptor de mouse</string>
<string name="mouse_receiver_no_permissions">Você precisa habilitar o serviço de acessibilidade</string>
<string name="category_connected_devices">Dispositivos conectados</string>
<string name="category_not_paired_devices">Dispositivos disponíveis</string>
<string name="category_remembered_devices">Dispositivos lembrados</string>
@@ -95,8 +89,8 @@
<string name="error_canceled_by_other_peer">Cancelado pelo outro dispositivo</string>
<string name="encryption_info_title">Informação de criptografia</string>
<string name="encryption_info_msg_no_ssl">O outro dispositivo não usa uma versão recente do KDE Connect. Será utilizado o método antigo de criptografia.</string>
<string name="my_device_fingerprint">A impressão digital SHA256 do certificado do seu dispositivo é:</string>
<string name="remote_device_fingerprint">A impressão digital SHA256 do certificado do dispositivo remoto é:</string>
<string name="my_device_fingerprint">Código SHA1 do certificado do seu dispositivo:</string>
<string name="remote_device_fingerprint">Código SHA1 do certificado do dispositivo remoto:</string>
<string name="pair_requested">Solicitação de emparelhamento</string>
<string name="pairing_request_from">Emparelhamento solicitado por %1s</string>
<plurals name="incoming_file_title">
@@ -221,7 +215,7 @@
<string name="pref_plugin_telepathy_desc">Envia mensagens de texto do seu Desktop</string>
<string name="pref_plugin_telepathy_mms">Enviar MMS</string>
<string name="pref_plugin_telepathy_mms_desc">Para poder enviar MMS do KDE Connect você precisa primeiro defini-lo como o aplicativo SMS padrão.</string>
<string name="findmyphone_title">Encontrar meu celular</string>
<string name="findmyphone_title">Encontrar meu telefone</string>
<string name="findmyphone_title_tablet">Encontrar meu tablet</string>
<string name="findmyphone_title_tv">Encontrar minha TV</string>
<string name="findmyphone_description">Faça este aparelho tocar para encontrá-lo</string>
@@ -232,9 +226,9 @@
<string name="permission_explanation">Este plugin precisa de permissões para funcionar</string>
<string name="optional_permission_explanation">Você precisa conceder permissões extras para ativar todas as funções</string>
<string name="plugins_need_optional_permission">Alguns plugins possuem recursos desativados devido à falta de permissões (toque para obter mais informações):</string>
<string name="share_optional_permission_explanation">Para receber arquivos compartilhados você precisa escolher uma pasta de destino</string>
<string name="share_optional_permission_explanation">Para compartilhar arquivos entre o seu celular e o seu ambiente de trabalho é necessário permissão para acessar o armazenamento do seu celular</string>
<string name="telepathy_permission_explanation">Para ler e gravar SMS a partir do seu ambiente de trabalho é necessário conceder permissão para SMS</string>
<string name="telephony_permission_explanation">Para ver as chamadas telefônicas no seu ambiente de trabalho é preciso dar permissões para registro de chamadas telefônicas e do estado do celular</string>
<string name="telephony_permission_explanation">Para ver as chamadas telefônicas no seu ambiente de trabalho é preciso dar permissões para registro de chamadas telefônicas e do estado do telefone</string>
<string name="telephony_optional_permission_explanation">Para ver o nome de um contato em vez do seu número de telefone é necessário conceder acesso aos contatos do celular</string>
<string name="contacts_permission_explanation">Para compartilhar o seu livro de endereços com o ambiente de trabalho é necessário conceder permissão para os contatos</string>
<string name="select_ringtone">Selecionar um toque de chamada</string>
@@ -257,7 +251,6 @@
<string name="notification_channel_media_control">Controle multimídia</string>
<string name="notification_channel_filetransfer">Transferência de arquivo</string>
<string name="notification_channel_high_priority">Prioridade alta</string>
<string name="notification_channel_sms_mms">Nova mensagem</string>
<string name="mpris_stop">Parar o reprodutor atual</string>
<string name="copy_url_to_clipboard">Copiar URL para a área de transferência</string>
<string name="clipboard_toast">Copiado para a área de transferência</string>
@@ -310,15 +303,18 @@
<string name="bigscreen_mic">Mic</string>
<string name="pref_plugin_bigscreen">Controle remoto do Bigscreen</string>
<string name="pref_plugin_bigscreen_desc">Use seu dispositivo como um controle remoto para o Plasma Bigscreen</string>
<string name="bigscreen_optional_permission_explanation">Para compartilhar a entrada do microfone de seu telefone você precisa conceder acesso à entrada de áudio do celular</string>
<string name="bigscreen_optional_permission_explanation">Para compartilhar a entrada do microfone de seu telefone você precisa conceder acesso à entrada de áudio do telefone</string>
<string name="bigscreen_speech_extra_prompt">Falar</string>
<string name="message_reply_label">Responder</string>
<string name="mark_as_read_label">Marcar como lido</string>
<string name="user_display_name">Você</string>
<string name="set_default_sms_app_title">Enviar MMS</string>
<string name="set_group_message_as_mms_title">Enviar MMS em grupo</string>
<string name="set_long_text_as_mms_title">Enviar texto longo como MMS</string>
<string name="convert_to_mms_after_title">Converter para MMS</string>
<string name="sms_pref_set_mmsc_dialog_desc">Definir MMSC</string>
<string name="sms_pref_set_mmsc_title">MMSC</string>
<string name="sms_pref_set_mms_proxy_dialog_desc">Definir proxy MMS</string>
<string name="sms_pref_set_mms_proxy_title">Proxy MMS</string>
<string name="sms_pref_set_mms_port_dialog_desc">Definir porta MMS</string>
<string name="sms_pref_set_mms_port_title">Porta MMS</string>
<string-array name="convert_to_mms_after_entries">
<item>Após uma mensagem</item>
<item>Após duas mensagens</item>
@@ -337,8 +333,4 @@
<item>Claro</item>
<item>Escuro</item>
</string-array>
<string name="report_bug">Relatar erro</string>
<string name="donate">Doar</string>
<string name="source_code">Código-fonte</string>
<string name="licenses">Licenças</string>
</resources>

View File

@@ -8,8 +8,6 @@
<string name="pref_plugin_telephony_desc">Enviar notificações para as chamadas recebidas</string>
<string name="pref_plugin_battery">Relatório da bateria</string>
<string name="pref_plugin_battery_desc">Comunicar periodicamente o estado da bateria</string>
<string name="pref_plugin_connectivity_report">Relatório da conectividade</string>
<string name="pref_plugin_connectivity_report_desc">Comunicar o estado e a potência do sinal da rede</string>
<string name="pref_plugin_sftp">Exposição do sistema de ficheiros</string>
<string name="pref_plugin_sftp_desc">Permite navegar pelo sistema de ficheiros remoto deste dispositivo</string>
<string name="pref_plugin_clipboard">Sincronização da área de transferência</string>
@@ -76,21 +74,6 @@
<item>Forte</item>
<item>Mais Forte</item>
</string-array>
<string name="sendkeystrokes_send_to">Enviar os eventos de teclado para</string>
<string name="sendkeystrokes_textbox_hint">Enviar os eventos de teclado para a máquina</string>
<string name="sendkeystrokes_disabled_toast">O envio de eventos de teclado está desactivado - active-o na configuração</string>
<string name="sendkeystrokes_wrong_data">O tipo MIME é inválido - precisa de ser \'text/x-keystrokes\'</string>
<string name="sendkeystrokes_sent_text">Foi enviado o %1s para o dispositivo %2s</string>
<string name="sendkeystrokes_pref_category_summary">Este módulo permite a outras aplicações partilharem segmentos de texto como eventos de teclado que serão enviados para a máquina ligada</string>
<string name="sendkeystrokes_pref_category_title">Enviar os Eventos de Teclado</string>
<string name="sendkeystrokes_pref_enabled">Activar o Envio de Eventos de Teclado</string>
<string name="sendkeystrokes_pref_enabled_summary">Fica à espera de dados com o tipo MIME \'text/x-keystrokes\'</string>
<string name="sendkeystrokes_safe_text_enabled">Enviar texto de forma segura e imediata</string>
<string name="sendkeystrokes_safe_text_enabled_summary">Enviar textos curtos e apenas numéricos sem confirmação</string>
<string name="pref_plugin_mousepad_send_keystrokes">Enviar como eventos de teclado</string>
<string name="mouse_receiver_plugin_description">Receber o movimento remoto do rato</string>
<string name="mouse_receiver_plugin_name">Receptor do rato</string>
<string name="mouse_receiver_no_permissions">Precisa de activar o Serviço de Acessibilidade</string>
<string name="category_connected_devices">Dispositivos ligados</string>
<string name="category_not_paired_devices">Dispositivos disponíveis</string>
<string name="category_remembered_devices">Dispositivos recordados</string>
@@ -106,8 +89,8 @@
<string name="error_canceled_by_other_peer">Cancelado pela outra máquina</string>
<string name="encryption_info_title">Dados de Encriptação</string>
<string name="encryption_info_msg_no_ssl">O outro dispositivo não usa uma versão recente do KDE Connect; será usado o método antigo de encriptação.</string>
<string name="my_device_fingerprint">A impressão digital SHA256 do certificado do seu dispositivo é:</string>
<string name="remote_device_fingerprint">A impressão digital SHA256 do certificado do dispositivo remoto é:</string>
<string name="my_device_fingerprint">A impressão digital SHA1 do certificado do seu dispositivo é:</string>
<string name="remote_device_fingerprint">A impressão digital SHA1 do certificado do dispositivo remoto é:</string>
<string name="pair_requested">Emparelhamento pedido</string>
<string name="pairing_request_from">Pedido de emparelhamento de %1s</string>
<plurals name="incoming_file_title">
@@ -243,7 +226,7 @@
<string name="permission_explanation">Este \'plugin\' precisa de permissões para funcionar</string>
<string name="optional_permission_explanation">Precisa de dar permissões extra para activar todas as funcionalidades</string>
<string name="plugins_need_optional_permission">Alguns \'plugins\' têm funcionalidades desactivadas devido à falta de permissões (toque para obter mais informações):</string>
<string name="share_optional_permission_explanation">Para receber os ficheiros partilhados, tem de escolher uma pasta de destino</string>
<string name="share_optional_permission_explanation">Para partilhar ficheiros entre o seu telemóvel e o seu ambiente de trabalho, precisa de permissão para aceder ao armazenamento do seu telemóvel</string>
<string name="telepathy_permission_explanation">Para ler e escrever SMS\'s a partir do seu ambiente de trabalho, precisa de dar permissões para os SMS\'s</string>
<string name="telephony_permission_explanation">Para ver as chamadas telefónicas a partir do seu ambiente de trabalho, precisa de dar permissões para o registo de chamadas telefónicas e do estado do telemóvel</string>
<string name="telephony_optional_permission_explanation">Para ver o nome de um contacto em vez do seu número de telefone, precisa de dar acesso aos contactos do telemóvel</string>
@@ -268,7 +251,6 @@
<string name="notification_channel_media_control">Comando multimédia</string>
<string name="notification_channel_filetransfer">Transferência de ficheiros</string>
<string name="notification_channel_high_priority">Alta prioridade</string>
<string name="notification_channel_sms_mms">Nova Mensagem</string>
<string name="mpris_stop">Parar o leitor actual</string>
<string name="copy_url_to_clipboard">Copiar o URL para a área de transferência</string>
<string name="clipboard_toast">Copiado para a área de transferência</string>
@@ -323,13 +305,16 @@
<string name="pref_plugin_bigscreen_desc">Use o seu dispositivo como um comando à distância para o Plasma em Ecrã Grande</string>
<string name="bigscreen_optional_permission_explanation">Para partilhar os dados provenientes do microfone do seu telefone, terá de dar acesso à entrada de áudio do telefone</string>
<string name="bigscreen_speech_extra_prompt">Fala</string>
<string name="message_reply_label">RESPONDER</string>
<string name="mark_as_read_label">MARCAR COMO LIDA</string>
<string name="user_display_name">Você</string>
<string name="set_default_sms_app_title">Enviar um MMS</string>
<string name="set_group_message_as_mms_title">Enviar um MMS em grupo</string>
<string name="set_long_text_as_mms_title">Enviar o texto extenso como MMS</string>
<string name="convert_to_mms_after_title">Converter para MMS</string>
<string name="sms_pref_set_mmsc_dialog_desc">Definir o MMSC</string>
<string name="sms_pref_set_mmsc_title">MMSC</string>
<string name="sms_pref_set_mms_proxy_dialog_desc">Definir o \'proxy\' do MMS</string>
<string name="sms_pref_set_mms_proxy_title">\'Proxy\' do MMS</string>
<string name="sms_pref_set_mms_port_dialog_desc">Definir o porto do MMS</string>
<string name="sms_pref_set_mms_port_title">Porto do MMS</string>
<string-array name="convert_to_mms_after_entries">
<item>Ao fim de uma mensagem</item>
<item>Ao fim de duas mensagens</item>
@@ -348,8 +333,4 @@
<item>Claro</item>
<item>Escuro</item>
</string-array>
<string name="report_bug">Comunicar um Erro</string>
<string name="donate">Doar</string>
<string name="source_code">Código-Fonte</string>
<string name="licenses">Licenças</string>
</resources>

View File

@@ -1,102 +1,44 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="kde_connect">KDE Connect</string>
<string name="foreground_notification_no_devices">Niciun dispozitiv conectat</string>
<string name="foreground_notification_devices">Conectat la: %s</string>
<string name="foreground_notification_send_clipboard">Trimite clipboard</string>
<string name="pref_plugin_telephony">Notificator de telefonie</string>
<string name="pref_plugin_telephony_desc">Trimite notificări pentru apeluri de intrare</string>
<string name="pref_plugin_battery">Raport acumulator</string>
<string name="pref_plugin_battery_desc">Raportează periodic starea acumulatorului</string>
<string name="pref_plugin_connectivity_report">Raport de conectivitate</string>
<string name="pref_plugin_connectivity_report_desc">Raportează puterea și starea semnalului rețelei</string>
<string name="pref_plugin_sftp">Expunere sistem de fișiere</string>
<string name="pref_plugin_sftp_desc">Permite răsfoirea de la distanță a sistemul de fișiere al acestui dispozitiv</string>
<string name="pref_plugin_clipboard">Sincronizare clipboard</string>
<string name="pref_plugin_clipboard_desc">Partajează conținutul clipboard-ului</string>
<string name="pref_plugin_clipboard_sent">Clipboard trimis</string>
<string name="pref_plugin_mousepad">Introducere de la distanță</string>
<string name="pref_plugin_mousepad_desc">Folosiți telefonul sau tableta ca zonă tactilă și tastatură</string>
<string name="pref_plugin_presenter">Telecomandă pentru diaporamă</string>
<string name="pref_plugin_presenter_desc">Folosiți dispozitivul pentru a schimba diapozitivele dintr-o prezentare</string>
<string name="pref_plugin_remotekeyboard">Primește apăsări de taste de la distanță</string>
<string name="pref_plugin_remotekeyboard_desc">Primește evenimente de apăsare a tastelor de la dispozitive distante</string>
<string name="pref_plugin_mpris">Controale multimedia</string>
<string name="pref_plugin_mpris_desc">Furnizează control de la distanță pentru lectorul multimedia</string>
<string name="pref_plugin_runcommand">Rulează comandă</string>
<string name="pref_plugin_runcommand_desc">Declanșează comenzi la distanță de pe telefon sau tabletă</string>
<string name="pref_plugin_contacts">Sincronizator de contacte</string>
<string name="pref_plugin_contacts_desc">Permite sincronizarea cărții de telefoane a dispozitivului</string>
<string name="pref_plugin_clipboard_desc">Partajează conținutul clipboardului</string>
<string name="pref_plugin_ping">Ping</string>
<string name="pref_plugin_ping_desc">Trimite și primește ping-uri</string>
<string name="pref_plugin_notifications">Sincronizare notificări</string>
<string name="pref_plugin_notifications_desc">Accesați-vă notificările de pe alte dispozitive</string>
<string name="pref_plugin_receive_notifications">Primește notificări</string>
<string name="pref_plugin_receive_notifications_desc">Primește notificări de pe alte dispozitive și le afișează în Android</string>
<string name="pref_plugin_sharereceiver">Partajează și primește</string>
<string name="pref_plugin_sharereceiver_desc">Partajează fișiere și URL-uri între dispozitive</string>
<string name="device_list_empty">Niciun dispozitiv</string>
<string name="ok">Bine</string>
<string name="sad_ok">Bine :(</string>
<string name="cancel">Renunță</string>
<string name="open_settings">Deschide configurările</string>
<string name="no_permissions">Trebuie să acordați permisiunea pentru accesarea notificărilor</string>
<string name="no_permission_mprisreceiver">Pentru a putea controla lectorul multimedia, trebuie să permiteți accesul la notificări</string>
<string name="no_permissions_remotekeyboard">Pentru a primi apăsări de taste, trebuie să activați Tastatura de la distanță KDE Connect</string>
<string name="send_ping">Trimite ping</string>
<string name="open_mpris_controls">Control multimedia</string>
<string name="remotekeyboard_editing_only_title">Manipulează taste de la distanță numai la redactare</string>
<string name="remotekeyboard_not_connected">Nu e nicio conexiune activă de tastatură la distanță, stabiliți una în kdeconnect</string>
<string name="remotekeyboard_connected">Conexiunea de tastatură la distanță e activă</string>
<string name="remotekeyboard_multiple_connections">Sunt mai multe conexiuni de tastatură la distanță, alegeți dispozitivul de configurat</string>
<string name="open_mousepad">Introducere de la distanță</string>
<string name="mousepad_info">"Mișcați un deget pe ecran pentru a muta cursorul mausului. Atingeți pentru clic, folosiți două/trei degete pentru butoanele drept și mijlociu. Folosiți 2 degete pentru a derula. Apăsați lung pentru tragere-și-lăsare."</string>
<string name="mousepad_double_tap_settings_title">Stabilește acțiunea de atingere cu două degete</string>
<string name="mousepad_triple_tap_settings_title">Stabilește acțiunea de atingere cu trei degete</string>
<string name="mousepad_sensitivity_settings_title">Stabilește sensibilitatea zonei tactile</string>
<string name="mousepad_acceleration_profile_settings_title">Stabilește accelerația indicatorului</string>
<string name="mousepad_scroll_direction_title">Inversează direcția derulării</string>
<string-array name="mousepad_tap_entries">
<item>Clic-dreapta</item>
<item>Clic-mijloc</item>
<item>Nimic</item>
<item>Right click</item>
<item>Middle click</item>
<item>Nothing</item>
</string-array>
<string-array name="mousepad_sensitivity_entries">
<item>Cea mai lentă</item>
<item>Mai puțin lentă</item>
<item>Implicită</item>
<item>Peste implicită</item>
<item>Cea mai rapidă</item>
<item>Slowest</item>
<item>Above Slowest</item>
<item>Default</item>
<item>Above Default</item>
<item>Fastest</item>
</string-array>
<string-array name="mousepad_acceleration_profile_entries">
<item>Fără accelerație</item>
<item>Cea mai slabă</item>
<item>Mai slabă</item>
<item>Medie</item>
<item>Mai puternică</item>
<item>Cea mai puternică</item>
<item>No Acceleration</item>
<item>Weakest</item>
<item>Weaker</item>
<item>Medium</item>
<item>Stronger</item>
<item>Strongest</item>
</string-array>
<string name="sendkeystrokes_send_to">Trimite apăsări de taste către</string>
<string name="sendkeystrokes_textbox_hint">Trimite apăsări de taste către gazdă</string>
<string name="sendkeystrokes_disabled_toast">Trimiterea de apăsări de taste e dezactivată activați-o în configurări</string>
<string name="sendkeystrokes_wrong_data">Tip MIME nevalid trebuie să fie „text/x-keystrokes”</string>
<string name="sendkeystrokes_sent_text">Trimis %1s către dispozitivul %2s</string>
<string name="sendkeystrokes_pref_category_summary">Acest modul permite altor aplicații să partajeze fragmente de text ca apăsări de taste ce vor fi trimise către gazda conectată</string>
<string name="sendkeystrokes_pref_category_title">Trimite apăsări de taste</string>
<string name="sendkeystrokes_pref_enabled">Activează trimiterea de apăsări de taste</string>
<string name="sendkeystrokes_pref_enabled_summary">Ascultă pentru date cu tipul MIME „text/x-keystrokes”</string>
<string name="sendkeystrokes_safe_text_enabled">Trimite textul sigur imediat</string>
<string name="sendkeystrokes_safe_text_enabled_summary">Trimite șiruri numerice scurte fără confirmare</string>
<string name="pref_plugin_mousepad_send_keystrokes">Trimite ca apăsări de taste</string>
<string name="mouse_receiver_plugin_description">Primește mișcări de maus de la distanță</string>
<string name="mouse_receiver_plugin_name">Receptor pentru maus</string>
<string name="mouse_receiver_no_permissions">Trebuie să activați Serviciul de Accesibilitate</string>
<string name="category_connected_devices">Dispozitive conectate</string>
<string name="category_not_paired_devices">Dispozitive disponibile</string>
<string name="category_remembered_devices">Dispozitive memorizate</string>
<string name="device_menu_plugins">Configurare extensii</string>
<string name="device_menu_unpair">Dezasociază</string>
<string name="pair_new_device">Asociază dispozitiv nou</string>
<string name="unknown_device">Dispozitiv necunoscut</string>
<string name="error_not_reachable">Dispozitivul nu e accesibil</string>
<string name="error_already_paired">Dispozitiv asociat deja</string>
@@ -104,260 +46,43 @@
<string name="error_timed_out">A expirat</string>
<string name="error_canceled_by_user">Anulat de către utilizator</string>
<string name="error_canceled_by_other_peer">Anulat de către partener</string>
<string name="encryption_info_title">Informații despre criptare</string>
<string name="encryption_info_msg_no_ssl">Celălalt dispozitiv nu folosește o versiune recentă de KDE Connect, se va folosi metoda de criptare moștenită.</string>
<string name="my_device_fingerprint">Amprenta SHA256 a certificatului acestui dispozitiv e:</string>
<string name="remote_device_fingerprint">Amprenta SHA256 a certificatului dispozitivului distant e:</string>
<string name="pair_requested">Asociere cerută</string>
<string name="pairing_request_from">Cerere de asociere de la %1s</string>
<plurals name="incoming_file_title">
<item quantity="one">Se primește %1$d fișier de la %2$s</item>
<item quantity="few">Se primesc %1$d fișiere de la %2$s</item>
<item quantity="other">Se primesc %1$d de fișiere de la %2$s</item>
</plurals>
<plurals name="incoming_files_text">
<item quantity="one">Fișier: %1s</item>
<item quantity="few">(Fișier %2$d din %3$d) : %1$s</item>
<item quantity="other">(Fișier %2$d din %3$d) : %1$s</item>
</plurals>
<plurals name="outgoing_file_title">
<item quantity="one">Se trimite %1$d fișier la %2$s</item>
<item quantity="few">Se trimit %1$d fișiere la %2$s</item>
<item quantity="other">Se trimit %1$d de fișiere la %2$s</item>
</plurals>
<plurals name="outgoing_files_text">
<item quantity="one">Fișier: %1$s</item>
<item quantity="few">(Fișier %2$d din %3$d) : %1$s</item>
<item quantity="other">(Fișier %2$d din %3$d) : %1$s</item>
</plurals>
<plurals name="received_files_title">
<item quantity="one">S-a primit un fișier de la %1$s</item>
<item quantity="few">S-au primit %2$d fișiere de la %1$s</item>
<item quantity="other">S-au primit %2$d de fișiere de la %1$s</item>
</plurals>
<plurals name="received_files_fail_title">
<item quantity="one">Primirea unui fișier de la %1$s a eșuat</item>
<item quantity="few">Primirea a %2$d din %3$d fișiere de la %1$s a eșuat</item>
<item quantity="other">Primirea a %2$d din %3$d de fișiere de la %1$s a eșuat</item>
</plurals>
<plurals name="sent_files_title">
<item quantity="one">A fost trimis un fișier la %1$s</item>
<item quantity="few">Au fost trimise %2$d fișiere la %1$s</item>
<item quantity="other">Au fost trimise %2$d de fișiere la %1$s</item>
</plurals>
<plurals name="send_files_fail_title">
<item quantity="one">A eșuat trimiterea fișierului la %1$s</item>
<item quantity="few">A eșuat trimiterea a %2$d din %3$d fișiere la %1$s</item>
<item quantity="other">A eșuat trimiterea a %2$d din %3$d de fișiere la %1$s</item>
</plurals>
<string name="tap_to_open">Atingeți pentru a deschide</string>
<string name="received_file_text">Atingeți pentru a deschide „%1s”</string>
<string name="cannot_create_file">Nu se poate crea fișierul %s</string>
<string name="tap_to_answer">Atingeți pentru a răspunde</string>
<string name="right_click">Trimite clic drept</string>
<string name="middle_click">Trimite clic mijlociu</string>
<string name="show_keyboard">Arată tastatura</string>
<string name="device_not_paired">Dispozitiv neasociat</string>
<string name="request_pairing">Cere asocierea</string>
<string name="pairing_accept">Acceptă</string>
<string name="pairing_reject">Respinge</string>
<string name="settings">Configurări</string>
<string name="mpris_play">Redă</string>
<string name="mpris_pause">Întrerupe</string>
<string name="mpris_previous">Precedent</string>
<string name="mpris_rew">Rebobinează</string>
<string name="mpris_ff">Derulează rapid înainte</string>
<string name="mpris_rew">Derulează</string>
<string name="mpris_ff">Derulare rapidă înainte</string>
<string name="mpris_next">Următor</string>
<string name="mpris_volume">Volum</string>
<string name="mpris_time_settings_title">Butoane pentru derulare/rebobinare</string>
<string name="mpris_time_settings_summary">Ajustează durata de derulat/rebobinat rapid la apăsare</string>
<string-array name="mpris_time_entries">
<item>10 secunde</item>
<item>20 de secunde</item>
<item>30 de secunde</item>
<item>1 minut</item>
<item>2 minute</item>
<item>10 seconds</item>
<item>20 seconds</item>
<item>30 seconds</item>
<item>1 minute</item>
<item>2 minutes</item>
</string-array>
<string name="mpris_notification_settings_title">Arată notificare cu control multimedia</string>
<string name="mpris_notification_settings_summary">Permite controlul lectorilor multimedia fără a deschide KDE Connect</string>
<string name="share_to">Partajează cu...</string>
<string name="protocol_version_newer">Acest dispozitiv folosește o versiune mai nouă a protocolului</string>
<string name="plugin_settings_with_name">Configurări „%s”</string>
<string name="invalid_device_name">Denumire nevalidă a dispozitivului</string>
<string name="shareplugin_text_saved">S-a primit text, salvat în clipboard</string>
<string name="custom_devices_settings">Listă de dispozitive personalizate</string>
<string name="custom_device_list">Adaugă dispozitive după IP</string>
<string name="custom_device_deleted">S-a șters dispozitiv personalizat</string>
<string name="custom_device_list_help">Dacă dispozitivul nu e detectat automat, îi puteți adăuga adresa IP saunumele de gazdă apăsând butonul flotant de acțiune</string>
<string name="custom_device_fab_hint">Adaugă dispozitiv</string>
<string name="undo">Desfă</string>
<string name="share_notification_preference">Notificări zgomotoase</string>
<string name="share_notification_preference_summary">Vibrează și redă un sunet la primirea unui fișier</string>
<string name="share_destination_customize">Specifică dosarul destinație</string>
<string name="share_destination_customize_summary_disabled">Fișierele primite vor apărea în Descărcări</string>
<string name="share_destination_customize_summary_enabled">Fișierele vor fi stocate în dosarul de mai jos</string>
<string name="share_destination_folder_preference">Dosar destinație</string>
<string name="share">Partajează</string>
<string name="share_received_file">Partajează „%s”</string>
<string name="title_activity_notification_filter">Filtru de notificări</string>
<string name="filter_apps_info">Notificările vor fi sincronizate pentru aplicațiile alese.</string>
<string name="sftp_sdcard_num">Card SD %d</string>
<string name="sftp_sdcard">Card SD</string>
<string name="sftp_readonly">(numai citire)</string>
<string name="sftp_camera">Fotografii</string>
<string name="add_device_dialog_title">Adaugă dispozitiv</string>
<string name="add_device_hint">Nume gazdă sau adresă IP</string>
<string name="sftp_preference_detected_sdcards">Carduri SD detectate</string>
<string name="sftp_preference_edit_sdcard_title">Modifică card SD</string>
<string name="sftp_preference_configured_storage_locations">Locuri de stocare configurate</string>
<string name="sftp_preference_add_storage_location_title">Adaugă loc de stocare</string>
<string name="sftp_preference_edit_storage_location">Modifică locul de stocare</string>
<string name="sftp_preference_add_camera_shortcut">Adaugă scurtătură pentru dosarul camerei</string>
<string name="sftp_preference_add_camera_shortcut_summary_on">Adaugă o scurtătură pentru dosarul camerei de fotografiat</string>
<string name="sftp_preference_add_camera_shortcut_summary_off">Nu adăuga o scurtătură pentru dosarul camerei de fotografiat</string>
<string name="sftp_storage_preference_storage_location">Loc de stocare</string>
<string name="sftp_storage_preference_storage_location_already_configured">Această amplasare a fost configurată deja</string>
<string name="sftp_storage_preference_click_to_select">apasă pentru a alege</string>
<string name="sftp_storage_preference_display_name">Denumire afișată</string>
<string name="sftp_storage_preference_display_name_already_used">Această denumire afișată e folosită deja</string>
<string name="sftp_storage_preference_display_name_cannot_be_empty">Denumirea afișată nu poate fi goală</string>
<string name="sftp_action_mode_menu_delete">Șterge</string>
<string name="sftp_no_sdcard_detected">Niciun card SD detectat</string>
<string name="sftp_no_storage_locations_configured">Niciun loc de stocare configurat</string>
<string name="sftp_saf_permission_explanation">Pentru a accesa fișiere de la distanță, trebuie să configurați locuri de stocare</string>
<string name="no_players_connected">Niciun program de redare găsit</string>
<string name="send_files">Trimite fișiere</string>
<string name="pairing_title">Dispozitive KDE Connect</string>
<string name="pairing_description">Aici ar trebui să apară alte dispozitive ce rulează KDE Connect în aceeași rețea.</string>
<string name="device_rename_title">Redenumește dispozitivul</string>
<string name="device_rename_confirm">Redenumește</string>
<string name="refresh">Reîmprospătează</string>
<string name="unreachable_description">Acest dispozitiv asociat nu e disponibil. Asigurați-vă că e conectat la aceeași rețea.</string>
<string name="no_wifi">Nu v-ați conectat la o rețea Wi-Fi, așa că s-ar putea să nu vedeți niciun dispozitiv.Apăsați aici pentru a activa Wi-Fi.</string>
<string name="on_non_trusted_message">În afara unei rețele de încredere: descoperirea automată e dezactivată.</string>
<string name="no_file_browser">Nu e niciun navigator de fișiere instalat.</string>
<string name="pref_plugin_telepathy">Expediază SMS</string>
<string name="pref_plugin_telepathy_desc">Trimite mesaje textuale de pe calculatorul de birou</string>
<string name="pref_plugin_telepathy_mms">Expediază MMS</string>
<string name="pref_plugin_telepathy_mms_desc">Pentru a putea trimite MMS-uri din KDE Connect, trebuie să-l indicați ca aplicație implicită de SMS.</string>
<string name="findmyphone_title">Găsește-mi telefonul</string>
<string name="findmyphone_title_tablet">Găsește-mi tableta</string>
<string name="findmyphone_title_tv">Găsește-mi televizorul</string>
<string name="findmyphone_description">Sună acest dispozitiv ca să-l puteți găsi</string>
<string name="findmyphone_found">L-am găsit</string>
<string name="open">Deschide</string>
<string name="close">Închide</string>
<string name="plugins_need_permission">Unele extensii necesită permisiuni pentru a funcționa (atingeți pentru informații suplimentare):</string>
<string name="permission_explanation">Această extensie are nevoie de permisiuni ca să lucreze</string>
<string name="optional_permission_explanation">Trebuie să acordați permisiuni suplimentare pentru activarea tuturor funcțiilor</string>
<string name="plugins_need_optional_permission">Unele extensii au caracteristici dezactivate din cauza lipsei permisiunilor (atingeți pentru informații suplimentare):</string>
<string name="share_optional_permission_explanation">Trebuie să alegeți un dosar destinație pentru a primi fișiere partajate</string>
<string name="telepathy_permission_explanation">Pentru a citi și scrie SMS de pe calculatorul de birou, trebuie să acordați permisiuni asupra SMS-urilor</string>
<string name="telephony_permission_explanation">Pentru a vedea apelurile pe calculatorul de birou, trebuie să acordați permisiuni asupra jurnalului de apeluri și stării telefonului</string>
<string name="telephony_optional_permission_explanation">Pentru a vedea numele contactului în locul numărului de telefon, trebuie să permiteți accesul la contactele telefonului.</string>
<string name="contacts_permission_explanation">Pentru a vă partaja agenda de contacte cu biroul, trebuie să permiteți accesul la contacte</string>
<string name="select_ringtone">Alegeți tonul de apel</string>
<string name="telephony_pref_blocked_title">Numere blocate</string>
<string name="telephony_pref_blocked_dialog_desc">Nu arăta apeluri și SMS de la aceste numere. Specificați un număr pe linie</string>
<string name="mpris_coverart_description">Coperta piesei actuale</string>
<string name="device_icon_description">Pictogramă dispozitiv</string>
<string name="settings_icon_description">Pictogramă configurări</string>
<string name="presenter_fullscreen">Ecran complet</string>
<string name="presenter_exit">Părăsește prezentarea</string>
<string name="presenter_lock_tip">Puteți bloca dispozitivul și folosi butoanele de volum pentru a merge la diapozitivul precedent/următor</string>
<string name="add_command">Adaugă o comandă</string>
<string name="addcommand_explanation">Nu sunt comenzi înregistrate</string>
<string name="addcommand_explanation2">Puteți adăuga noi comenzi în configurările de sistem KDE Connect</string>
<string name="add_command_description">Puteți adăuga comenzi pe calculatorul de birou</string>
<string name="pref_plugin_mprisreceiver">Control lector multimedia</string>
<string name="pref_plugin_mprisreceiver_desc">Controlați programele multimedia din telefon de pe alt dispozitiv</string>
<string name="notification_channel_default">Alte notificări</string>
<string name="notification_channel_persistent">Indicator persistent</string>
<string name="notification_channel_media_control">Control multimedia</string>
<string name="notification_channel_filetransfer">Transfer de fișiere</string>
<string name="notification_channel_high_priority">Prioritate ridicată</string>
<string name="notification_channel_sms_mms">Mesaj nou</string>
<string name="mpris_stop">Oprește lectorul actual</string>
<string name="copy_url_to_clipboard">Copiază URL în clipboard</string>
<string name="clipboard_toast">Copiat în clipboard</string>
<string name="runcommand_notreachable">Dispozitivul nu e accesibil</string>
<string name="runcommand_notpaired">Dispozitivul nu e asociat</string>
<string name="runcommand_nosuchdevice">Nu există un asemenea dispozitiv</string>
<string name="runcommand_noruncommandplugin">Acest dispozitiv nu are extensia „Rulează comandă” activată</string>
<string name="pref_plugin_findremotedevice">Găsește dispozitivul distant</string>
<string name="pref_plugin_findremotedevice_desc">Sună dispozitivul distant</string>
<string name="ring">Sună</string>
<string name="pref_plugin_systemvolume">Volum de sistem</string>
<string name="pref_plugin_systemvolume_desc">Controlează volumul de sistem al dispozitivului distant</string>
<string name="mute">Muțește</string>
<string name="all">Toate</string>
<string name="devices">Dispozitive</string>
<string name="settings_rename">Denumire dispozitiv</string>
<string name="settings_dark_mode">Tematică întunecată</string>
<string name="settings_more_settings_title">Mai multe configurări</string>
<string name="settings_more_settings_text">Configurările fiecărui dispozitiv le puteți găsi în „Configurare extensii” dintr-un dispozitiv.</string>
<string name="setting_persistent_notification">Arată notificare persistentă</string>
<string name="setting_persistent_notification_oreo">Notificare persistentă</string>
<string name="setting_persistent_notification_description">Atingeți pentru a activa/dezactiva în configurările notificării</string>
<string name="extra_options">Opțiuni suplimentare</string>
<string name="privacy_options">Opțiuni de intimitate</string>
<string name="set_privacy_options">Stabiliți opțiunile de intimitate</string>
<string name="block_contents">Blochează conținutul notificărilor</string>
<string name="block_images">Blochează imaginile din notificări</string>
<string name="notification_channel_receivenotification">Notificări de pe alte dispozitive</string>
<string name="take_picture">Lansează aparatul foto</string>
<string name="plugin_photo_desc">Lansează aplicația de aparat foto pentru a facilita obținerea și transferul pozelor</string>
<string name="no_app_for_opening">Nu a fost găsită nicio aplicație care să deschidă acest fișier</string>
<string name="remote_keyboard_service">Tastatura de la distanță KDE Connect</string>
<string name="presenter_pointer">Indicator</string>
<string name="trusted_networks">Rețele de încredere</string>
<string name="trusted_networks_desc">Restricționează descoperirea automată la rețele de încredere</string>
<string name="add_trusted_network">Adaugă %1s</string>
<string name="empty_trusted_networks_list_text">Încă nu ați adăugat nicio rețea de încredere</string>
<string name="allow_all_networks_text">Permite toate</string>
<string name="location_permission_needed_title">Permisiune cerută</string>
<string name="location_permission_needed_desc">Android cere permisiunea de localizare pentru a vă identifica rețeaua WiFi</string>
<string name="clipboard_android_x_incompat">Android 10 a eliminat accesul la clipboard pentru toate aplicațiile. Această extensie va fi dezactivată.</string>
<string name="mpris_open_url">Continuă redarea aici</string>
<string name="cant_open_url">URL-ul nu poate fi deschis pentru a continua redarea</string>
<string name="bigscreen_home">Acasă</string>
<string name="bigscreen_up">Sus</string>
<string name="bigscreen_left">Stânga</string>
<string name="bigscreen_select">Alege</string>
<string name="bigscreen_right">Dreapta</string>
<string name="bigscreen_down">Jos</string>
<string name="bigscreen_mic">Mic</string>
<string name="pref_plugin_bigscreen">Telecomandă pentru ecran mare</string>
<string name="pref_plugin_bigscreen_desc">Folosiți dispozitivul ca telecomandă pentru Plasma Bigscreen</string>
<string name="bigscreen_optional_permission_explanation">Pentru a partaja microfonul de la telefon, trebuie să permiteți accesul laintrarea de sunet a telefonului dumneavoastră.</string>
<string name="bigscreen_speech_extra_prompt">Vorbire</string>
<string name="message_reply_label">RĂSPUNDE</string>
<string name="mark_as_read_label">MARCHEAZĂ CA CITIT</string>
<string name="user_display_name">Tu</string>
<string name="set_default_sms_app_title">Expediază MMS</string>
<string name="set_group_message_as_mms_title">Expediază MMS la grup</string>
<string name="set_long_text_as_mms_title">Expediază text lung ca MMS</string>
<string name="convert_to_mms_after_title">Convertește la MMS</string>
<string-array name="convert_to_mms_after_entries">
<item>După un mesaj</item>
<item>După două mesaje</item>
<item>După trei mesaje</item>
<item>După patru mesaje</item>
<item>După cinci mesaje</item>
<item>After one message</item>
<item>After two messages</item>
<item>After three messages</item>
<item>After four messages</item>
<item>After five messages</item>
</string-array>
<string name="theme_dialog_title">Alege tematica</string>
<string-array name="theme_list">
<item>Stabilită de economizorul de acumulator</item>
<item>Luminoasă</item>
<item>Întunecată</item>
<item>Set by Battery Saver</item>
<item>Light</item>
<item>Dark</item>
</string-array>
<string-array name="theme_list_v28">
<item>Implicit de sistem</item>
<item>Luminoasă</item>
<item>Întunecată</item>
<item>System Default</item>
<item>Light</item>
<item>Dark</item>
</string-array>
<string name="report_bug">Raportează defect</string>
<string name="donate">Donează</string>
<string name="source_code">Codul sursă</string>
<string name="licenses">Licențe</string>
</resources>

View File

@@ -89,6 +89,8 @@
<string name="error_canceled_by_other_peer">Отменено другим участником</string>
<string name="encryption_info_title">Информация о шифровании</string>
<string name="encryption_info_msg_no_ssl">На другом устройстве используется старая версия KDE Connect, используется старый метод шифрования.</string>
<string name="my_device_fingerprint">Отпечаток SHA-1 сертификата вашего устройства:</string>
<string name="remote_device_fingerprint">Отпечаток SHA-1 сертификата удалённого устройства:</string>
<string name="pair_requested">Запрошено сопряжение</string>
<string name="pairing_request_from">Запрос на сопряжение от %1s</string>
<plurals name="incoming_file_title">
@@ -237,6 +239,7 @@
<string name="permission_explanation">Этому модулю нужны разрешения для работы</string>
<string name="optional_permission_explanation">Необходимо предоставить дополнительные разрешения для включения всех функций</string>
<string name="plugins_need_optional_permission">Некоторые функции модулей отключены из-за отсутствия необходимых разрешений (нажмите для просмотра подробностей):</string>
<string name="share_optional_permission_explanation">Чтобы обмениваться файлами между телефоном и компьютером, необходимо предоставить доступ к встроенной памяти телефона</string>
<string name="telepathy_permission_explanation">Чтобы читать и писать SMS с компьютера, вам необходимо дать разрешение на доступ к SMS</string>
<string name="telephony_permission_explanation">Чтобы видеть телефонные звонки на компьютере, необходимо дать разрешение на доступ к списку звонков и состоянию телефона</string>
<string name="telephony_optional_permission_explanation">Чтобы видеть имя контакта вместо номера телефона, необходимо предоставить доступ к контактам</string>

View File

@@ -89,7 +89,8 @@
<string name="error_canceled_by_other_peer">Zrušené druhým účastníkom</string>
<string name="encryption_info_title">Informácie o šifrovaní</string>
<string name="encryption_info_msg_no_ssl">Druhé zariadenie nepoužíva najnovšiu verziu aplikácie KDE Connect. Použije sa zastaralý spôsob šifrovania.</string>
<string name="remote_device_fingerprint">Odtlačok SHA256 certifikátu vzdialeného zariadenia je:</string>
<string name="my_device_fingerprint">Odtlačok SHA1 certifikátu vášho zariadenia je:</string>
<string name="remote_device_fingerprint">Odtlačok SHA1 certifikátu vzdialeného zariadenia je:</string>
<string name="pair_requested">Spárovanie vyžiadané</string>
<string name="pairing_request_from">Požiadavka na spárovanie zo zariadenia %1s</string>
<plurals name="incoming_file_title">
@@ -241,7 +242,7 @@
<string name="permission_explanation">Tento zásuvný modul vyžaduje oprávnenie, aby mohol fungovať</string>
<string name="optional_permission_explanation">Musíte udeliť oprávnenia navyše, aby boli povolené všetky funkcie</string>
<string name="plugins_need_optional_permission">Niektoré zásuvné moduly majú zakázané funkcie, pretože im chýbajú oprávnenia (ťuknutím získate viac informácií):</string>
<string name="share_optional_permission_explanation">Ak chcete prijímať zdieľané súbory, musíte zvoliť cieľový adresár</string>
<string name="share_optional_permission_explanation">Na zdieľanie súborov medzi vašim telefónom a počítačom, musíte udeliť prístup k úložisku telefónu</string>
<string name="telepathy_permission_explanation">Na čítanie a písanie SMS z vášho počítača, musíte udeliť oprávnenie k správam SMS</string>
<string name="telephony_permission_explanation">Na prezeranie telefónnych hovorov z vášho počítača, musíte udeliť oprávnenie k záznamom hovorov a stavu telefónu</string>
<string name="telephony_optional_permission_explanation">Na prezeranie mien kontaktov namiesto telefónnych čísel, musíte udeliť prístup k telefónnym kontaktom</string>
@@ -266,7 +267,6 @@
<string name="notification_channel_media_control">Multimediálny ovládač</string>
<string name="notification_channel_filetransfer">Prenos súborov</string>
<string name="notification_channel_high_priority">Vysoká priorita</string>
<string name="notification_channel_sms_mms">Nová správa</string>
<string name="mpris_stop">Zastaviť aktuálny prehrávač</string>
<string name="copy_url_to_clipboard">Kopírovať URL do schránky</string>
<string name="clipboard_toast">Uložené do schránky</string>
@@ -321,13 +321,16 @@
<string name="pref_plugin_bigscreen_desc">Použije vaše zariadenie ako diaľkové ovládanie obrazovky Plasma Bigscreen</string>
<string name="bigscreen_optional_permission_explanation">Na zdieľanie mikrofónového vstupu z vášho telefónu musíte dať prístup k zvukovému vstupu telefónu.</string>
<string name="bigscreen_speech_extra_prompt">Reč</string>
<string name="message_reply_label">Odpovedať</string>
<string name="mark_as_read_label">Označiť ako prečítané</string>
<string name="user_display_name">Vy</string>
<string name="set_default_sms_app_title">Odoslať MMS</string>
<string name="set_group_message_as_mms_title">Odoslať skupinovú MMS</string>
<string name="set_long_text_as_mms_title">Poslať dlhý text ako MMS</string>
<string name="convert_to_mms_after_title">Konvertovať na MMS</string>
<string name="sms_pref_set_mmsc_dialog_desc">Nastaviť MMSC</string>
<string name="sms_pref_set_mmsc_title">MMSC</string>
<string name="sms_pref_set_mms_proxy_dialog_desc">Nastaviť MMS proxy</string>
<string name="sms_pref_set_mms_proxy_title">MMS proxy</string>
<string name="sms_pref_set_mms_port_dialog_desc">nastaviť MMS port</string>
<string name="sms_pref_set_mms_port_title">MMS port</string>
<string-array name="convert_to_mms_after_entries">
<item>Po jednej správe</item>
<item>Po dvoch správach</item>
@@ -341,13 +344,4 @@
<item>Svetlá</item>
<item>Tmavá</item>
</string-array>
<string-array name="theme_list_v28">
<item>Predvolené systémom</item>
<item>Svetlá</item>
<item>Tmavá</item>
</string-array>
<string name="report_bug">Nahlásiť chybu</string>
<string name="donate">Prispieť</string>
<string name="source_code">Zdrojový kód</string>
<string name="licenses">Licencie</string>
</resources>

View File

@@ -8,8 +8,6 @@
<string name="pref_plugin_telephony_desc">Pošlji obvestila o dohodnih klicih</string>
<string name="pref_plugin_battery">Poročilo o bateriji</string>
<string name="pref_plugin_battery_desc">Občasno poročaj o stanju baterije</string>
<string name="pref_plugin_connectivity_report">Poročilo o povezovanju</string>
<string name="pref_plugin_connectivity_report_desc">Poročilo moč signala omrežja in status</string>
<string name="pref_plugin_sftp">Razkrij sistem datotek</string>
<string name="pref_plugin_sftp_desc">Omogoča oddaljeno brskanje po sistemu datotek te naprave</string>
<string name="pref_plugin_clipboard">Uskladi odložišči</string>
@@ -76,21 +74,6 @@
<item>Močneje</item>
<item>Najmočnejše</item>
</string-array>
<string name="sendkeystrokes_send_to">Pošlji pritiske tipk na</string>
<string name="sendkeystrokes_textbox_hint">Pošlji pritiske tipk gostitelju</string>
<string name="sendkeystrokes_disabled_toast">Pošiljanje pritiskov tipk je onemogočeno - omogočite jih v nastavitvah</string>
<string name="sendkeystrokes_wrong_data">Neveljavna vrsta mime - mora biti \'text/x-keystrokes\'</string>
<string name="sendkeystrokes_sent_text">Poslano %1s na napravo %2s</string>
<string name="sendkeystrokes_pref_category_summary">Ta modul omogoča drugim aplikacijam, da si delijo segmente besedila kot pritiske tipk, ki jih bo prejele za pošiljanje k povezanemu gostitelju</string>
<string name="sendkeystrokes_pref_category_title">Pošlji pritiske tipk</string>
<string name="sendkeystrokes_pref_enabled">Omogoči pošiljanje pritiskov tipk</string>
<string name="sendkeystrokes_pref_enabled_summary">Poslušaj podatke z vrsto mime \'text/x-keystrokes\'</string>
<string name="sendkeystrokes_safe_text_enabled">Pošlji varno besedilo takoj</string>
<string name="sendkeystrokes_safe_text_enabled_summary">Pošlji kratke samo številčne niz brez potrditve</string>
<string name="pref_plugin_mousepad_send_keystrokes">Pošlji kot pritiske tipk</string>
<string name="mouse_receiver_plugin_description">Sprejemaj gibanje oddaljene miške</string>
<string name="mouse_receiver_plugin_name">Sprejemnik miške</string>
<string name="mouse_receiver_no_permissions">Omogočiti morate storitev dostopnosti</string>
<string name="category_connected_devices">Povezane naprave</string>
<string name="category_not_paired_devices">Naprave na voljo</string>
<string name="category_remembered_devices">Naprave, ki so zapomnjene</string>
@@ -106,8 +89,8 @@
<string name="error_canceled_by_other_peer">Preklican od drugega vrstnika</string>
<string name="encryption_info_title">Informacija o šifriranju</string>
<string name="encryption_info_msg_no_ssl">Druga naprava ne uporablja najnovejše različice KDE Connect, uporablja podedovano metodo šifriranja.</string>
<string name="my_device_fingerprint">Prstni odtis SHA256 certifikata vaše naprave je:</string>
<string name="remote_device_fingerprint">Prstni odtis SHA256 certifikata oddaljene naprave je:</string>
<string name="my_device_fingerprint">Prstni odtis SHA1 certifikata vaše naprave je:</string>
<string name="remote_device_fingerprint">Prstni odtis SHA1 certifikata oddaljene naprave je:</string>
<string name="pair_requested">Zahtevan je par</string>
<string name="pairing_request_from">Zahtevek za uparjanje od %1s</string>
<plurals name="incoming_file_title">
@@ -188,7 +171,7 @@
</string-array>
<string name="mpris_notification_settings_title">Pokaži obvestilo o nadzoru medija</string>
<string name="mpris_notification_settings_summary">Dovoli nadzor nad predvajalniki medijev, ne da bi odprli KDE Connect</string>
<string name="share_to">Deli z</string>
<string name="share_to">Deli z...</string>
<string name="protocol_version_newer">Ta naprava uporablja novejšo različico protokola</string>
<string name="plugin_settings_with_name">Nastavitve %s</string>
<string name="invalid_device_name">Neveljavno ime naprave</string>
@@ -259,7 +242,7 @@
<string name="permission_explanation">Ti vtičniki potrebujejo dovoljenja za delovanje</string>
<string name="optional_permission_explanation">Če želite omogočiti vse funkcije, morate podeliti dodatna dovoljenja</string>
<string name="plugins_need_optional_permission">Nekateri vtičniki imajo funkcije onemogočene zaradi pomanjkanja dovoljenj (tapnite za več informacij):</string>
<string name="share_optional_permission_explanation">Če želite prejemati datoteke v skupni rabi, morate izbrati ciljni imenik</string>
<string name="share_optional_permission_explanation">Za skupno rabo datotek med telefonom in namizjem morate dovoliti dostop v shrambo telefona</string>
<string name="telepathy_permission_explanation">Če želite brati in pisati SMS z namizja, morate izdati dovoljenje za SMS</string>
<string name="telephony_permission_explanation">Če želite videti telefonske klice na namizju, morate dati dovoljenje za dnevnike klicev in stanje telefona</string>
<string name="telephony_optional_permission_explanation">Če želite namesto telefonske številke videti ime stika, morate omogočiti dostop do stikov telefona</string>
@@ -284,7 +267,6 @@
<string name="notification_channel_media_control">Nadzor medija</string>
<string name="notification_channel_filetransfer">Prenos datotek</string>
<string name="notification_channel_high_priority">Visoka prednost</string>
<string name="notification_channel_sms_mms">Novo sporočilo</string>
<string name="mpris_stop">Ustavi trenutni predvajalnik</string>
<string name="copy_url_to_clipboard">Kopiraj spletni naslov na odložišče</string>
<string name="clipboard_toast">Kopirano na odložišče</string>
@@ -339,13 +321,16 @@
<string name="pref_plugin_bigscreen_desc">Uporabite svojo napravo kot daljinec za Plasmin veliki zaslon</string>
<string name="bigscreen_optional_permission_explanation">Če želite deliti vhod mikrofona iz telefona, morate imeti dostop do avdio vhoda telefona</string>
<string name="bigscreen_speech_extra_prompt">Govor</string>
<string name="message_reply_label">ODGOVORI</string>
<string name="mark_as_read_label">OZNAČI KOT PREBRANO</string>
<string name="user_display_name">Vi</string>
<string name="set_default_sms_app_title">Pošlji MMS</string>
<string name="set_group_message_as_mms_title">Pošlji skupinski SMS</string>
<string name="set_long_text_as_mms_title">Pošlji dolgo besedilo kot MMS</string>
<string name="convert_to_mms_after_title">Pretvori v MMS</string>
<string name="sms_pref_set_mmsc_dialog_desc">Nastavi MMSC</string>
<string name="sms_pref_set_mmsc_title">MMSC</string>
<string name="sms_pref_set_mms_proxy_dialog_desc">Nastavi posrednika za MMS</string>
<string name="sms_pref_set_mms_proxy_title">Posrednik za MMS</string>
<string name="sms_pref_set_mms_port_dialog_desc">Nastavi vrata za MMS</string>
<string name="sms_pref_set_mms_port_title">Vrata za MMS</string>
<string-array name="convert_to_mms_after_entries">
<item>Po enem sporočilu</item>
<item>Po dveh sporočilih</item>
@@ -364,8 +349,4 @@
<item>Svetlo</item>
<item>Temno</item>
</string-array>
<string name="report_bug">Poročaj o napaki</string>
<string name="donate">Doniraj</string>
<string name="source_code">Izvorna koda</string>
<string name="licenses">Licence</string>
</resources>

View File

@@ -8,8 +8,6 @@
<string name="pref_plugin_telephony_desc">Skicka underrättelser för inkommande samtal</string>
<string name="pref_plugin_battery">Batterirapport</string>
<string name="pref_plugin_battery_desc">Rapportera periodiskt batteriets status</string>
<string name="pref_plugin_connectivity_report">Anslutningsrapport</string>
<string name="pref_plugin_connectivity_report_desc">Rapportera nätverkssignalstyrka och status</string>
<string name="pref_plugin_sftp">Exponera filsystem</string>
<string name="pref_plugin_sftp_desc">Gör det möjligt att bläddra i apparatens filsystem från annan apparat</string>
<string name="pref_plugin_clipboard">Synkronisera klippbord</string>
@@ -76,21 +74,6 @@
<item>Större</item>
<item>Störst</item>
</string-array>
<string name="sendkeystrokes_send_to">Skicka tangentnedtryckningar till</string>
<string name="sendkeystrokes_textbox_hint">Skicka tangentnedtryckningar till värddator</string>
<string name="sendkeystrokes_disabled_toast">Skicka tangentnedtryckningar är inaktiverat: aktivera det i inställningarna</string>
<string name="sendkeystrokes_wrong_data">Ogiltig Mime-type, måste vara \'text/x-keystrokes\'</string>
<string name="sendkeystrokes_sent_text">Skickade %1s till enhet %2s</string>
<string name="sendkeystrokes_pref_category_summary">Modulen låter andra program att dela textsegment som tangentnedtryckningar vilka skickas till den anslutna värddatorn</string>
<string name="sendkeystrokes_pref_category_title">Skicka tangentnedtryckningar</string>
<string name="sendkeystrokes_pref_enabled">Aktivera skicka tangentnedtryckningar</string>
<string name="sendkeystrokes_pref_enabled_summary">Lyssna på data med Mime-typen \'text/x-keystrokes\'</string>
<string name="sendkeystrokes_safe_text_enabled">Skicka säker text omedelbart</string>
<string name="sendkeystrokes_safe_text_enabled_summary">Skicka bara korta numeriska strängar utan att bekräfta</string>
<string name="pref_plugin_mousepad_send_keystrokes">Skicka som tangentnedtryckningar</string>
<string name="mouse_receiver_plugin_description">Ta emot externa musrörelser</string>
<string name="mouse_receiver_plugin_name">Musmottagare</string>
<string name="mouse_receiver_no_permissions">Du måste aktivera åtkomsttjänsten</string>
<string name="category_connected_devices">Anslutna apparater</string>
<string name="category_not_paired_devices">Tillgängliga apparater</string>
<string name="category_remembered_devices">Ihågkomna apparater</string>
@@ -106,8 +89,8 @@
<string name="error_canceled_by_other_peer">Avbruten av motparten</string>
<string name="encryption_info_title">Krypteringsinformation</string>
<string name="encryption_info_msg_no_ssl">Den andra apparaten använder inte en aktuell version av KDE-anslut. Använder den föråldrade krypteringsmetoden.</string>
<string name="my_device_fingerprint">SHA256-fingeravtryck för din apparats certifikat är:</string>
<string name="remote_device_fingerprint">SHA256-fingeravtryck för den andra apparatens certifikat är:</string>
<string name="my_device_fingerprint">SHA1-fingeravtryck för din apparats certifikat är:</string>
<string name="remote_device_fingerprint">SHA1-fingeravtryck för den andra apparatens certifikat är:</string>
<string name="pair_requested">Ihopparning begärd</string>
<string name="pairing_request_from">Begäran om ihopparning från %1s</string>
<plurals name="incoming_file_title">
@@ -243,7 +226,7 @@
<string name="permission_explanation">Insticksprogrammet behöver rättigheter för att fungera</string>
<string name="optional_permission_explanation">Du måste ge extra rättigheter för att aktivera alla funktioner</string>
<string name="plugins_need_optional_permission">Vissa insticksprogram har inaktiverade funktioner på grund av att rättigheter saknas (rör för mer information):</string>
<string name="share_optional_permission_explanation">För att ta emot delade filer måste du välja en målkatalog</string>
<string name="share_optional_permission_explanation">För att dela filer mellan telefonen och skrivbordet behöver du ge tillgång till telefonens lagringsutrymme</string>
<string name="telepathy_permission_explanation">För att läsa och skriva SMS från skrivbordet måste du ge rättigheter för SMS</string>
<string name="telephony_permission_explanation">För att se telefonsamtal på skrivbordet måste du ge rättigheter för telefonsamtalsloggar och telefontillstånd</string>
<string name="telephony_optional_permission_explanation">För att se ett kontaktnamn istället för ett telefonnummer måste du ge tillgång till telefonens kontakter</string>
@@ -268,7 +251,6 @@
<string name="notification_channel_media_control">Kontroll av media</string>
<string name="notification_channel_filetransfer">Filöverföring</string>
<string name="notification_channel_high_priority">Hög prioritet</string>
<string name="notification_channel_sms_mms">Nytt meddelande</string>
<string name="mpris_stop">Stoppa aktuell spelare</string>
<string name="copy_url_to_clipboard">Kopiera webbadress till klippbordet</string>
<string name="clipboard_toast">Kopierad till klippbordet</string>
@@ -323,13 +305,16 @@
<string name="pref_plugin_bigscreen_desc">Använd apparaten som en fjärrkontroll för Plasma storskärm</string>
<string name="bigscreen_optional_permission_explanation">För att dela mikrofoningången från telefonen måste du ge tillgång till telefonens ljudingång</string>
<string name="bigscreen_speech_extra_prompt">Tal</string>
<string name="message_reply_label">SVARA</string>
<string name="mark_as_read_label">MARKERA SOM LÄST</string>
<string name="user_display_name">Du</string>
<string name="set_default_sms_app_title">Skicka MMS</string>
<string name="set_group_message_as_mms_title">Skicka grupp-MMS</string>
<string name="set_long_text_as_mms_title">Skicka lång text som MMS</string>
<string name="convert_to_mms_after_title">Konvertera till MMS</string>
<string name="sms_pref_set_mmsc_dialog_desc">Ange MMSC</string>
<string name="sms_pref_set_mmsc_title">MMSC</string>
<string name="sms_pref_set_mms_proxy_dialog_desc">Ange MMS-proxy</string>
<string name="sms_pref_set_mms_proxy_title">MMS-proxy</string>
<string name="sms_pref_set_mms_port_dialog_desc">Ange MMS-port</string>
<string name="sms_pref_set_mms_port_title">MMS-port</string>
<string-array name="convert_to_mms_after_entries">
<item>Efter ett meddelande</item>
<item>Efter två meddelanden</item>
@@ -348,8 +333,4 @@
<item>Ljus</item>
<item>Mörk</item>
</string-array>
<string name="report_bug">Rapportera fel</string>
<string name="donate">Ge ett bidrag</string>
<string name="source_code">Källkod</string>
<string name="licenses">Licenser</string>
</resources>

View File

@@ -1,355 +0,0 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="kde_connect">கே.டீ.யீ. கனெக்ட்</string>
<string name="foreground_notification_no_devices">எந்த சாதனத்துடனும் இணைக்கப்படவில்லை</string>
<string name="foreground_notification_devices">%s உடன் இணைந்துள்ளது</string>
<string name="foreground_notification_send_clipboard">பிடிப்புப்பலகையை அனுப்பு</string>
<string name="pref_plugin_telephony">தொலைபேசி அறிவிப்பு சேவை</string>
<string name="pref_plugin_telephony_desc">உள்வரும் அழைப்புகளுக்கு அறிவிப்புகள் அனுப்பு</string>
<string name="pref_plugin_battery">மின்கல அறிக்கை</string>
<string name="pref_plugin_battery_desc">மின்கல நிலையை அவ்வப்போது கூறு</string>
<string name="pref_plugin_connectivity_report">இணைப்பு அறிக்கை</string>
<string name="pref_plugin_connectivity_report_desc">பிணைய பலத்தையும் நிலையையும் தெரிவி</string>
<string name="pref_plugin_sftp">கோப்பு முறைமை வெளிப்பாடு</string>
<string name="pref_plugin_sftp_desc">இந்த சாதனத்தின் கோப்பு முறைமையை தொலைவிலிருந்து அணுக உதவும்</string>
<string name="pref_plugin_clipboard">"பிடிப்புப்பலகை ஒத்திசைவு "</string>
<string name="pref_plugin_clipboard_desc">பிடிப்புப்பலகை உள்ளடக்கத்தை பகிர்</string>
<string name="pref_plugin_clipboard_sent">பிடிப்புப்பலகை அனுப்பப்பட்டது</string>
<string name="pref_plugin_mousepad">தொலை உள்ளீடு</string>
<string name="pref_plugin_mousepad_desc">உங்கள் திறன்பேசியை தொடுபலகை அல்லது விசைப்பலகையாக பயன்படுத்துங்கள்</string>
<string name="pref_plugin_presenter">வில்லைக்காட்சி தொலையியக்கி</string>
<string name="pref_plugin_presenter_desc">"உங்கள் சாதனத்தைக் கொண்டு வில்லைக்காட்சியில் (slideshow) காட்சிகளை மாற்றுங்கள்"</string>
<string name="pref_plugin_remotekeyboard">தொலை விசைகளை பெறு</string>
<string name="pref_plugin_remotekeyboard_desc">தொலை சாதனங்களிலிருந்து விசை அழுத்தல்களை பெறும்</string>
<string name="pref_plugin_mpris">பல்லூடக கட்டுப்பாடு</string>
<string name="pref_plugin_mpris_desc">உங்கள் ஊடக இயக்கிக்கு ஒரு தொலையியக்கியை வழங்கும்</string>
<string name="pref_plugin_runcommand">கட்டளையை இயக்கு</string>
<string name="pref_plugin_runcommand_desc">உங்கள் திறன்பேசி அல்லது பலகைக்கணினியிலிருந்து கட்டளைகளை இயக்குங்கள்</string>
<string name="pref_plugin_contacts">தொடர்பு ஒத்திசைவு சேவை</string>
<string name="pref_plugin_contacts_desc">சாதனத்தின் தொடர்பு பட்டியலை ஒத்திசைக்க உதவும்</string>
<string name="pref_plugin_ping">பிங்</string>
<string name="pref_plugin_ping_desc">பிங்குகளை (ping) அனுப்பு மற்றும் பெறு</string>
<string name="pref_plugin_notifications">அறிவிப்பு ஒத்திசைவு</string>
<string name="pref_plugin_notifications_desc">உங்கள் அறிவிப்புகளை மற்ற சாதனங்களிலிருந்து அணுகுங்கள்</string>
<string name="pref_plugin_receive_notifications">அறிவிப்புகளை பேறு</string>
<string name="pref_plugin_receive_notifications_desc">இன்னொரு சாதனத்திலிருந்து அறிவிப்புகளை பெற்று அவற்றை ஆண்ட்ராய்டில் காட்டும்</string>
<string name="pref_plugin_sharereceiver">பகிர் மற்றும் பேறு</string>
<string name="pref_plugin_sharereceiver_desc">சாதனங்களுக்கு இடையில் கோப்புகள் மற்றும் முகவரிகளை பகிருங்கள்</string>
<string name="device_list_empty">எந்த சாதனமும் இல்லை</string>
<string name="ok">சரி</string>
<string name="sad_ok">சரி :-(</string>
<string name="cancel">ரத்து செய்</string>
<string name="open_settings">அமைப்புகளை திற</string>
<string name="no_permissions">நீங்கள் அறிவிப்புகளை அணுக அனுமதி தர வேண்டும்</string>
<string name="no_permission_mprisreceiver">ஊடக இயக்கிகளை கட்டுப்படுத்த, நீங்கள் அறிவிப்புகளை அணுகும் அனுமதியை அளிக்க வேண்டும்</string>
<string name="no_permissions_remotekeyboard">விசைகளை பெற நீங்கள் கே.டீ.யீ. கனெக்ட் தொலை விசைப்பலகையை செயல்படுத்த வேண்டும்</string>
<string name="send_ping">பிங் அனுப்பு</string>
<string name="open_mpris_controls">பல்லூடக கட்டுப்பாடு</string>
<string name="remotekeyboard_editing_only_title">தொகுக்கும் போது மட்டும் தொலை விசைகளை ஏற்க</string>
<string name="remotekeyboard_not_connected">எந்த தொலை விசைப்பலகை இணைப்பும் செயலில் இல்லை. கே.டீ.யீ. கொனெக்டைக் கொண்டு ஒன்றை அமைக்கவும்</string>
<string name="remotekeyboard_connected">தொலை விசைப்பலகை இணைப்பு செயலில் உள்ளது</string>
<string name="remotekeyboard_multiple_connections">பல தொலை விசைப்பலகை இணைப்புகள் உள்ளன. அமைக்க வேண்டிய சாதனத்தை தேர்ந்தெடுங்கள்</string>
<string name="open_mousepad">தொலை உள்ளீடு</string>
<string name="mousepad_info">சுட்டுக்குறியை நகர்த்த ஒரு விரலை திரையில் நகர்த்தவும். \'க்ளிக்\' செய்வதற்கு தட்டுங்கள். வலது/நடு சுட்டி பட்டன்களுக்கு இரண்டு/மூன்று விரல்களை பயன்படுத்தவும். இரண்டு விரல்களைக் கொண்டு உருளவும். இழுத்து போடுவதற்கு நீண்ட அழுத்தத்தை பயன்படுத்தவும்.</string>
<string name="mousepad_double_tap_settings_title">இரண்டு விரல்களால் தட்டுவதற்குரிய செயலை அமை</string>
<string name="mousepad_triple_tap_settings_title">மூன்று விரல்களால் தட்டுவதற்குரிய செயலை அமை</string>
<string name="mousepad_sensitivity_settings_title">தொடுபலகையின் உணர்வுத்திறத்தை அமை</string>
<string name="mousepad_acceleration_profile_settings_title">சுட்டுக்குறியின் வேகவளர்ச்சியை அமை</string>
<string name="mousepad_scroll_direction_title">உருளல் திசையை புரட்டு</string>
<string-array name="mousepad_tap_entries">
<item>வலது க்ளிக்</item>
<item>நடு க்ளிக்</item>
<item>ஏதுமில்லை</item>
</string-array>
<string-array name="mousepad_sensitivity_entries">
<item>மிக மெதுவானது</item>
<item>மெதுவானது</item>
<item>இயல்பானது</item>
<item>வேகமானது</item>
<item>மிக வேகமானது</item>
</string-array>
<string-array name="mousepad_acceleration_profile_entries">
<item>வேகவளர்ச்சி இல்லாதது</item>
<item>மிக வலுவற்றது</item>
<item>வலுவற்றது</item>
<item>நடுத்தரமானது</item>
<item>திடமானது</item>
<item>மிக திடமானது</item>
</string-array>
<string name="sendkeystrokes_send_to">விசைகளை இங்கே அனுப்பு</string>
<string name="sendkeystrokes_textbox_hint">விசைகளை புரவனுக்கு அனுப்பு</string>
<string name="sendkeystrokes_disabled_toast">விசைகளை அனுப்புதல் முடங்கியுள்ளது - அமைப்புகளில் இதை இயக்குங்கள்</string>
<string name="sendkeystrokes_wrong_data">செல்லுபடியாகாத மைம் வகை - \'text/x-keystrokes\'-ஆக இருக்க வேண்டும்</string>
<string name="sendkeystrokes_sent_text">%1s என்பது %2s என்ற சாதனத்துக்கு அனுப்பப்பட்டது</string>
<string name="sendkeystrokes_pref_category_summary">மற்ற செயலிகள் பகிரும் சொற்றொடர்களை இணைக்கப்பட்ட புரவனுக்கு விசைகளாக இந்த கூறு அனுப்பும்</string>
<string name="sendkeystrokes_pref_category_title">விசைகளை அனுப்பு</string>
<string name="sendkeystrokes_pref_enabled">விசைகள் அனுப்புதலை இயக்கு</string>
<string name="sendkeystrokes_pref_enabled_summary">\'text/x-keystrokes\' என்ற மைம் வகையைக் கொண்ட தரவுக்கு காத்திரு</string>
<string name="sendkeystrokes_safe_text_enabled">ஆபத்து விளைவிக்காத சரங்களை உடனே அனுப்பு</string>
<string name="sendkeystrokes_safe_text_enabled_summary">எண்களை மட்டும் கொண்ட குறுகிய சரங்களை உறுதிப்படுத்தாமல் அனுப்பு</string>
<string name="pref_plugin_mousepad_send_keystrokes">விசைகளாக அனுப்பு</string>
<string name="mouse_receiver_plugin_description">தொலை சுட்டி அசைவைப் பெறு</string>
<string name="mouse_receiver_plugin_name">சுட்டி பெறுநர்</string>
<string name="mouse_receiver_no_permissions">அணுகல்தன்மை சேவையை நீங்கள் இயக்க வேண்டும்</string>
<string name="category_connected_devices">இணைக்கப்பட்ட சாதனங்கள்</string>
<string name="category_not_paired_devices">கிட்டுகின்ற சாதனங்கள்</string>
<string name="category_remembered_devices">நினைவுள்ள சாதனங்கள்</string>
<string name="device_menu_plugins">செருகுநிரல் அமைப்புகள்</string>
<string name="device_menu_unpair">இணைப்பை துண்டி</string>
<string name="pair_new_device">புதிய சாதனத்தை இணை</string>
<string name="unknown_device">தெரியாத சாதனம்</string>
<string name="error_not_reachable">சாதனத்தை கிட்ட முடியவில்லை</string>
<string name="error_already_paired">சாதனம் ஏற்கனவே இணைந்துள்ளது</string>
<string name="error_could_not_send_package">தொகுப்பை அனுப்ப முடியவில்லை</string>
<string name="error_timed_out">காலாவதி ஆகிவிட்டது</string>
<string name="error_canceled_by_user">பயனரால் ரத்து செய்யப்பட்டது</string>
<string name="error_canceled_by_other_peer">மறு சாதனத்தால் ரத்து செய்யப்பட்டது</string>
<string name="encryption_info_title">மறையாக்க விவரங்கள்</string>
<string name="encryption_info_msg_no_ssl">எதிர் சாதனம் கே.டீ.யீ. கனெக்டின் சமீபமான பதிப்பை பயன்படுத்தவில்லை. பழைய மறையாக்க முறை பயன்படுத்தப்படுகிறது.</string>
<string name="my_device_fingerprint">உங்கள் சாதனத்தின் சான்றிதழுக்கான SHA256 கைரேகை:</string>
<string name="remote_device_fingerprint">தொலை சாதனத்தின் சான்றிதழுக்கான SHA256 கைரேகை:</string>
<string name="pair_requested">இணைப்பு கோரப்பட்டது</string>
<string name="pairing_request_from">%1s இருந்து இணைப்பு கோரிக்கை</string>
<plurals name="incoming_file_title">
<item quantity="one">%2$s இருந்து %1$d கோப்பு பெறப்படுகிறது</item>
<item quantity="other">%2$s இருந்து %1$d கோப்புகள் பெறப்படுகின்றன</item>
</plurals>
<plurals name="incoming_files_text">
<item quantity="one">கோப்பு: %1s</item>
<item quantity="other">(%3$d-இல் %2$d-வது கோப்பு): %1$s</item>
</plurals>
<plurals name="outgoing_file_title">
<item quantity="one">%1$d கோப்பு %2$s-க்கு அனுப்பப்படுகிறது</item>
<item quantity="other">%1$d கோப்புகள் %2$s-க்கு அனுப்பப்படுகின்றன</item>
</plurals>
<plurals name="outgoing_files_text">
<item quantity="one">கோப்பு: %1$s</item>
<item quantity="other">(%3$d-இல் %2$d-வது கோப்பு): %1$s</item>
</plurals>
<plurals name="received_files_title">
<item quantity="one">%1$s இருந்து கோப்பு பெறப்பட்டது</item>
<item quantity="other">%1$s இருந்து %2$d கோப்புகள் பெறப்பட்டன</item>
</plurals>
<plurals name="received_files_fail_title">
<item quantity="one">%1$s இருந்து கோப்பை பெறுதல் தோல்வியடைந்தது</item>
<item quantity="other">%1$s இருந்து %3$d-இல் %2$d கோப்புகளை பெறுதல் தோல்வியடைந்தது</item>
</plurals>
<plurals name="sent_files_title">
<item quantity="one">%1$s-க்கு கோப்பை அனுப்பியாயிற்று</item>
<item quantity="other">%1$s-க்கு %2$d கோப்புகளை அனுப்பியாயிற்று</item>
</plurals>
<plurals name="send_files_fail_title">
<item quantity="one">%1$s-க்கு கோப்பை அனுப்புதல் தோல்வியடைந்தது</item>
<item quantity="other">%1$s-க்கு %3$d-இல் %2$d கோப்புகளை அனுப்புதல் தோல்வியடைந்தது</item>
</plurals>
<string name="tap_to_open">திறக்க தட்டவும்</string>
<string name="received_file_text">\'%1s\'-ஐ திறக்க தட்டவும்</string>
<string name="cannot_create_file">%s என்ற கோப்பை உருவாக்க முடியவில்லை</string>
<string name="tap_to_answer">பதிலளிக்க தட்டவும்</string>
<string name="right_click">வலது க்ளிக்கை அனுப்பு</string>
<string name="middle_click">நடு க்ளிக்கை வலது</string>
<string name="show_keyboard">விசைப்பலகையை காட்டு</string>
<string name="device_not_paired">சாதனம் இணைக்கப்படவில்லை</string>
<string name="request_pairing">இணைப்பு கோரு</string>
<string name="pairing_accept">ஏற்றுக்கொள்</string>
<string name="pairing_reject">மறு</string>
<string name="settings">அமைப்புகள்</string>
<string name="mpris_play">இயக்கு</string>
<string name="mpris_pause">பொறு</string>
<string name="mpris_previous">முந்தையது</string>
<string name="mpris_rew">பின்னோக்கி செல்</string>
<string name="mpris_ff">வேகமாக முன்னோக்கி செல்</string>
<string name="mpris_next">அடுத்தது</string>
<string name="mpris_volume">ஒலி அளவு</string>
<string name="mpris_time_settings_title">பின்னோக்கி/முன்னோக்கி செல்வதற்கான பட்டன்கள்</string>
<string name="mpris_time_settings_summary">அழுத்தும்போது எவ்வளவு நேரம் பின்னோக்கி/முன்னோக்கி செல்ல வேண்டும் என்று தேர்வு செய்யுங்கள்</string>
<string-array name="mpris_time_entries">
<item>10 நொடிகள்</item>
<item>20 நொடிகள்</item>
<item>30 நொடிகள்</item>
<item>1 நிமிடம்</item>
<item>2 நிமிடங்கள்</item>
</string-array>
<string name="mpris_notification_settings_title">ஊடக கட்டுப்பாடு அறிவிப்பை காட்டவும்</string>
<string name="mpris_notification_settings_summary">கே.டீ.யீ. கனெக்டை திறக்காமல் ஊடக இயக்கிகளை கட்டுப்படுத்த உதவும்</string>
<string name="share_to">இதற்கு பகிர்...</string>
<string name="protocol_version_newer">இந்த சாதனம் புதிய நெறிமுறை பதிப்பை பயன்படுத்துகிறது</string>
<string name="plugin_settings_with_name">%s அமைப்புகள்</string>
<string name="invalid_device_name">முறையற்ற சாதன பெயர்</string>
<string name="shareplugin_text_saved">சொற்றொடர் பெறப்பட்டு பிடிப்புப்பலகையில் சேமிக்கப்பட்டது</string>
<string name="custom_devices_settings">விருப்ப சாதன பட்டியல்</string>
<string name="custom_device_list">IP முகவரி மூலம் சாதனங்களை சேர்</string>
<string name="custom_device_deleted">விருப்ப சாதனம் நீக்கப்பட்டது</string>
<string name="custom_device_list_help">உங்கள் சாதனம் தானாக கண்டறியப்படவில்லையெனில் நீங்கள் மிதக்கும் செயல் பட்டனை அழுத்தி அதன் IP முகவரி அல்லது புரவன் பெயரை சேர்க்கலாம்</string>
<string name="custom_device_fab_hint">சாதனத்தை சேர்</string>
<string name="undo">செயல்நீக்கு</string>
<string name="share_notification_preference">ஒலியுடன் கூடிய அறிவிப்புகள்</string>
<string name="share_notification_preference_summary">கோப்பை பெரும்போது அதிர்வு மற்றும் ஒலியை உண்டாக்கு</string>
<string name="share_destination_customize">இலக்கு அடைவை தேர்ந்தெடுங்கள்</string>
<string name="share_destination_customize_summary_disabled">பெறப்பட்ட கோப்புகள் பதிவிறக்கங்களில் தோன்றும்</string>
<string name="share_destination_customize_summary_enabled">கோப்புகள் கீழ்கண்ட அடைவில் தேக்கப்படும்</string>
<string name="share_destination_folder_preference">இலக்கு அடைவு</string>
<string name="share">பகிர்</string>
<string name="share_received_file">\"%s\"-ஐ பகிர்</string>
<string name="title_activity_notification_filter">அறிவிப்பு வடிகட்டி</string>
<string name="filter_apps_info">தேர்ந்தெடுக்கப்பட்ட செயலிகளின் அறிவிப்புகள் மட்டும் ஒத்திசையும்</string>
<string name="sftp_sdcard_num">SD அட்டை %d</string>
<string name="sftp_sdcard">SD அட்டை</string>
<string name="sftp_readonly">(படித்தல் மட்டும்)</string>
<string name="sftp_camera">படக்கருவி படங்கள்</string>
<string name="add_device_dialog_title">சாதனத்தை சேர்</string>
<string name="add_device_hint">புரவன் பெயர் அல்லது IP முகவரி</string>
<string name="sftp_preference_detected_sdcards">கண்டறியப்பட்ட SD அட்டைகள்</string>
<string name="sftp_preference_edit_sdcard_title">SD அட்டயை திருத்து</string>
<string name="sftp_preference_configured_storage_locations">அமைக்கப்பட்ட தேக்கக இடங்கள்</string>
<string name="sftp_preference_add_storage_location_title">தேக்கக இடத்தை சேர்</string>
<string name="sftp_preference_edit_storage_location">தேக்கக இடத்தை திருத்து</string>
<string name="sftp_preference_add_camera_shortcut">புகைப்பட அடைவுக்கு குறுக்குவழி</string>
<string name="sftp_preference_add_camera_shortcut_summary_on">புகைப்பட அடைவுக்கு குறுக்குவழியை அமை</string>
<string name="sftp_preference_add_camera_shortcut_summary_off">புகைப்பட அடைவுக்கு குறுக்குவழியை அமைக்காதே</string>
<string name="sftp_storage_preference_storage_location">தேக்கக இடம்</string>
<string name="sftp_storage_preference_storage_location_already_configured">இந்த இடம் ஏற்கனவே அமைக்கப்பட்டுள்ளது</string>
<string name="sftp_storage_preference_click_to_select">தேர்ந்தெடுக்க தட்டுங்கள்</string>
<string name="sftp_storage_preference_display_name">காட்டப்படும் பெயர்</string>
<string name="sftp_storage_preference_display_name_already_used">இந்த காட்சி பெயர் ஏற்கனவே பயனில் உள்ளது</string>
<string name="sftp_storage_preference_display_name_cannot_be_empty">காட்சி பெயர் காலியாக இருக்க முடியாது</string>
<string name="sftp_action_mode_menu_delete">அகற்று</string>
<string name="sftp_no_sdcard_detected">SD அட்டை கண்டறியப்படவில்லை</string>
<string name="sftp_no_storage_locations_configured">தேக்கக இடங்கள் எதுவும் அமைக்கப்படவில்லை</string>
<string name="sftp_saf_permission_explanation">கோப்புகளை வேறு சாதனங்கலிருந்து அணுக நீங்கள் தேக்கக இடங்களை அமைக்க வேண்டும்</string>
<string name="no_players_connected">எந்த ஊடக இயக்கியும் கண்டுபிடிக்கப்படவில்லை</string>
<string name="send_files">கோப்புகளை அனுப்பு</string>
<string name="pairing_title">கே.டீ.யீ. கனெக்ட் சாதனங்கள்</string>
<string name="pairing_description">இதே பிணையத்தில் கே.டீ.யீ. கனெக்டை பயன்படுத்தும் மற்ற சாதனங்கள் இங்கே தெரியும்.</string>
<string name="device_rename_title">"சாதனத்தின் பெயரை மாற்று "</string>
<string name="device_rename_confirm">மறுபெயரிடு</string>
<string name="refresh">புதுப்பி</string>
<string name="unreachable_description">இந்த இணைக்கப்பட்ட சாதனத்தை கிட்ட முடியவில்லை. அது இதே பிணையத்தில் இணைந்துள்ளதா என்று உறுதி செய்யுங்கள்.</string>
<string name="no_wifi">நீங்கள் எந்த Wi-Fi பிணையத்துக்கும் இணைந்தில்லாததால் வேறு சாதனங்கள் தெரியாமல் இருக்கலாம். Wi-Fi-ஐ இயக்க இங்கே தட்டவும்.</string>
<string name="on_non_trusted_message">நம்பகமான பிணையத்தில் இல்லை: தானியங்கி கண்டுபிடிப்பு இயங்காது.</string>
<string name="no_file_browser">கோப்பு உலாவிகள் எதுவும் நிறுவப்படவில்லை.</string>
<string name="pref_plugin_telepathy">SMS அனுப்பு</string>
<string name="pref_plugin_telepathy_desc">உங்கள் மேசைக்கணினியிலிருந்து குறுஞ்செய்திகளை அனுப்புங்கள்</string>
<string name="pref_plugin_telepathy_mms">MMS அனுப்பு</string>
<string name="pref_plugin_telepathy_mms_desc">கே.டீ.யீ. கனெக்டிலிருந்து MMS அனுப்ப நீங்கள் அதை இயல்பிருப்பு SMS செயலியாக அமைக்க வேண்டும்.</string>
<string name="findmyphone_title">திறன்பேசியைக் கண்டுபிடி</string>
<string name="findmyphone_title_tablet">பலகைக்கணினியைக் கண்டுபிடி</string>
<string name="findmyphone_title_tv">தொலைக்காட்சியை கண்டுபிடி</string>
<string name="findmyphone_description">இந்த சாதனத்தை நீங்கள் கண்டுபிடிக்க உதவுவதற்கு அதன் மணியை ஒலிக்க செய்யும்.</string>
<string name="findmyphone_found">கண்டுபிடித்து விட்டேன்</string>
<string name="open">திற</string>
<string name="close">மூடு</string>
<string name="plugins_need_permission">சில செருகுநிரல்கள் இயங்க அனுமதிகள் தேவை (இன்னும் விவரங்களுக்கு தட்டவும்):</string>
<string name="permission_explanation">இந்த செருகுநிரல் இயங்க அனுமதிகள் தேவை</string>
<string name="optional_permission_explanation">எல்லா செயல்பாடுகளையும் இயக்க நீங்கள் மேலும் அனுமதிகளை வழங்க வேண்டும்</string>
<string name="plugins_need_optional_permission">அனுமதி இல்லாததால் சில செருகுநிரல்களின் அம்சங்கள் முடங்கியுள்ளன (மேலும் விவரங்களுக்கு தட்டவும்):</string>
<string name="share_optional_permission_explanation">பகிரப்படும் கோப்புகளை பெற நீங்கள் ஓர் இலக்கு அடைவை தேர்ந்தெடுக்க வேண்டும்</string>
<string name="telepathy_permission_explanation">உங்கள் மேசைக்கணினியிலிருந்து SMS எழுத மற்றும் படிக்க நீங்கள் SMS அனுமதுயை தர வேண்டும்</string>
<string name="telephony_permission_explanation">மேசைக்கணினியிலிருந்து அழைப்புகளை காண நீங்கள் அழைப்பு வரலாறு மற்றும் தொலைபேசி நிலைக்கான அனுமதியை தர வேண்டும்</string>
<string name="telephony_optional_permission_explanation">தொலைபேசி எண்ணுக்கு பதிலாக நபரின் பெயரைக் காண நீங்கள் தொடர்புகளை அணுகும் அனுமதியை தர வேண்டும்</string>
<string name="contacts_permission_explanation">உங்கள் தொடர்பு பட்டியலை மேசைக்கணினியுடன் பகிர நீங்கள் தொடர்புகளை அணுகுவதற்கான அனுமதியை தர வேண்டும்</string>
<string name="select_ringtone">அழைப்பு ஒலியை தேர்வு செய்யுங்கள்</string>
<string name="telephony_pref_blocked_title">தடுக்கப்பட்ட எண்கள்</string>
<string name="telephony_pref_blocked_dialog_desc">இந்த எண்களிலிருந்து அழைப்புகள் மற்றும் SMS-கள் காட்டப்படாது. வரிக்கு ஒரு எண்ணை மட்டும் உள்ளிடவும்</string>
<string name="mpris_coverart_description">தற்போதைய ஊடகத்தின் அட்டை படம்</string>
<string name="device_icon_description">சாதன சின்னம்</string>
<string name="settings_icon_description">அமைப்புகளுக்கான சின்னம்</string>
<string name="presenter_fullscreen">முழுத்திரை</string>
<string name="presenter_exit">வில்லைக்காட்சியிலிருந்து வெளியேறு</string>
<string name="presenter_lock_tip">நீங்கள் உங்கள் சாதனத்தைப் பூட்டினாலும் அடுத்த/முந்தைய காட்சிக்கு செல்வதற்கு ஒலி விசைகளை பயன்படுத்தலாம்</string>
<string name="add_command">கட்டளையை சேர்</string>
<string name="addcommand_explanation">எந்த கட்டளையும் பதிவு செய்யப்படவில்லை</string>
<string name="addcommand_explanation2">கே.டீ.யீ. கனெக்ட் கணினி அமைப்புகளில் நீங்கள் புதிய கட்டளைகளை சேர்க்கலாம்</string>
<string name="add_command_description">நீங்கள் மேசைக்கணினியில் சென்று கட்டளைகளை சேர்க்கலாம்</string>
<string name="pref_plugin_mprisreceiver">ஊடக இயக்கி கட்டுப்பாடு</string>
<string name="pref_plugin_mprisreceiver_desc">இன்னொரு சாதனத்திலிருந்து உங்கள் திறன்பேசியின் ஊடக இயக்கிகளை கட்டுப்படுத்துங்கள்</string>
<string name="notification_channel_default">மற்ற அறிவிப்புகள்</string>
<string name="notification_channel_persistent">விடாப்பிடியான அறிவிப்பு</string>
<string name="notification_channel_media_control">ஊடக கட்டுப்பாடு</string>
<string name="notification_channel_filetransfer">கோப்பு இடமாற்றம்</string>
<string name="notification_channel_high_priority">அதிக முக்கியத்துவம்</string>
<string name="notification_channel_sms_mms">புதிய தகவல்</string>
<string name="mpris_stop">தற்போதைய இயக்கியை நிறுத்து</string>
<string name="copy_url_to_clipboard">முகவரியை பிடிப்புப்பலகையில் நகலெடு</string>
<string name="clipboard_toast">பிடிப்புப்பலகையில் நகலெடுக்கப்பட்டது</string>
<string name="runcommand_notreachable">சாதனத்தை கிட்ட முடியவில்லை</string>
<string name="runcommand_notpaired">சாதனம் இணைக்கப்படவில்லை</string>
<string name="runcommand_nosuchdevice">அப்படி எந்த சாதனமும் இல்லை</string>
<string name="runcommand_noruncommandplugin">இந்த சாதனத்தில் கட்டளைகளை இயக்கும் செருகுநிரல் இயக்கப்படவில்லை.</string>
<string name="pref_plugin_findremotedevice">தொலை சாதனத்தை கண்டுபிடி</string>
<string name="pref_plugin_findremotedevice_desc">தொலை சாதனத்தை ஒலிக்க செய்</string>
<string name="ring">ஒலிக்க செய்</string>
<string name="pref_plugin_systemvolume">கணினி ஒலி அளவு</string>
<string name="pref_plugin_systemvolume_desc">தொலை சாதனத்தின் ஒலி அளவை கட்டுப்படுத்து</string>
<string name="mute">ஒலியை அடக்கு</string>
<string name="all">அனைத்து</string>
<string name="devices">சாதனங்கள்</string>
<string name="settings_rename">சாதனத்தின் பெயர்</string>
<string name="settings_dark_mode">கருமையான திட்டமுறை</string>
<string name="settings_more_settings_title">மேலும் அமைப்புகள்</string>
<string name="settings_more_settings_text">தனிப்பட்ட சாதனங்களுக்குரிய அமைப்புகள், ஒவ்வொரு சாதனத்துக்கான \'செருகுநிரல் அமைப்புகள்\' தனில் இருக்கும்.</string>
<string name="setting_persistent_notification">விடாப்பிடியான அறிவிப்பைக் காட்டவும்</string>
<string name="setting_persistent_notification_oreo">விடாப்பிடி அறிவிப்பு</string>
<string name="setting_persistent_notification_description">அறிவிப்பு அமைப்புகளில் இயக்க/செயல்நீக்க தட்டவும்</string>
<string name="extra_options">மேலும் விருப்பங்கள்</string>
<string name="privacy_options">தனியுரிமை அமைப்புகள்</string>
<string name="set_privacy_options">உங்கள் தனியுரிமை விருப்பங்களை அமையுங்கள்</string>
<string name="block_contents">அறிவிப்புகளின் உள்ளடக்கத்தை காட்டாதே</string>
<string name="block_images">அறிவிப்புகளில் படங்களை காட்டாதே</string>
<string name="notification_channel_receivenotification">மற்ற சாதனங்களிலிருந்து அறிவிப்புகள்</string>
<string name="take_picture">புகைப்பட கருவியை இயக்கு</string>
<string name="plugin_photo_desc">புகைப்படங்களை எளிதாக எடுக்க மற்றும் மாற்ற படக்கருவி செயலியை இயக்கு</string>
<string name="no_app_for_opening">இந்த கோப்பை திறக்க கூடிய செயலியை கண்டுபிடிக்க முடியவில்லை</string>
<string name="remote_keyboard_service">கே.டீ.யீ. கனெக்ட் தொலை விசைப்பலகை</string>
<string name="presenter_pointer">சுட்டி</string>
<string name="trusted_networks">நம்பகமான பிணையங்கள்</string>
<string name="trusted_networks_desc">தெரிந்த பிணையங்களில் மட்டும் தானாக சாதனங்களை கண்டுபிடி</string>
<string name="add_trusted_network">%1s-ஐ சேர்</string>
<string name="empty_trusted_networks_list_text">நீங்கள் எந்த நம்பகமான பிணையத்தையும் சேர்க்கவில்லை</string>
<string name="allow_all_networks_text">அனைத்தையும் அனுமதி</string>
<string name="location_permission_needed_title">அனுமதி தேவை</string>
<string name="location_permission_needed_desc">உங்கள் Wi-Fi பிணையத்தை அடையாளம் காண, இருப்பிடத்துக்கான அனுமதியை ஆண்ட்ராய்டு தேவைப்படுத்துகிறது.</string>
<string name="clipboard_android_x_incompat">ஆண்ட்ராய்டு 10 எல்லா செயலிகளுக்கான பிடிப்புப்பலகை அனுமதியை நீக்கிவிட்டது. இந்த செருகுநிரல் இயங்காது.</string>
<string name="mpris_open_url">இங்கிருந்து தொடர்ந்து இயக்கு</string>
<string name="cant_open_url">தொடர்ந்து இயக்க முகவரியை திறக்க முடியவில்லை</string>
<string name="bigscreen_home">முகப்பு திரை</string>
<string name="bigscreen_up">மேலே</string>
<string name="bigscreen_left">இடதுபுறமாக</string>
<string name="bigscreen_select">தேர்ந்தெடு</string>
<string name="bigscreen_right">வலதுபுறமாக</string>
<string name="bigscreen_down">கீழே</string>
<string name="bigscreen_mic">ஒலிவாங்கி</string>
<string name="pref_plugin_bigscreen">பெருந்திரை தொலையியக்கி</string>
<string name="pref_plugin_bigscreen_desc">பிளாஸ்மா பெருந்திரைக்கு உங்கள் சாதனத்தை தொலையியக்கியாக பயன்படுத்துங்கள்</string>
<string name="bigscreen_optional_permission_explanation">உங்கள் திறன்பேசியிலிருந்து ஒலிவாங்கி உள்ளீட்டை பகிர நீங்கள் அதன் ஒலி உள்ளீட்டுக்கு அணுகல் அளிக்க வேண்டும்</string>
<string name="bigscreen_speech_extra_prompt">பேச்சு</string>
<string name="message_reply_label">பதில்</string>
<string name="mark_as_read_label">படித்ததாக குறி</string>
<string name="user_display_name">நீங்கள்</string>
<string name="set_default_sms_app_title">MMS அனுப்பு</string>
<string name="set_group_message_as_mms_title">குழு MMS அனுப்பு</string>
<string name="set_long_text_as_mms_title">MMS-ஆக நெடும் உரையை அனுப்பு</string>
<string name="convert_to_mms_after_title">MMS-ஆக எப்போது மாற்று வேண்டும்</string>
<string-array name="convert_to_mms_after_entries">
<item>ஒரு செய்திக்கு பிறகு</item>
<item>இரண்டு செய்திகளுக்கு பிறகு</item>
<item>மூன்று செய்திகளுக்கு பிறகு</item>
<item>நான்கு செய்திகளுக்கு பிறகு</item>
<item>ஐந்து செய்திகளுக்கு பிறகு</item>
</string-array>
<string name="theme_dialog_title">திட்டமுறையை அமை</string>
<string-array name="theme_list">
<item>மின்கல சேமிப்பை பொறுத்து அமை</item>
<item>வெளிர்ந்தது</item>
<item>கருமையானது</item>
</string-array>
<string-array name="theme_list_v28">
<item>கணினி இயல்பிருப்பு</item>
<item>வெளிர்ந்தது</item>
<item>கருமையானது</item>
</string-array>
<string name="report_bug">பிழையை தெரிவியுங்கள்</string>
<string name="donate">நன்கொடை அளியுங்கள்</string>
<string name="source_code">மூல குறியீடு</string>
<string name="licenses">உரிமங்கள்</string>
</resources>

View File

@@ -7,7 +7,6 @@
<string name="pref_plugin_telephony_desc">Gelen aramalar için bildirim gönder</string>
<string name="pref_plugin_battery">Batarya raporu</string>
<string name="pref_plugin_battery_desc">Batarya durumunu belirli aralıklarla raporla</string>
<string name="pref_plugin_connectivity_report_desc">Ağ sinyal gücünü ve durumunu bildirin</string>
<string name="pref_plugin_sftp">Dosya sistemi gösterme</string>
<string name="pref_plugin_sftp_desc">Bu aıygıtın dosya sistemine uzaktan gözatılmasına izin verir</string>
<string name="pref_plugin_clipboard">Pano eşitleme</string>
@@ -34,7 +33,6 @@
<string name="pref_plugin_sharereceiver_desc">Dosyaları ve URL\'leri aygıtlar arasında paylaş</string>
<string name="device_list_empty">Aygıt yok</string>
<string name="ok">Tamam</string>
<string name="sad_ok">Tamam :(</string>
<string name="cancel">İptal</string>
<string name="open_settings">Ayarları</string>
<string name="no_permissions">Bildirimler erişebilmek için izine ihtiyacınız var</string>
@@ -88,6 +86,8 @@
<string name="error_canceled_by_other_peer">Diğer eş tarafından iptal edildi</string>
<string name="encryption_info_title">Şifreleme Bilgisi</string>
<string name="encryption_info_msg_no_ssl">Diğer aygıt, KDE Connect\'in son sürümünü kullanmıyor, eski şifreleme yöntemini kullanıyor.</string>
<string name="my_device_fingerprint">Aygıt sertifikanızın SHA1 parmak izi:</string>
<string name="remote_device_fingerprint">Uzak aygıt sertifikanızın SHA1 parmak izi:</string>
<string name="pair_requested">Eşleşme talep edildi</string>
<string name="pairing_request_from">%1s için eşleşme talebi</string>
<plurals name="incoming_file_title">
@@ -204,11 +204,9 @@
<string name="device_rename_confirm">Yeniden adlandır</string>
<string name="refresh">Tazele</string>
<string name="unreachable_description">Eşleştirilmiş aygıt ulaşılabilir değil. Aynı ağa bağlı olduğundan emin olun.</string>
<string name="on_non_trusted_message">Güvenilir bir ağda değil: otomatik bulma devre dışı.</string>
<string name="no_file_browser">Yüklü bir dosya tarayıcısı yok.</string>
<string name="pref_plugin_telepathy">SMS Gönder</string>
<string name="pref_plugin_telepathy_desc">Masaüstünden metin iletisi gönder</string>
<string name="pref_plugin_telepathy_mms">MMS Gönder</string>
<string name="findmyphone_title">Telefonumu bul</string>
<string name="findmyphone_title_tablet">Tabletimi bul</string>
<string name="findmyphone_title_tv">TV\'mi bul</string>
@@ -219,6 +217,7 @@
<string name="permission_explanation">Bu eklenti, çalışmak için izne ihtiyaç duyuyor</string>
<string name="optional_permission_explanation">Tüm işlevleri etkinleştirmek için daha fazla yetkiye ihtiyacınız var</string>
<string name="plugins_need_optional_permission">Bazı eklentilerin özellikleri, izin yetersizliğinden kapalı gelmektedir (daha fazla bilgi için dokunun):</string>
<string name="share_optional_permission_explanation">Telefon ve masaüstünüz arasında dosya paylaşılabilmesi için, telefonun depolama alanına erişim izni olmalıdır</string>
<string name="telepathy_permission_explanation">Masaüstünde SMS yazma ve okuma yapmak için SMS izni gereklidir</string>
<string name="telephony_permission_explanation">Masaüstünde telefon görüşmelerini görmek için telefon görüşmesi kayıtlarına ve telefon durumuna izin vermeniz gerekir</string>
<string name="telephony_optional_permission_explanation">Telefon numarası yerine kişi ismi görebilmek için telefonun kişilerine erişim gereklidir</string>
@@ -241,7 +240,6 @@
<string name="notification_channel_persistent">Kalıcı gösterge</string>
<string name="notification_channel_media_control">Medya kontrolü</string>
<string name="notification_channel_filetransfer">Dosya aktarımı</string>
<string name="notification_channel_sms_mms">Yeni İleti</string>
<string name="mpris_stop">Geçerli oynatıcıyı durdur</string>
<string name="copy_url_to_clipboard">URL\'yi panoya kopyala</string>
<string name="clipboard_toast">Panoya kopyalandı</string>
@@ -273,33 +271,13 @@
<string name="take_picture">Kamerayı başlat</string>
<string name="plugin_photo_desc">Fotoğraf çekmeyi ve aktarmayı kolaylaştırmak için kamera uygulamasını başlatın</string>
<string name="no_app_for_opening">Bu dosyayı açmak için uygun bir uygulama bulunamadı</string>
<string name="remote_keyboard_service">KDE Connect uzaktan klavye</string>
<string name="trusted_networks">Güvenilir ağlar</string>
<string name="trusted_networks_desc">Otomatik keşfi bilinen ağlarla kısıtla</string>
<string name="add_trusted_network">%1s Ekle</string>
<string name="allow_all_networks_text">Hepsine izin ver</string>
<string name="location_permission_needed_title">İzin gerekli</string>
<string name="location_permission_needed_desc">Android, WiFi ağınızı tanımlamak için Konum iznine ihtiyaç duyar</string>
<string name="clipboard_android_x_incompat">Android 10, tüm uygulamalara pano erişimini kaldırdı. Bu eklenti devre dışı bırakılacak.</string>
<string name="bigscreen_home">Başlangıç</string>
<string name="bigscreen_up">Yukarı</string>
<string name="bigscreen_left">Sol</string>
<string name="bigscreen_select">Seç</string>
<string name="bigscreen_right">Sağ</string>
<string name="bigscreen_down">Aşağı</string>
<string name="message_reply_label">YANITLA</string>
<string name="user_display_name">Siz</string>
<string name="set_default_sms_app_title">MMS Gönder</string>
<string name="set_long_text_as_mms_title">Uzun metni MMS olarak gönder</string>
<string name="convert_to_mms_after_title">MMS\'e dönüştür</string>
<string-array name="convert_to_mms_after_entries">
<item>Bir mesajdan sonra</item>
<item>İki mesajdan sonra</item>
<item>Üç mesajdan sonra</item>
<item>Dört mesajdan sonra</item>
<item>Beş mesajdan sonra</item>
<item>After one message</item>
<item>After two messages</item>
<item>After three messages</item>
<item>After four messages</item>
<item>After five messages</item>
</string-array>
<string name="theme_dialog_title">Tema seçin</string>
<string-array name="theme_list">
<item>Set by Battery Saver</item>
<item/>
@@ -310,7 +288,4 @@
<item/>
<item>Dark</item>
</string-array>
<string name="donate">Bağış yap</string>
<string name="source_code">Kaynak Kod</string>
<string name="licenses">Lisanslar</string>
</resources>

View File

@@ -8,8 +8,6 @@
<string name="pref_plugin_telephony_desc">Надсилати сповіщення щодо вхідних дзвінків</string>
<string name="pref_plugin_battery">Звіт щодо заряду</string>
<string name="pref_plugin_battery_desc">Періодична інформація щодо стану акумулятора</string>
<string name="pref_plugin_connectivity_report">Звіт щодо з\'єднання</string>
<string name="pref_plugin_connectivity_report_desc">Повідомити про потужність сигналу мережі та її стан</string>
<string name="pref_plugin_sftp">Показ файлової системи</string>
<string name="pref_plugin_sftp_desc">Надає змогу віддалено переглядати файлову систему цього пристрою</string>
<string name="pref_plugin_clipboard">Синхронізація буфера</string>
@@ -76,21 +74,6 @@
<item>Сильне</item>
<item>Найсильніше</item>
</string-array>
<string name="sendkeystrokes_send_to">Надіслати натискання клавіш на</string>
<string name="sendkeystrokes_textbox_hint">Надіслати натискання клавіш на вузол</string>
<string name="sendkeystrokes_disabled_toast">Надсилання натискань клавіш вимкнено — увімкніть його у параметрах програми</string>
<string name="sendkeystrokes_wrong_data">Некоректний тип MIME — типом має бути «text/x-keystrokes»</string>
<string name="sendkeystrokes_sent_text">Надіслано %1s на пристрій %2s</string>
<string name="sendkeystrokes_pref_category_summary">За допомогою цього модуля інші програми можуть спільно використовувати фрагменти тексту як натискання клавіш, які буде надіслано до з\'єднаного вузла мережі</string>
<string name="sendkeystrokes_pref_category_title">Надсилання натискань клавіш</string>
<string name="sendkeystrokes_pref_enabled">Увімкнути надсилання натискань клавіш</string>
<string name="sendkeystrokes_pref_enabled_summary">Очікувати на дані з типом MIME «text/x-keystrokes»</string>
<string name="sendkeystrokes_safe_text_enabled">Надсилати безпечний текст негайно</string>
<string name="sendkeystrokes_safe_text_enabled_summary">Надсилати короткі рядки з цифр без підтвердження</string>
<string name="pref_plugin_mousepad_send_keystrokes">Надсилати як натискання клавіш</string>
<string name="mouse_receiver_plugin_description">Отримувати віддалені рухи мишею</string>
<string name="mouse_receiver_plugin_name">Отримання даних миші</string>
<string name="mouse_receiver_no_permissions">Вам слід увімкнути службу доступності</string>
<string name="category_connected_devices">З’єднані пристрої</string>
<string name="category_not_paired_devices">Доступні пристрої</string>
<string name="category_remembered_devices">Відомі пристрої</string>
@@ -106,8 +89,8 @@
<string name="error_canceled_by_other_peer">Скасовано з іншого вузла пов’язування</string>
<string name="encryption_info_title">Дані щодо шифрування</string>
<string name="encryption_info_msg_no_ssl">На сторонньому пристрої не використовується нова версія KDE Connect, у якій використовується застарілий спосіб шифрування.</string>
<string name="my_device_fingerprint">Відбиток SHA256 сертифіката пристрою:</string>
<string name="remote_device_fingerprint">Відбиток SHA256 сертифіката віддаленого пристрою:</string>
<string name="my_device_fingerprint">Відбиток SHA1 сертифіката пристрою:</string>
<string name="remote_device_fingerprint">Відбиток SHA1 сертифіката віддаленого пристрою:</string>
<string name="pair_requested">Запит щодо пов’язування</string>
<string name="pairing_request_from">Запит щодо пов’язування від %1s</string>
<plurals name="incoming_file_title">
@@ -259,7 +242,7 @@
<string name="permission_explanation">Для роботи цього додатка потрібні додаткові права доступу</string>
<string name="optional_permission_explanation">Щоб уможливити використання усіх функцій, вам слід надати програмі додаткові права доступу</string>
<string name="plugins_need_optional_permission">Можливості деяких додатків вимкнено, оскільки програмі не вистачає прав доступу (натисніть, щоб дізнатися більше):</string>
<string name="share_optional_permission_explanation">Для отримання файлів спільного користування вам слід вибрати каталог призначення</string>
<string name="share_optional_permission_explanation">Щоб спільного використовувати файли на вашому телефоні і робочому комп’ютері, вам слід надати програмі доступ до сховища даних вашого телефону</string>
<string name="telepathy_permission_explanation">Щоб читати і писати SMS з вашого робочого комп’ютера, вам слід надати програмі доступ до SMS</string>
<string name="telephony_permission_explanation">Щоб переглядати дзвінки з робочого комп’ютера, вам слід надати програмі доступ до журналу дзвінків та стану телефону</string>
<string name="telephony_optional_permission_explanation">Щоб бачити ім’я контакту замість номеру телефону, вам слід надати програмі доступ до записів контактів на телефоні</string>
@@ -284,7 +267,6 @@
<string name="notification_channel_media_control">Керування відтворенням</string>
<string name="notification_channel_filetransfer">Передавання файлів</string>
<string name="notification_channel_high_priority">Високий пріоритет</string>
<string name="notification_channel_sms_mms">Нове повідомлення</string>
<string name="mpris_stop">Зупинити відтворення у поточному програвачі</string>
<string name="copy_url_to_clipboard">Скопіювати адресу до буфера</string>
<string name="clipboard_toast">Скопійовано до буфера</string>
@@ -339,13 +321,16 @@
<string name="pref_plugin_bigscreen_desc">Скористайтеся вашим пристроєм як дистанційним керуванням для великого екрана Плазми</string>
<string name="bigscreen_optional_permission_explanation">Щоб оприлюднити вхідні дані з мікрофона вашого телефону, вам слід надати програми доступ до вхідного звукового каналу телефону</string>
<string name="bigscreen_speech_extra_prompt">Озвучення</string>
<string name="message_reply_label">ВІДПОВІСТИ</string>
<string name="mark_as_read_label">ПОЗНАЧИТИ ЯК ПРОЧИТАНЕ</string>
<string name="user_display_name">Ви</string>
<string name="set_default_sms_app_title">Надіслати MMS</string>
<string name="set_group_message_as_mms_title">Надіслати групове MMS</string>
<string name="set_long_text_as_mms_title">Надіслати довгий текст як MMS</string>
<string name="convert_to_mms_after_title">Перетворити на MMS</string>
<string name="sms_pref_set_mmsc_dialog_desc">Встановити MMSC</string>
<string name="sms_pref_set_mmsc_title">MMSC</string>
<string name="sms_pref_set_mms_proxy_dialog_desc">Встановити проксі MMS</string>
<string name="sms_pref_set_mms_proxy_title">Проксі MMS</string>
<string name="sms_pref_set_mms_port_dialog_desc">Встановити порт MMS</string>
<string name="sms_pref_set_mms_port_title">Порт MMS</string>
<string-array name="convert_to_mms_after_entries">
<item>Після одного повідомлення</item>
<item>Після двох повідомлень</item>
@@ -364,8 +349,4 @@
<item>Світла</item>
<item>Темна</item>
</string-array>
<string name="report_bug">Повідомити про ваду</string>
<string name="donate">Підтримати фінансово</string>
<string name="source_code">Початковий код</string>
<string name="licenses">Ліцензування</string>
</resources>

View File

@@ -1,9 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="KdeConnectTheme.NoActionBar" parent="KdeConnectThemeBase.NoActionBar">
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:windowLightStatusBar">@bool/lightMode</item>
</style>
</resources>

View File

@@ -1,10 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="KdeConnectThemeBase.V27" parent="KdeConnectThemeBase">
<item name="android:navigationBarColor">@color/activity_background</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
<item name="android:windowLightNavigationBar">?attr/isLightTheme</item>
</style>
<style name="KdeConnectTheme" parent="KdeConnectThemeBase.V27" />
</resources>

View File

@@ -1,15 +1,13 @@
<?xml version='1.0' encoding='utf-8'?>
<resources>
<string name="kde_connect">KDE Connect</string>
<string name="foreground_notification_no_devices">连接到任何设备</string>
<string name="foreground_notification_no_devices">没有连接到任何设备</string>
<string name="foreground_notification_devices">已连接到:%s</string>
<string name="foreground_notification_send_clipboard">发送剪</string>
<string name="pref_plugin_telephony">电通知</string>
<string name="foreground_notification_send_clipboard">发送剪</string>
<string name="pref_plugin_telephony">通知</string>
<string name="pref_plugin_telephony_desc">发送来电通知</string>
<string name="pref_plugin_battery">电池报告</string>
<string name="pref_plugin_battery_desc">定期报告电池状态</string>
<string name="pref_plugin_connectivity_report">连接报告</string>
<string name="pref_plugin_connectivity_report_desc">报告网络信号强度和状态</string>
<string name="pref_plugin_sftp">开放文件系统</string>
<string name="pref_plugin_sftp_desc">允许远程浏览设备的文件系统</string>
<string name="pref_plugin_clipboard">剪贴板同步</string>
@@ -22,40 +20,40 @@
<string name="pref_plugin_remotekeyboard">接收远程按键</string>
<string name="pref_plugin_remotekeyboard_desc">从远程设备接收按键事件</string>
<string name="pref_plugin_mpris">多媒体控制</string>
<string name="pref_plugin_mpris_desc">遥控媒体播放器</string>
<string name="pref_plugin_runcommand">行命令</string>
<string name="pref_plugin_mpris_desc">媒体播放器的遥控器</string>
<string name="pref_plugin_runcommand">行命令</string>
<string name="pref_plugin_runcommand_desc">触发您的手机或平板电脑的远程命令</string>
<string name="pref_plugin_contacts">联系人同步</string>
<string name="pref_plugin_contacts">联系人同步</string>
<string name="pref_plugin_contacts_desc">允许同步设备的通讯录</string>
<string name="pref_plugin_ping">Ping</string>
<string name="pref_plugin_ping_desc">发送和接受 Ping</string>
<string name="pref_plugin_ping_desc">发送和接受ping</string>
<string name="pref_plugin_notifications">通知同步</string>
<string name="pref_plugin_notifications_desc">从其他设备访问您的通知</string>
<string name="pref_plugin_receive_notifications">接收通知</string>
<string name="pref_plugin_receive_notifications_desc">从其他设备接收通知并显示在 Android 上</string>
<string name="pref_plugin_sharereceiver">发送和接收</string>
<string name="pref_plugin_sharereceiver_desc">在设备间共享文件和链接</string>
<string name="pref_plugin_sharereceiver">分享和接收</string>
<string name="pref_plugin_sharereceiver_desc">在设备间共享文件和 URL</string>
<string name="device_list_empty">无设备</string>
<string name="ok"></string>
<string name="ok"></string>
<string name="sad_ok">确定 :(</string>
<string name="cancel">取消</string>
<string name="open_settings">开设置</string>
<string name="no_permissions">您需要授予权限以访问通知</string>
<string name="no_permission_mprisreceiver">为了控制您的媒体播放器,您需要授予访问通知的权限</string>
<string name="open_settings">设置</string>
<string name="no_permissions">您需要授予权限以便访问通知</string>
<string name="no_permission_mprisreceiver">为了能够控制您的媒体播放器,您需要授予访问通知消息的权限</string>
<string name="no_permissions_remotekeyboard">要接收按键,您需要激活 KDE Connect 远程键盘</string>
<string name="send_ping">发送 Ping</string>
<string name="send_ping">发送ping</string>
<string name="open_mpris_controls">多媒体控制</string>
<string name="remotekeyboard_editing_only_title">只有在编辑时才接受远程按键</string>
<string name="remotekeyboard_not_connected">没有活动的远程键盘链接,请在 KDE Connect 中连接</string>
<string name="remotekeyboard_connected">远程键盘连接已启用</string>
<string name="remotekeyboard_multiple_connections">发现多个远程键盘连接,请选择要配置的设备</string>
<string name="remotekeyboard_multiple_connections">发现多个远程键盘连接,请选择设备进行配置</string>
<string name="open_mousepad">远程输入</string>
<string name="mousepad_info">在屏幕上移动手指来移动光标。轻击代表左键,双指或三指点击代表右键或中键。用双指滚动。用长按来拖放。</string>
<string name="mousepad_double_tap_settings_title">设置双指点击动作</string>
<string name="mousepad_triple_tap_settings_title">设置三指点击动作</string>
<string name="mousepad_sensitivity_settings_title">设置触摸板灵敏度</string>
<string name="mousepad_acceleration_profile_settings_title">设置指针加速</string>
<string name="mousepad_scroll_direction_title">反转滚动方向</string>
<string name="mousepad_acceleration_profile_settings_title">设置指针加速</string>
<string name="mousepad_scroll_direction_title">滚动方向反向</string>
<string-array name="mousepad_tap_entries">
<item>右键点击</item>
<item>中键点击</item>
@@ -76,40 +74,25 @@
<item>更强</item>
<item>最强</item>
</string-array>
<string name="sendkeystrokes_send_to">发送按键到</string>
<string name="sendkeystrokes_textbox_hint">发送按键到主机</string>
<string name="sendkeystrokes_disabled_toast">发送按键已禁用 - 请在设置中启用它</string>
<string name="sendkeystrokes_wrong_data">无效的 MIME 类型 - 需要为“text/x-keystrokes”</string>
<string name="sendkeystrokes_sent_text">发送 %1s 到设备 %2s</string>
<string name="sendkeystrokes_pref_category_summary">此模块允许其他应用共享文本段作为按键发送到连接的主机</string>
<string name="sendkeystrokes_pref_category_title">发送按键</string>
<string name="sendkeystrokes_pref_enabled">启用按键发送</string>
<string name="sendkeystrokes_pref_enabled_summary">监听 MIME 类型为 “text/x-keystrokes” 的数据</string>
<string name="sendkeystrokes_safe_text_enabled">立刻发送安全文本</string>
<string name="sendkeystrokes_safe_text_enabled_summary">发送短纯数字串时无需确认</string>
<string name="pref_plugin_mousepad_send_keystrokes">作为按键发送</string>
<string name="mouse_receiver_plugin_description">接收远程鼠标移动</string>
<string name="mouse_receiver_plugin_name">鼠标接收器</string>
<string name="mouse_receiver_no_permissions">您需要启用无障碍模式</string>
<string name="category_connected_devices">连接的设备</string>
<string name="category_not_paired_devices">可用的设备</string>
<string name="category_remembered_devices">记住的设备</string>
<string name="category_connected_devices">已连接设备</string>
<string name="category_not_paired_devices">可用设备</string>
<string name="category_remembered_devices">已记住设备</string>
<string name="device_menu_plugins">插件设置</string>
<string name="device_menu_unpair">取消配对</string>
<string name="pair_new_device">配对新设备</string>
<string name="unknown_device">未知设备</string>
<string name="error_not_reachable">设备不可及</string>
<string name="error_already_paired">设备已配对</string>
<string name="error_could_not_send_package">无法发送数据包</string>
<string name="error_could_not_send_package">数据包无法发送</string>
<string name="error_timed_out">超时</string>
<string name="error_canceled_by_user">已被用户取消</string>
<string name="error_canceled_by_other_peer">已被其他对等点取消</string>
<string name="error_canceled_by_other_peer">已被另一方取消</string>
<string name="encryption_info_title">加密信息</string>
<string name="encryption_info_msg_no_ssl">另一设备没有使用最新的 KDE Connect使用旧版加密方法。</string>
<string name="my_device_fingerprint">您的设备证书的 SHA256 指纹是:</string>
<string name="remote_device_fingerprint">远程设备证书的 SHA256 指纹是:</string>
<string name="my_device_fingerprint">您的设备证书的 SHA1 指纹是:</string>
<string name="remote_device_fingerprint">远程设备证书的 SHA1 指纹是:</string>
<string name="pair_requested">已请求配对</string>
<string name="pairing_request_from">来自 %1s 的配对请求</string>
<string name="pairing_request_from">来自%1s的配对请求</string>
<plurals name="incoming_file_title">
<item quantity="other">正在从 %2$s 接收 %1$d 个文件</item>
</plurals>
@@ -117,7 +100,7 @@
<item quantity="other">(%3$d 个文件中的第 %2$d 个)%1$s</item>
</plurals>
<plurals name="outgoing_file_title">
<item quantity="other">正在发送 %1$d 个文件 %2$s</item>
<item quantity="other">正在发送 %1$d 个文件 %2$s</item>
</plurals>
<plurals name="outgoing_files_text">
<item quantity="other">(%3$d 个文件中的 %2$d 个)%1$s</item>
@@ -134,10 +117,10 @@
<plurals name="send_files_fail_title">
<item quantity="other">发送给 %1$s 的 %3$d 个文件中的 %2$d 个失败</item>
</plurals>
<string name="tap_to_open">点击打开</string>
<string name="received_file_text">点击打开“%1s”</string>
<string name="tap_to_open">点击打开</string>
<string name="received_file_text">点击打开“%1s”</string>
<string name="cannot_create_file">无法创建文件 %s</string>
<string name="tap_to_answer">点击应答</string>
<string name="tap_to_answer">点击应答</string>
<string name="right_click">发送右键点击</string>
<string name="middle_click">发送中键点击</string>
<string name="show_keyboard">显示键盘</string>
@@ -147,30 +130,30 @@
<string name="pairing_reject">拒绝</string>
<string name="settings">设置</string>
<string name="mpris_play">播放</string>
<string name="mpris_pause">暂停</string>
<string name="mpris_previous">上一曲</string>
<string name="mpris_rew">退</string>
<string name="mpris_pause">Pause</string>
<string name="mpris_previous">前一个</string>
<string name="mpris_rew">退</string>
<string name="mpris_ff">快进</string>
<string name="mpris_next">下一</string>
<string name="mpris_next">下一</string>
<string name="mpris_volume">音量</string>
<string name="mpris_time_settings_title">快进/退按钮</string>
<string name="mpris_time_settings_summary">当按下时调整快进或退的时间</string>
<string name="mpris_time_settings_title">快进/退按钮</string>
<string name="mpris_time_settings_summary">当按下时调整快进或退的时间</string>
<string-array name="mpris_time_entries">
<item>10 </item>
<item>20 </item>
<item>30 </item>
<item>1 分钟</item>
<item>2 分钟</item>
<item>10秒</item>
<item>20秒</item>
<item>30秒</item>
<item>1分钟</item>
<item>2分钟</item>
</string-array>
<string name="mpris_notification_settings_title">显示媒体控制通知</string>
<string name="mpris_notification_settings_summary">打开 KDE Connect 也能在常驻通知中控制媒体播放器</string>
<string name="mpris_notification_settings_title">显示媒体控制通知部件</string>
<string name="mpris_notification_settings_summary">允许在不用打开 KDE 连接的情况下控制媒体播放器</string>
<string name="share_to">分享到...</string>
<string name="protocol_version_newer">该设备使用较新版本的协议</string>
<string name="plugin_settings_with_name">%s设置</string>
<string name="invalid_device_name">无效的设备名</string>
<string name="invalid_device_name">设备名无效</string>
<string name="shareplugin_text_saved">已收到文本,存至剪贴板</string>
<string name="custom_devices_settings">自定义设备列表</string>
<string name="custom_device_list">通过 IP加设备</string>
<string name="custom_device_list">通过IP加设备</string>
<string name="custom_device_deleted">自定义设备已删除</string>
<string name="custom_device_list_help">如果您的设备未被自动检测到,您点击浮动动作按钮可以添加它的 IP 地址或主机名。</string>
<string name="custom_device_fab_hint">添加设备</string>
@@ -181,12 +164,12 @@
<string name="share_destination_customize_summary_disabled">接收的文件会出现在“Downloads”中</string>
<string name="share_destination_customize_summary_enabled">文件将会被存储在以下目录中</string>
<string name="share_destination_folder_preference">目标目录</string>
<string name="share"></string>
<string name="share"></string>
<string name="share_received_file">分享 \"%s\"</string>
<string name="title_activity_notification_filter">通知过滤器</string>
<string name="filter_apps_info">所选软件的通知将会被同步。</string>
<string name="sftp_sdcard_num">SD%d</string>
<string name="sftp_sdcard">SD </string>
<string name="sftp_sdcard_num">SD%d</string>
<string name="sftp_sdcard">SD卡</string>
<string name="sftp_readonly">(只读)</string>
<string name="sftp_camera">相机照片</string>
<string name="add_device_dialog_title">添加设备</string>
@@ -222,8 +205,6 @@
<string name="no_file_browser">未安装文件浏览器</string>
<string name="pref_plugin_telepathy">发送短消息</string>
<string name="pref_plugin_telepathy_desc">从桌面发送短消息</string>
<string name="pref_plugin_telepathy_mms">发送彩信</string>
<string name="pref_plugin_telepathy_mms_desc">您需要将 KDE Connect 设置为默认短信应用程序才能通过它发送彩信。</string>
<string name="findmyphone_title">找到我的手机</string>
<string name="findmyphone_title_tablet">找到我的平板电脑</string>
<string name="findmyphone_title_tv">查找我的电视</string>
@@ -235,7 +216,7 @@
<string name="permission_explanation">这个插件需要权限才能工作</string>
<string name="optional_permission_explanation">您需要授予额外权限以启用全部功能</string>
<string name="plugins_need_optional_permission">因缺少权限,某些插件的一些功能已禁用(点击以查看更多信息):</string>
<string name="share_optional_permission_explanation">要接收共享的文件,您需要选择一个目标目录</string>
<string name="share_optional_permission_explanation">您需要给予访问手机存储的权限才能在手机和桌面计算机之间分享文件</string>
<string name="telepathy_permission_explanation">从计算机桌面读取、写入短消息需要向应用程序授予 SMS 权限</string>
<string name="telephony_permission_explanation">要桌面上查看手机通话记录,您需要授予访问通话记录和手机状态的权限</string>
<string name="telephony_optional_permission_explanation">要查看联系人姓名而非电话号码,您需要授予访问手机通讯录的权限</string>
@@ -260,7 +241,6 @@
<string name="notification_channel_media_control">媒体控制</string>
<string name="notification_channel_filetransfer">文件传送</string>
<string name="notification_channel_high_priority">高优先级</string>
<string name="notification_channel_sms_mms">新建消息</string>
<string name="mpris_stop">停止但前播放器</string>
<string name="copy_url_to_clipboard">复制 URL 到剪贴板</string>
<string name="clipboard_toast">已复制到剪贴板</string>
@@ -310,38 +290,24 @@
<string name="bigscreen_select">选择</string>
<string name="bigscreen_right"></string>
<string name="bigscreen_down"></string>
<string name="bigscreen_mic">麦克风</string>
<string name="pref_plugin_bigscreen">电视遥控</string>
<string name="pref_plugin_bigscreen_desc">使用您手机遥控 Plasma 电视</string>
<string name="bigscreen_optional_permission_explanation">请开启手机的麦克风以共享语音输入。</string>
<string name="bigscreen_speech_extra_prompt">语音</string>
<string name="message_reply_label">回复</string>
<string name="mark_as_read_label">标记为已读</string>
<string name="user_display_name"></string>
<string name="set_default_sms_app_title">发送彩信</string>
<string name="set_group_message_as_mms_title">群发彩信</string>
<string name="set_long_text_as_mms_title">将长文本以彩信形式发送</string>
<string name="convert_to_mms_after_title">转换为彩信</string>
<string-array name="convert_to_mms_after_entries">
<item>在1条消息后</item>
<item>在2条消息后</item>
<item>在3条消息后</item>
<item>在4条消息后</item>
<item>在5条消息后</item>
<item>After one message</item>
<item>After two messages</item>
<item>After three messages</item>
<item>After four messages</item>
<item>After five messages</item>
</string-array>
<string name="theme_dialog_title">选择主题</string>
<string-array name="theme_list">
<item>由省电模式设定</item>
<item>Set by Battery Saver</item>
<item>浅色主题</item>
<item>深色主题</item>
</string-array>
<string-array name="theme_list_v28">
<item>系统默认</item>
<item>亮色</item>
<item>深色</item>
<item>System Default</item>
<item>Light</item>
<item>Dark</item>
</string-array>
<string name="report_bug">报告缺陷</string>
<string name="donate">捐款</string>
<string name="source_code">源代码</string>
<string name="licenses">许可证</string>
</resources>

View File

@@ -89,6 +89,8 @@
<string name="error_canceled_by_other_peer">被其他同等功能應用中斷</string>
<string name="encryption_info_title">加密資訊</string>
<string name="encryption_info_msg_no_ssl">其他的裝置沒有使用新版本的KDE連線使用傳統的加密模式。</string>
<string name="my_device_fingerprint">您裝置憑證的 SHA1 指紋是:</string>
<string name="remote_device_fingerprint">您遠端裝置憑證的 SHA1 指紋是:</string>
<string name="pair_requested">已請求配對</string>
<string name="pairing_request_from">來自 %1s 的配對請求</string>
<plurals name="incoming_file_title">
@@ -214,6 +216,7 @@
<string name="permission_explanation">這外掛程式需要權限以運作</string>
<string name="optional_permission_explanation">你需要授予延伸的權限以啟用所有的功能</string>
<string name="plugins_need_optional_permission">部份的外掛程式因為缺乏權限,而導致功能被停用。(按一下以了解更多資訊):</string>
<string name="share_optional_permission_explanation">為了要在您的手機與電腦之間分享檔案,你需要同意存取手機的儲存空間。</string>
<string name="telepathy_permission_explanation">為了要在您的個人電腦上讀取與撰寫簡訊,你需要提供簡訊的權限。</string>
<string name="telephony_permission_explanation">為了要在桌面上檢視手機通話,您需要提供手機通話記錄及手機狀態的權限。</string>
<string name="telephony_optional_permission_explanation">為了要讓聯絡人名稱取代手機號碼,您需要提供手機通訊錄的權限。</string>

View File

@@ -1,4 +1,6 @@
<resources>
<!-- The style to use on the MainActivity's NavigationView -->
<attr name="mainNavigationViewStyle" format="reference" />
<!-- A high-contrast color for important visual elements (for less important elements, use colorControlNormal instead) -->
<attr name="colorHighContrast" format="color" />
</resources>

View File

@@ -1,15 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="primary">#F67400</color>
<color name="primaryDark">@android:color/white</color>
<color name="accent">#F67400</color>
<color name="primaryDark">#BD5900</color>
<color name="accent">#4ebffa</color>
<color name="disabled_grey">#EEEEEE</color>
<color name="on_secondary">@android:color/white</color>
<color name="on_high_contrast">@android:color/black</color>
<color name="text_color_primary">@android:color/black</color>
<color name="text_color">@android:color/black</color>
<color name="toolbar_color">@android:color/white</color>
<color name="card_stroke_color">#C8C8C8</color>
<color name="activity_background">@android:color/white</color>
<item name="lightMode" type="bool">true</item>
<color name="toolbar_color">#F67400</color>
</resources>

View File

@@ -5,7 +5,4 @@
<dimen name="key_height">48dip</dimen>
<dimen name="fab_margin">16dp</dimen>
<dimen name="fab_elevation">6dp</dimen>
<dimen name="nav_header_horizontal_margin">16dp</dimen>
<dimen name="nav_header_vertical_spacing">8dp</dimen>
<dimen name="nav_header_height">112dp</dimen>
</resources>

View File

@@ -14,8 +14,6 @@
<string name="pref_plugin_telephony_desc">Send notifications for incoming calls</string>
<string name="pref_plugin_battery">Battery report</string>
<string name="pref_plugin_battery_desc">Periodically report battery status</string>
<string name="pref_plugin_connectivity_report">Connectivity report</string>
<string name="pref_plugin_connectivity_report_desc">Report network signal strength and status</string>
<string name="pref_plugin_sftp">Filesystem expose</string>
<string name="pref_plugin_sftp_desc">Allows to browse this device\'s filesystem remotely</string>
<string name="pref_plugin_clipboard">Clipboard sync</string>
@@ -112,29 +110,6 @@
<item>strong</item>
<item>stronger</item>
</string-array>
<string name="sendkeystrokes_send_to">Send keystrokes to</string>
<string name="sendkeystrokes_textbox_hint">Send keystrokes to host</string>
<string name="sendkeystrokes_disabled_toast">Sending keystrokes is disabled - enable it in the settings</string>
<string name="sendkeystrokes_wrong_data"><![CDATA[Invalid mime type - needs to be \'text/x-keystrokes\']]></string>
<string name="sendkeystrokes_sent_text">Sent %1s to device %2s</string>
<string name="sendkeystrokes_pref_category_summary">This module allows other apps to share text segments as keystrokes which will get send to the connected host</string>
<string name="sendkeystrokes_pref_category_title">Send Keystrokes</string>
<string name="sendkeystrokes_pref_enabled">Enable Keystrokes sending</string>
<string name="sendkeystrokes_pref_enabled_summary"><![CDATA[Listen for data with mime type \'text/x-keystrokes\']]></string>
<string name="sendkeystrokes_safe_text_enabled">Send safe text immediately</string>
<string name="sendkeystrokes_safe_text_enabled_summary">Send short only-numeric strings without confirmation</string>
<string name="pref_plugin_mousepad_send_keystrokes">Send as keystrokes</string>
<string name="sendkeystrokes_pref_category" translatable="false">category_send_keystrokes</string>
<string name="pref_sendkeystrokes_enabled" translatable="false">pref_sendkeystrokes_enabled</string>
<string name="pref_send_safe_text_immediately" translatable="false">pref_send_safe_text_immediately</string>
<string name="mouse_receiver_plugin_description">Receive remote mouse movement</string>
<string name="mouse_receiver_plugin_name">Mouse receiver</string>
<string name="mouse_receiver_no_permissions">You need to enable Accessibility Service</string>
<string name="category_connected_devices">Connected devices</string>
<string name="category_not_paired_devices">Available devices</string>
<string name="category_remembered_devices">Remembered devices</string>
@@ -150,11 +125,10 @@
<string name="error_canceled_by_other_peer">Canceled by other peer</string>
<string name="encryption_info_title">Encryption Info</string>
<string name="encryption_info_msg_no_ssl">The other device doesn\'t use a recent version of KDE Connect, using the legacy encryption method.</string>
<string name="my_device_fingerprint">SHA256 fingerprint of your device certificate is:</string>
<string name="remote_device_fingerprint">SHA256 fingerprint of remote device certificate is:</string>
<string name="my_device_fingerprint">SHA1 fingerprint of your device certificate is:</string>
<string name="remote_device_fingerprint">SHA1 fingerprint of remote device certificate is:</string>
<string name="pair_requested">Pair requested</string>
<string name="pairing_request_from">Pairing request from %1s</string>
<string name="pairing_verification_code" translatable="false">🔑%1s...</string>
<plurals name="incoming_file_title">Receiving file from %1s>
<item quantity="one">Receiving %1$d file from %2$s</item>
<item quantity="other">Receiving %1$d files from %2$s</item>
@@ -306,7 +280,7 @@
<string name="permission_explanation">This plugin needs permissions to work</string>
<string name="optional_permission_explanation">You need to grant extra permissions to enable all functions</string>
<string name="plugins_need_optional_permission">Some plugins have features disabled because of lack of permission (tap for more info):</string>
<string name="share_optional_permission_explanation">To receive shared files you need to choose a destination directory</string>
<string name="share_optional_permission_explanation">To share files between your phone and your desktop you need to give access to the phone\'s storage</string>
<string name="telepathy_permission_explanation">To read and write SMS from your desktop you need to give permission to SMS</string>
<string name="telephony_permission_explanation">To see phone calls on the desktop you need to give permission to phone call logs and phone state</string>
<string name="telephony_optional_permission_explanation">To see a contact name instead of a phone number you need to give access to the phone\'s contacts</string>
@@ -334,7 +308,6 @@
<string name="notification_channel_media_control">Media control</string>
<string name="notification_channel_filetransfer">File transfer</string>
<string name="notification_channel_high_priority">High priority</string>
<string name="notification_channel_sms_mms">New Message</string>
<string name="mpris_stop">Stop the current player</string>
<string name="copy_url_to_clipboard">Copy URL to clipboard</string>
@@ -401,9 +374,6 @@
<string name="bigscreen_optional_permission_explanation">To share microphone input from your phone you need to give access to the phone\'s audio input</string>
<string name="bigscreen_speech_extra_prompt">Speech</string>
<string name="message_reply_label">REPLY</string>
<string name="mark_as_read_label">MARK AS READ</string>
<string name="user_display_name">You</string>
<string name="set_default_sms_app_title">Send MMS</string>
<string name="set_group_message_as_mms_title">Send group MMS</string>
<string name="set_group_message_as_mms" translatable="false">set_group_message_as_mms</string>
@@ -411,6 +381,15 @@
<string name="set_long_text_as_mms" translatable="false">set_long_text_as_mms</string>
<string name="convert_to_mms_after_title">Convert to MMS</string>
<string name="convert_to_mms_after" translatable="false">convert_to_mms_after</string>
<string name="sms_pref_set_mmsc_dialog_desc">Set MMSC</string>
<string name="sms_pref_set_mmsc_title">MMSC</string>
<string name="sms_pref_set_mmsc" translatable="false">sms_pref_set_mmsc</string>
<string name="sms_pref_set_mms_proxy_dialog_desc">Set MMS proxy</string>
<string name="sms_pref_set_mms_proxy_title">MMS proxy</string>
<string name="sms_pref_set_mms_proxy" translatable="false">sms_pref_set_mms_proxy</string>
<string name="sms_pref_set_mms_port_dialog_desc">Set MMS port</string>
<string name="sms_pref_set_mms_port_title">MMS port</string>
<string name="sms_pref_set_mms_port" translatable="false">sms_pref_set_mms_port</string>
<string name="convert_to_mms_after_default" translatable="false">3</string>
<string-array name="convert_to_mms_after_entries">
<item>After one message</item>
@@ -445,12 +424,5 @@
<item>light</item>
<item>dark</item>
</string-array>
<string name="report_bug">Report Bug</string>
<string name="report_bug_url" translatable="false">https://bugs.kde.org/enter_bug.cgi?product=kdeconnect&amp;component=android-application</string>
<string name="donate">Donate</string>
<string name="donate_url" translatable="false">https://kde.org/community/donations/?app=kdeconnect-android</string>
<string name="source_code">Source Code</string>
<string name="source_code_url" translatable="false">https://invent.kde.org/network/kdeconnect-android/</string>
<string name="licenses">Licenses</string>
</resources>

View File

@@ -1,6 +1,6 @@
<resources>
<!-- NoActionBar because we use a Toolbar widget as ActionBar -->
<style name="KdeConnectThemeBase" parent="Theme.MaterialComponents.DayNight">
<style name="KdeConnectThemeBase" parent="Theme.MaterialComponents.DayNight.DarkActionBar">
<!-- The main color attributes -->
<!-- The three colors used by system widgets, according to https://chris.banes.me/2014/10/17/appcompat-v21/ -->
<item name="colorPrimary">@color/primary</item>
@@ -9,8 +9,6 @@
<item name="colorOnSecondary">@color/on_secondary</item>
<item name="colorAccent">@color/accent</item>
<item name="colorHighContrast">@color/on_high_contrast</item>
<item name="android:windowBackground">@color/activity_background</item>
<item name="android:colorBackground">@color/activity_background</item>
<!-- TODO: The 2 items below change too much (eg snackbar text is now black, should be white) -->
<item name="android:textColorPrimary">@color/text_color_primary</item>
<item name="android:textColor">@color/text_color</item>
@@ -20,6 +18,7 @@
<!-- Style overrides -->
<item name="actionModeStyle">@style/ActionModeStyle</item>
<item name="mainNavigationViewStyle">@style/MainNavigationView</item>
<item name="toolbarStyle">@style/KdeConnectTheme.Toolbar</item>
<!-- Theme overrides -->
@@ -28,18 +27,17 @@
</style>
<style name="KdeConnectTheme" parent="KdeConnectThemeBase" />
<style name="KdeConnectThemeBase.NoActionBar" parent="KdeConnectTheme">
<style name="KdeConnectThemeBase.NoActionBar" parent="KdeConnectThemeBase">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
<style name="KdeConnectTheme.NoActionBar" parent="KdeConnectThemeBase.NoActionBar" />
<style name="KdeConnectTheme" parent="KdeConnectThemeBase" />
<style name="KdeConnectTheme.Toolbar" parent="Widget.AppCompat.Toolbar">
<item name="android:background">@color/toolbar_color</item>
</style>
<style name="KdeConnectTheme.NoActionBar" parent="KdeConnectThemeBase.NoActionBar" />
<style name="MainNavigationView">
<item name="android:background">@drawable/state_list_drawer_background</item>

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