mirror of
https://github.com/KDE/kdeconnect-android
synced 2025-08-31 22:25:08 +00:00
Compare commits
12 Commits
v1.18.1
...
sredman/kd
Author | SHA1 | Date | |
---|---|---|---|
|
ad49e500fa | ||
|
826c0a854e | ||
|
cf32416243 | ||
|
d8749d8f85 | ||
|
75e08345f7 | ||
|
8168ff53e6 | ||
|
d939c18dd5 | ||
|
ec638fdbec | ||
|
e77978d1d5 | ||
|
a63100e5d4 | ||
|
c817fe1012 | ||
|
58de1aa868 |
@@ -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="11810"
|
||||
android:versionName="1.18.1">
|
||||
android:versionCode="11421"
|
||||
android:versionName="1.14.2">
|
||||
|
||||
<supports-screens
|
||||
android:anyDensity="true"
|
||||
@@ -35,14 +35,15 @@
|
||||
<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" />
|
||||
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
||||
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
||||
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
|
||||
|
||||
|
||||
|
||||
@@ -52,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"
|
||||
@@ -66,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"
|
||||
@@ -73,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"
|
||||
@@ -93,10 +136,29 @@
|
||||
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" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
|
||||
<data android:mimeType="image/*" />
|
||||
</intent-filter>
|
||||
</activity>
|
||||
<activity
|
||||
@@ -171,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"
|
||||
@@ -252,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"
|
||||
@@ -278,7 +325,7 @@
|
||||
</activity>
|
||||
<activity
|
||||
android:name="org.kde.kdeconnect.Plugins.SharePlugin.ShareActivity"
|
||||
android:label="@string/manifest_label_share">
|
||||
android:label="KDE Connect">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.SEND" />
|
||||
|
||||
@@ -329,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"
|
||||
@@ -360,32 +397,7 @@
|
||||
android:value="org.kde.kdeconnect.UserInterface.MainActivity" />
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name="org.kde.kdeconnect.UserInterface.About.EasterEggActivity"
|
||||
android:label="@string/easter_egg"
|
||||
android:parentActivityName="org.kde.kdeconnect.UserInterface.MainActivity">
|
||||
<meta-data
|
||||
android:name="android.support.PARENT_ACTIVITY"
|
||||
android:value="org.kde.kdeconnect.UserInterface.MainActivity" />
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name="org.kde.kdeconnect.UserInterface.About.AboutKDEActivity"
|
||||
android:label="@string/about_kde"
|
||||
android:parentActivityName="org.kde.kdeconnect.UserInterface.MainActivity">
|
||||
<meta-data
|
||||
android:name="android.support.PARENT_ACTIVITY"
|
||||
android:value="org.kde.kdeconnect.UserInterface.MainActivity" />
|
||||
</activity>
|
||||
|
||||
<activity
|
||||
android:name="org.kde.kdeconnect.UserInterface.About.LicensesActivity"
|
||||
android:label="@string/licenses"
|
||||
android:parentActivityName="org.kde.kdeconnect.UserInterface.MainActivity">
|
||||
<meta-data
|
||||
android:name="android.support.PARENT_ACTIVITY"
|
||||
android:value="org.kde.kdeconnect.UserInterface.MainActivity" />
|
||||
</activity>
|
||||
</application>
|
||||
|
||||
</manifest>
|
||||
|
@@ -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.
|
@@ -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.
|
@@ -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>.
|
@@ -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.
|
@@ -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/).
|
||||
|
86
build.gradle
86
build.gradle
@@ -1,39 +1,33 @@
|
||||
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.6.0'
|
||||
repositories {
|
||||
mavenCentral()
|
||||
google()
|
||||
}
|
||||
dependencies {
|
||||
classpath 'com.android.tools.build:gradle:7.0.3'
|
||||
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 31
|
||||
compileSdkVersion 29
|
||||
defaultConfig {
|
||||
minSdkVersion 14
|
||||
targetSdkVersion 30
|
||||
minSdkVersion 21
|
||||
targetSdkVersion 29
|
||||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
||||
|
||||
multiDexEnabled true
|
||||
}
|
||||
buildFeatures {
|
||||
viewBinding true
|
||||
dexOptions {
|
||||
javaMaxHeapSize "2g"
|
||||
}
|
||||
compileOptions {
|
||||
sourceCompatibility JavaVersion.VERSION_1_8
|
||||
@@ -50,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 {
|
||||
@@ -77,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
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -138,13 +130,13 @@ Provider<String> gitHashProvider = project.provider {
|
||||
}
|
||||
|
||||
ext {
|
||||
coroutines_version = '1.5.0'
|
||||
coroutines_version = '1.3.6'
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
jcenter()
|
||||
google()
|
||||
/* Needed for org.apache.sshd debugging
|
||||
maven {
|
||||
@@ -153,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.4.3'
|
||||
implementation 'androidx.appcompat:appcompat:1.3.1'
|
||||
implementation 'androidx.core:core-ktx:1.7.0'
|
||||
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.1'
|
||||
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.4.0'
|
||||
implementation 'androidx.lifecycle:lifecycle-runtime:2.2.0'
|
||||
implementation "androidx.lifecycle:lifecycle-extensions:2.2.0"
|
||||
implementation 'androidx.lifecycle:lifecycle-common-java8:2.4.0'
|
||||
implementation 'androidx.lifecycle:lifecycle-common-java8:2.2.0'
|
||||
implementation 'androidx.gridlayout:gridlayout:1.0.0'
|
||||
implementation 'com.google.android.material:material:1.4.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
|
||||
|
||||
@@ -177,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'
|
||||
|
||||
@@ -184,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"
|
||||
@@ -192,7 +187,7 @@ dependencies {
|
||||
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
|
||||
|
||||
// Testing
|
||||
testImplementation 'junit:junit:4.13.1'
|
||||
testImplementation 'junit:junit:4.12'
|
||||
testImplementation 'org.powermock:powermock-core:2.0.0'
|
||||
testImplementation 'org.powermock:powermock-module-junit4:2.0.0'
|
||||
testImplementation 'org.powermock:powermock-api-mockito2:2.0.0'
|
||||
@@ -204,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)
|
||||
|
4
gradle/wrapper/gradle-wrapper.properties
vendored
4
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -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-7.0.2-all.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-6.3-all.zip
|
||||
|
5
proguard-rules.pro
vendored
5
proguard-rules.pro
vendored
@@ -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.**
|
||||
|
@@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/* //device/apps/common/res/anim/slide_in_left.xml
|
||||
**
|
||||
** SPDX-FileCopyrightText: 2007 The Android Open Source Project
|
||||
**
|
||||
** SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
-->
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:fromXDelta="-50%p" android:toXDelta="0"
|
||||
android:duration="@android:integer/config_shortAnimTime"/>
|
||||
<alpha android:fromAlpha="0.0" android:toAlpha="1.0"
|
||||
android:duration="@android:integer/config_shortAnimTime" />
|
||||
</set>
|
@@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/* //device/apps/common/res/anim/slide_in_right.xml
|
||||
**
|
||||
** SPDX-FileCopyrightText: 2007 The Android Open Source Project
|
||||
**
|
||||
** SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
-->
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:fromXDelta="50%p" android:toXDelta="0"
|
||||
android:duration="@android:integer/config_shortAnimTime"/>
|
||||
<alpha android:fromAlpha="0.0" android:toAlpha="1.0"
|
||||
android:duration="@android:integer/config_shortAnimTime" />
|
||||
</set>
|
@@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/* //device/apps/common/res/anim/slide_out_left.xml
|
||||
**
|
||||
** SPDX-FileCopyrightText: 2007 The Android Open Source Project
|
||||
**
|
||||
** SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
-->
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:fromXDelta="0" android:toXDelta="-50%p"
|
||||
android:duration="@android:integer/config_shortAnimTime"/>
|
||||
<alpha android:fromAlpha="1.0" android:toAlpha="0.0"
|
||||
android:duration="@android:integer/config_shortAnimTime" />
|
||||
</set>
|
@@ -1,15 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/* //device/apps/common/res/anim/slide_out_right.xml
|
||||
**
|
||||
** SPDX-FileCopyrightText: 2007 The Android Open Source Project
|
||||
**
|
||||
** SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
-->
|
||||
<set xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<translate android:fromXDelta="0" android:toXDelta="50%p"
|
||||
android:duration="@android:integer/config_shortAnimTime"/>
|
||||
<alpha android:fromAlpha="1.0" android:toAlpha="0.0"
|
||||
android:duration="@android:integer/config_shortAnimTime" />
|
||||
</set>
|
BIN
res/drawable/drawer_header.jpeg
Normal file
BIN
res/drawable/drawer_header.jpeg
Normal file
Binary file not shown.
After Width: | Height: | Size: 36 KiB |
@@ -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>
|
@@ -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>
|
@@ -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>
|
@@ -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>
|
@@ -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,2C6.48,2 2,6.48 2,12s4.48,10 10,10 10,-4.48 10,-10S17.52,2 12,2zM13,17h-2v-6h2v6zM13,9h-2L11,7h2v2z"/>
|
||||
</vector>
|
@@ -1,11 +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"
|
||||
android:autoMirrored="true">
|
||||
<path
|
||||
android:fillColor="@android:color/white"
|
||||
android:pathData="M2.01,21L23,12 2.01,3 2,10l15,2 -15,2z"/>
|
||||
</vector>
|
@@ -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>
|
@@ -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,4L4,4c-1.1,0 -1.99,0.9 -1.99,2L2,18c0,1.1 0.9,2 2,2h16c1.1,0 2,-0.9 2,-2L22,6c0,-1.1 -0.9,-2 -2,-2zM15,18L4,18v-4h11v4zM15,13L4,13L4,9h11v4zM20,18h-4L16,9h4v9z"/>
|
||||
</vector>
|
@@ -1,4 +0,0 @@
|
||||
<vector android:height="24dp" android:viewportHeight="48"
|
||||
android:viewportWidth="48" android:width="24dp" xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<path android:fillColor="#fcfcfc" android:pathData="m26.8172,6.058 l-5.9774,0.5722v24.6133l5.9142,-0.8904v-10.494l7.9499,11.6392 6.2324,-1.972 -8.1405,-11.1935 8.2042,-10.5576 -6.3594,-1.4621 -7.8865,10.5572zM13.2678,12.0558c-0.0675,0.0071 -0.1327,0.0369 -0.1834,0.0877l-2.346,2.3456c-0.0986,0.0989 -0.1172,0.2523 -0.0445,0.3721l2.7467,4.5238c-0.4872,0.819 -0.8776,1.7021 -1.1567,2.6336l-5.0426,1.0489c-0.1403,0.0291 -0.2414,0.1534 -0.2414,0.2973v3.3173c0,0.1403 0.096,0.2618 0.2312,0.2945l4.8943,1.1963c0.261,1.0789 0.6654,2.1016 1.2,3.0416l-2.833,4.32c-0.079,0.1208 -0.0625,0.2798 0.0396,0.3815l2.3452,2.3456c0.0986,0.0984 0.2526,0.1176 0.3729,0.0454l4.4393,-2.6961c0.872,0.5032 1.8124,0.8992 2.8063,1.1677l1.0358,4.98c0.0291,0.1412 0.1539,0.2414 0.2969,0.2414h3.3177c0.1395,0 0.2612,-0.0952 0.2945,-0.232l1.22,-4.9903c1.0246,-0.2765 1.9935,-0.6886 2.8869,-1.2147l4.3747,2.8684c0.1203,0.0792 0.2794,0.0633 0.3815,-0.0387l2.346,-2.3456c0.0992,-0.0992 0.117,-0.2526 0.0441,-0.3721l-1.597,-2.632 -0.5167,0.1634c-0.0753,0.0238 -0.1575,-0.0043 -0.2018,-0.0699 0,0 -1.0186,-1.4912 -2.3342,-3.4167 -1.5727,3.0779 -4.7723,5.1864 -8.4672,5.1864 -5.2496,0 -9.5055,-4.2561 -9.5055,-9.5059 0,-3.8619 2.3035,-7.1832 5.6102,-8.6711v-2.4523c-0.6018,0.2105 -1.1836,0.4644 -1.7362,0.7654 -0.0004,-0.0004 -0.0008,-0.0014 -0.0024,-0.0028l-4.4777,-2.9368c-0.0603,-0.0394 -0.1302,-0.0551 -0.1977,-0.0482z"/>
|
||||
</vector>
|
@@ -1,9 +0,0 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="48dp"
|
||||
android:height="48dp"
|
||||
android:viewportWidth="48"
|
||||
android:viewportHeight="48">
|
||||
<path
|
||||
android:pathData="m26.8172,6.058 l-5.9774,0.5722v24.6133l5.9142,-0.8904v-10.494l7.9499,11.6392 6.2324,-1.972 -8.1405,-11.1935 8.2042,-10.5576 -6.3594,-1.4621 -7.8865,10.5572zM13.2678,12.0558c-0.0675,0.0071 -0.1327,0.0369 -0.1834,0.0877l-2.346,2.3456c-0.0986,0.0989 -0.1172,0.2523 -0.0445,0.3721l2.7467,4.5238c-0.4872,0.819 -0.8776,1.7021 -1.1567,2.6336l-5.0426,1.0489c-0.1403,0.0291 -0.2414,0.1534 -0.2414,0.2973v3.3173c0,0.1403 0.096,0.2618 0.2312,0.2945l4.8943,1.1963c0.261,1.0789 0.6654,2.1016 1.2,3.0416l-2.833,4.32c-0.079,0.1208 -0.0625,0.2798 0.0396,0.3815l2.3452,2.3456c0.0986,0.0984 0.2526,0.1176 0.3729,0.0454l4.4393,-2.6961c0.872,0.5032 1.8124,0.8992 2.8063,1.1677l1.0358,4.98c0.0291,0.1412 0.1539,0.2414 0.2969,0.2414h3.3177c0.1395,0 0.2612,-0.0952 0.2945,-0.232l1.22,-4.9903c1.0246,-0.2765 1.9935,-0.6886 2.8869,-1.2147l4.3747,2.8684c0.1203,0.0792 0.2794,0.0633 0.3815,-0.0387l2.346,-2.3456c0.0992,-0.0992 0.117,-0.2526 0.0441,-0.3721l-1.597,-2.632 -0.5167,0.1634c-0.0753,0.0238 -0.1575,-0.0043 -0.2018,-0.0699 0,0 -1.0186,-1.4912 -2.3342,-3.4167 -1.5727,3.0779 -4.7723,5.1864 -8.4672,5.1864 -5.2496,0 -9.5055,-4.2561 -9.5055,-9.5059 0,-3.8619 2.3035,-7.1832 5.6102,-8.6711v-2.4523c-0.6018,0.2105 -1.1836,0.4644 -1.7362,0.7654 -0.0004,-0.0004 -0.0008,-0.0014 -0.0024,-0.0028l-4.4777,-2.9368c-0.0603,-0.0394 -0.1302,-0.0551 -0.1977,-0.0482z"
|
||||
android:fillColor="#fcfcfc"/>
|
||||
</vector>
|
@@ -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>
|
@@ -1,9 +0,0 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24.0"
|
||||
android:viewportHeight="24.0">
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M7,7h10v3l4,-4 -4,-4v3L5,5v6h2L7,7zM17,17L7,17v-3l-4,4 4,4v-3h12v-6h-2v4z" />
|
||||
</vector>
|
@@ -1,10 +0,0 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24.0"
|
||||
android:viewportHeight="24.0">
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:fillType="evenOdd"
|
||||
android:pathData="M21,1L3,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM7,7h10v3l4,-4 -4,-4v3L5,5v6h2L7,7zM17,17L7,17v-3l-4,4 4,4v-3h12v-6h-2v4z" />
|
||||
</vector>
|
@@ -1,10 +0,0 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24.0"
|
||||
android:viewportHeight="24.0">
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:fillType="evenOdd"
|
||||
android:pathData="M21,1L3,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM7,7h10v3l4,-4 -4,-4v3L5,5v6h2L7,7zM17,17L7,17v-3l-4,4 4,4v-3h12v-6h-2v4zM13,15L13,9h-1l-2,1v1h1.5v4L13,15z" />
|
||||
</vector>
|
@@ -1,9 +0,0 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24.0"
|
||||
android:viewportHeight="24.0">
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:pathData="M10.59,9.17L5.41,4 4,5.41l5.17,5.17 1.42,-1.41zM14.5,4l2.04,2.04L4,18.59 5.41,20 17.96,7.46 20,9.5L20,4h-5.5zM14.83,13.41l-1.41,1.41 3.13,3.13L14.5,20L20,20v-5.5l-2.04,2.04 -3.13,-3.13z" />
|
||||
</vector>
|
@@ -1,10 +0,0 @@
|
||||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="24dp"
|
||||
android:height="24dp"
|
||||
android:viewportWidth="24.0"
|
||||
android:viewportHeight="24.0">
|
||||
<path
|
||||
android:fillColor="#FF000000"
|
||||
android:fillType="evenOdd"
|
||||
android:pathData="M21,1L3,1c-1.1,0 -2,0.9 -2,2v18c0,1.1 0.9,2 2,2h18c1.1,0 2,-0.9 2,-2L23,3c0,-1.1 -0.9,-2 -2,-2zM10.59,9.17L5.41,4 4,5.41l5.17,5.17 1.42,-1.41zM14.5,4l2.04,2.04L4,18.59 5.41,20 17.96,7.46 20,9.5L20,4h-5.5zM14.83,13.41l-1.41,1.41 3.13,3.13L14.5,20L20,20v-5.5l-2.04,2.04 -3.13,-3.13z" />
|
||||
</vector>
|
Binary file not shown.
Before Width: | Height: | Size: 81 KiB |
@@ -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>
|
@@ -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>
|
@@ -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>
|
7
res/drawable/text_section_header.xml
Normal file
7
res/drawable/text_section_header.xml
Normal 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>
|
@@ -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>
|
||||
|
@@ -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>
|
||||
|
@@ -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>
|
||||
|
@@ -1,71 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
|
||||
<LinearLayout 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"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:background="?android:attr/selectableItemBackground"
|
||||
android:baselineAligned="false"
|
||||
android:minHeight="?android:attr/listPreferredItemHeight"
|
||||
android:orientation="horizontal"
|
||||
android:paddingStart="4dp"
|
||||
android:paddingLeft="4dp"
|
||||
android:gravity="center_vertical"
|
||||
android:paddingEnd="?android:attr/scrollbarSize"
|
||||
android:paddingRight="?android:attr/scrollbarSize">
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_weight="1"
|
||||
android:gravity="center_vertical"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/about_person_list_item_entry_name"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:ellipsize="marquee"
|
||||
android:fadingEdge="horizontal"
|
||||
android:singleLine="true"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:textSize="17sp"
|
||||
tools:text="Konqi Konqueror" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/about_person_list_item_entry_task"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:visibility="gone"
|
||||
tools:text="Developer"
|
||||
tools:visibility="visible" />
|
||||
</LinearLayout>
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/about_person_list_item_entry_visit_homepage_button"
|
||||
android:layout_width="36dp"
|
||||
android:layout_height="36dp"
|
||||
android:layout_marginEnd="@dimen/default_gap"
|
||||
android:layout_marginRight="@dimen/default_gap"
|
||||
android:background="?attr/selectableItemBackgroundBorderless"
|
||||
android:contentDescription="@string/visit_contributors_homepage"
|
||||
android:src="@drawable/ic_baseline_web_24"
|
||||
android:visibility="gone"
|
||||
app:tint="@color/text_color"
|
||||
tools:visibility="visible" />
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/about_person_list_item_entry_email_button"
|
||||
android:layout_width="36dp"
|
||||
android:layout_height="36dp"
|
||||
android:layout_marginEnd="4dp"
|
||||
android:layout_marginRight="4dp"
|
||||
android:background="?attr/selectableItemBackgroundBorderless"
|
||||
android:contentDescription="@string/email_contributor"
|
||||
android:src="@drawable/ic_baseline_send_24"
|
||||
android:visibility="gone"
|
||||
app:tint="@color/text_color"
|
||||
tools:visibility="visible" />
|
||||
</LinearLayout>
|
@@ -1,137 +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.UserInterface.About.AboutKDEActivity">
|
||||
|
||||
<include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:fillViewport="true"
|
||||
app:layout_behavior="@string/appbar_scrolling_view_behavior">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/about_layout"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:drawablePadding="8dp"
|
||||
android:gravity="center_vertical"
|
||||
android:layout_margin="24dp"
|
||||
android:text="@string/kde_be_free"
|
||||
android:textAppearance="?attr/textAppearanceHeadline6"
|
||||
app:drawableLeftCompat="@drawable/ic_kde_48dp"
|
||||
app:drawableStartCompat="@drawable/ic_kde_48dp"
|
||||
app:drawableTint="@color/text_color" />
|
||||
|
||||
<com.google.android.material.card.MaterialCardView
|
||||
xmlns:card_view="https://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginStart="12dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:layout_marginEnd="12dp"
|
||||
android:layout_marginBottom="12dp"
|
||||
card_view:cardBackgroundColor="@color/card_stroke_color"
|
||||
card_view:cardCornerRadius="12dp"
|
||||
card_view:cardElevation="5dp"
|
||||
card_view:cardUseCompatPadding="true">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/about_text_view"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_width="match_parent"
|
||||
android:padding="12dp"
|
||||
android:textIsSelectable="true"
|
||||
tools:text="@string/about_kde_about" />
|
||||
</com.google.android.material.card.MaterialCardView>
|
||||
|
||||
<com.google.android.material.card.MaterialCardView
|
||||
xmlns:card_view="https://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginStart="12dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:layout_marginEnd="12dp"
|
||||
android:layout_marginBottom="12dp"
|
||||
card_view:cardBackgroundColor="@color/card_stroke_color"
|
||||
card_view:cardCornerRadius="12dp"
|
||||
card_view:cardElevation="5dp"
|
||||
card_view:cardUseCompatPadding="true">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/report_bugs_or_wishes_text_view"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_width="match_parent"
|
||||
android:padding="12dp"
|
||||
android:textIsSelectable="true"
|
||||
tools:text="@string/about_kde_report_bugs_or_wishes" />
|
||||
</com.google.android.material.card.MaterialCardView>
|
||||
|
||||
<com.google.android.material.card.MaterialCardView
|
||||
xmlns:card_view="https://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginStart="12dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:layout_marginEnd="12dp"
|
||||
android:layout_marginBottom="12dp"
|
||||
card_view:cardBackgroundColor="@color/card_stroke_color"
|
||||
card_view:cardCornerRadius="12dp"
|
||||
card_view:cardElevation="5dp"
|
||||
card_view:cardUseCompatPadding="true">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/join_kde_text_view"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_width="match_parent"
|
||||
android:padding="12dp"
|
||||
android:textIsSelectable="true"
|
||||
tools:text="@string/about_kde_join_kde" />
|
||||
</com.google.android.material.card.MaterialCardView>
|
||||
|
||||
<com.google.android.material.card.MaterialCardView
|
||||
xmlns:card_view="https://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginLeft="12dp"
|
||||
android:layout_marginStart="12dp"
|
||||
android:layout_marginRight="12dp"
|
||||
android:layout_marginEnd="12dp"
|
||||
android:layout_marginBottom="12dp"
|
||||
card_view:cardBackgroundColor="@color/card_stroke_color"
|
||||
card_view:cardCornerRadius="12dp"
|
||||
card_view:cardElevation="5dp"
|
||||
card_view:cardUseCompatPadding="true">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/support_kde_text_view"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_width="match_parent"
|
||||
android:padding="12dp"
|
||||
android:textIsSelectable="true"
|
||||
tools:text="@string/about_kde_support_kde" />
|
||||
</com.google.android.material.card.MaterialCardView>
|
||||
|
||||
<ImageView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="256dp"
|
||||
android:layout_gravity="center"
|
||||
android:contentDescription="@string/konqi"
|
||||
android:paddingBottom="12dp"
|
||||
android:src="@drawable/konqi" />
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
||||
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
@@ -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>
|
||||
|
@@ -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>
|
@@ -1,68 +1,113 @@
|
||||
<LinearLayout
|
||||
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"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:orientation="vertical"
|
||||
tools:context="org.kde.kdeconnect.UserInterface.DeviceFragment">
|
||||
|
||||
<!-- Layout shown when device is reachable but not yet paired -->
|
||||
<include
|
||||
android:id="@+id/pair_request"
|
||||
layout="@layout/view_pair_request"
|
||||
tools:visibility="gone"/>
|
||||
<LinearLayout
|
||||
android:id="@+id/pairing_buttons"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:orientation="vertical"
|
||||
android:padding="@dimen/activity_vertical_margin"
|
||||
android:visibility="gone">
|
||||
|
||||
<ProgressBar
|
||||
android:id="@+id/pair_progress"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:visibility="gone"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/pair_message"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="8dip"
|
||||
android:text="@string/device_not_paired"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"/>
|
||||
|
||||
<Button
|
||||
android:id="@+id/pair_button"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@drawable/button_round"
|
||||
android:text="@string/request_pairing"
|
||||
android:textColor="@android:color/white"/>
|
||||
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/pair_request_buttons"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:visibility="gone">
|
||||
|
||||
<Button
|
||||
android:id="@+id/accept_button"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="4dip"
|
||||
android:layout_weight="1"
|
||||
android:background="@drawable/button_round"
|
||||
android:text="@string/pairing_accept"
|
||||
android:textColor="@android:color/white"/>
|
||||
|
||||
<Button
|
||||
android:id="@+id/reject_button"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="4dip"
|
||||
android:layout_weight="1"
|
||||
android:background="@drawable/button_round"
|
||||
android:text="@string/pairing_reject"
|
||||
android:textColor="@android:color/white"/>
|
||||
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/error_message_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center"
|
||||
android:orientation="horizontal"
|
||||
android:padding="16dp"
|
||||
android:visibility="gone">
|
||||
|
||||
<androidx.appcompat.widget.AppCompatImageView
|
||||
android:id="@+id/error_message_icon"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:importantForAccessibility="no"
|
||||
android:paddingEnd="8dip"
|
||||
android:paddingLeft="0dip"
|
||||
android:paddingRight="8dip"
|
||||
android:paddingStart="0dip"
|
||||
app:srcCompat="@drawable/ic_error_outline_48dp"
|
||||
app:tint="?attr/colorHighContrast"
|
||||
tools:ignore="UnusedAttribute"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/not_reachable_message"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:text="@string/unreachable_description"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:visibility="gone" />
|
||||
</LinearLayout>
|
||||
|
||||
<!-- Layout shown when we can't pair with device or device is not reachable -->
|
||||
<include
|
||||
android:id="@+id/pair_error"
|
||||
layout="@layout/view_pair_error"
|
||||
tools:visibility="gone"/>
|
||||
|
||||
<!-- Layout shown when device is paired and reachable -->
|
||||
<ListView
|
||||
android:id="@+id/buttons_list"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
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:layout_weight=".8"
|
||||
android:divider="@null"
|
||||
android:dividerHeight="0dp" />
|
||||
|
||||
<!-- Extra information about the current device -->
|
||||
<RelativeLayout
|
||||
android:id="@+id/view_status_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:elevation="4dp"
|
||||
android:padding="8dp"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible"
|
||||
tools:ignore="UnusedAttribute">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/view_status_title"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentTop="true"
|
||||
android:padding="4dp"
|
||||
android:text="@string/view_status_title"
|
||||
android:textAppearance="@style/TextAppearance.MaterialComponents.Headline5"
|
||||
/>
|
||||
|
||||
<CheckedTextView
|
||||
android:id="@+id/view_battery_status"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@id/view_status_title"
|
||||
android:checkMark="@null"
|
||||
android:clickable="false"
|
||||
android:padding="4dp"
|
||||
android:textAppearance="@style/TextAppearance.MaterialComponents.Body1"
|
||||
android:text="@string/battery_status_unknown"
|
||||
tools:text="100%"
|
||||
/>
|
||||
|
||||
</RelativeLayout>
|
||||
tools:listitem="@layout/list_item_with_icon_entry"/>
|
||||
</LinearLayout>
|
||||
|
@@ -1,24 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:id="@+id/easter_egg_layout"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:background="#1d99f3"
|
||||
android:gravity="center">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/logo"
|
||||
android:layout_width="396dp"
|
||||
android:layout_height="396dp"
|
||||
android:src="@drawable/ic_kde_48dp"
|
||||
android:contentDescription="@string/easter_egg" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/angle"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textColor="@android:color/white"
|
||||
tools:text="90°"/>
|
||||
</LinearLayout>
|
@@ -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>
|
||||
|
@@ -1,16 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<androidx.coordinatorlayout.widget.CoordinatorLayout 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"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
tools:context="org.kde.kdeconnect.UserInterface.About.LicensesActivity">
|
||||
|
||||
<include layout="@layout/toolbar" android:id="@+id/toolbar_layout" />
|
||||
|
||||
<androidx.recyclerview.widget.RecyclerView
|
||||
android:id="@+id/licenses_text"
|
||||
app:layout_behavior="@string/appbar_scrolling_view_behavior"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent" />
|
||||
</androidx.coordinatorlayout.widget.CoordinatorLayout>
|
@@ -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>
|
||||
|
@@ -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>
|
@@ -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>
|
||||
|
@@ -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>
|
||||
|
@@ -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"/>
|
@@ -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>
|
||||
|
@@ -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>
|
36
res/layout/activity_runcommand.xml
Normal file
36
res/layout/activity_runcommand.xml
Normal 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>
|
@@ -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>
|
@@ -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>
|
@@ -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>
|
@@ -1,191 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<ScrollView 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:app="http://schemas.android.com/apk/res-auto"
|
||||
android:fillViewport="true">
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/about_layout"
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
|
||||
<com.google.android.material.card.MaterialCardView
|
||||
xmlns:card_view="https://schemas.android.com/apk/res-auto"
|
||||
android:id="@+id/general_info_card"
|
||||
android:background="?android:attr/selectableItemBackground"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="12dp"
|
||||
card_view:cardBackgroundColor="@color/card_stroke_color"
|
||||
card_view:cardCornerRadius="12dp"
|
||||
card_view:cardElevation="5dp"
|
||||
card_view:cardUseCompatPadding="true">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="12dp">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="horizontal"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="match_parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/app_icon"
|
||||
android:layout_width="52dp"
|
||||
android:layout_height="52dp"
|
||||
android:layout_gravity="top"
|
||||
android:paddingTop="@dimen/nav_header_vertical_spacing"
|
||||
android:paddingBottom="4dp"
|
||||
android:contentDescription="@string/kde_connect"
|
||||
tools:src="@drawable/icon" />
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="match_parent">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/app_name"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
tools:text="Application Name"
|
||||
android:textAppearance="?attr/textAppearanceHeadline6" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/app_version"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
tools:text="Version 1.xy.z" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/app_description"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:textIsSelectable="true"
|
||||
android:layout_margin="12dp"
|
||||
tools:text="Application Description" />
|
||||
</LinearLayout>
|
||||
</com.google.android.material.card.MaterialCardView>
|
||||
|
||||
<org.kde.kdeconnect.UserInterface.About.AutoGridLayout
|
||||
android:id="@+id/info_buttons_layout"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:columnCount="3"
|
||||
app:columnWidth="84dp"
|
||||
app:changeColumnCountIfTheyHaveOnlyOneElement="true">
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/report_bug_button"
|
||||
style="@style/AboutButton">
|
||||
|
||||
<TextView
|
||||
android:text="@string/report_bug"
|
||||
app:drawableTopCompat="@drawable/ic_baseline_bug_report_24"
|
||||
style="@style/AboutButton.TextView" />
|
||||
</FrameLayout>
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/donate_button"
|
||||
style="@style/AboutButton">
|
||||
|
||||
<TextView
|
||||
android:text="@string/donate"
|
||||
app:drawableTopCompat="@drawable/ic_baseline_attach_money_24"
|
||||
style="@style/AboutButton.TextView" />
|
||||
</FrameLayout>
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/source_code_button"
|
||||
style="@style/AboutButton">
|
||||
|
||||
<TextView
|
||||
android:text="@string/source_code"
|
||||
app:drawableTopCompat="@drawable/ic_baseline_code_24"
|
||||
style="@style/AboutButton.TextView" />
|
||||
</FrameLayout>
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/licenses_button"
|
||||
style="@style/AboutButton">
|
||||
|
||||
<TextView
|
||||
android:text="@string/licenses"
|
||||
app:drawableTopCompat="@drawable/ic_baseline_gavel_24"
|
||||
style="@style/AboutButton.TextView" />
|
||||
</FrameLayout>
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/about_kde_button"
|
||||
style="@style/AboutButton">
|
||||
|
||||
<TextView
|
||||
android:text="@string/about_kde"
|
||||
app:drawableTopCompat="@drawable/ic_kde_24dp"
|
||||
style="@style/AboutButton.TextView" />
|
||||
</FrameLayout>
|
||||
|
||||
<FrameLayout
|
||||
android:id="@+id/website_button"
|
||||
style="@style/AboutButton">
|
||||
|
||||
<TextView
|
||||
android:text="@string/website"
|
||||
app:drawableTopCompat="@drawable/ic_baseline_web_24"
|
||||
style="@style/AboutButton.TextView" />
|
||||
</FrameLayout>
|
||||
</org.kde.kdeconnect.UserInterface.About.AutoGridLayout>
|
||||
|
||||
<com.google.android.material.card.MaterialCardView
|
||||
xmlns:card_view="https://schemas.android.com/apk/res-auto"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="12dp"
|
||||
card_view:cardBackgroundColor="@color/card_stroke_color"
|
||||
card_view:cardCornerRadius="12dp"
|
||||
card_view:cardElevation="5dp"
|
||||
card_view:cardUseCompatPadding="true">
|
||||
|
||||
<LinearLayout
|
||||
android:orientation="vertical"
|
||||
android:layout_gravity="center_vertical"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="match_parent"
|
||||
android:padding="12dp">
|
||||
|
||||
<TextView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="@string/authors"
|
||||
android:textAppearance="?attr/textAppearanceHeadline6" />
|
||||
|
||||
<org.kde.kdeconnect.UserInterface.About.AdapterLinearLayout
|
||||
android:id="@+id/authors_list"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:padding="0dp" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/authors_footer_text"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_width="wrap_content"
|
||||
android:textSize="14sp"
|
||||
android:layout_marginTop="8dp"
|
||||
android:paddingStart="4dp"
|
||||
android:paddingLeft="4dp"
|
||||
tools:text="Everyone else who has contributed to KDE Connect over the years"
|
||||
tools:ignore="RtlSymmetry" />
|
||||
</LinearLayout>
|
||||
</com.google.android.material.card.MaterialCardView>
|
||||
</LinearLayout>
|
||||
</ScrollView>
|
@@ -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"
|
||||
|
@@ -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"
|
||||
|
@@ -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>
|
||||
|
@@ -3,10 +3,9 @@
|
||||
<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: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"
|
||||
@@ -22,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
|
||||
@@ -41,9 +40,7 @@
|
||||
android:fadingEdge="horizontal"
|
||||
android:singleLine="true"
|
||||
android:text=""
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
tools:maxLength="20"
|
||||
tools:text="@tools:sample/lorem/random"/>
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"/>
|
||||
|
||||
<TextView
|
||||
android:id="@+id/list_item_entry_summary"
|
||||
@@ -55,10 +52,8 @@
|
||||
android:text=""
|
||||
android:textAppearance="?android:attr/textAppearanceSmall"
|
||||
android:textColor="#CC2222"
|
||||
android:visibility="gone"
|
||||
tools:text="Other (optional) info"
|
||||
tools:visibility="visible"/>
|
||||
android:visibility="gone"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
@@ -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>
|
@@ -36,56 +36,18 @@
|
||||
android:singleLine="true"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium" />
|
||||
|
||||
<androidx.constraintlayout.widget.ConstraintLayout
|
||||
android:layout_width="match_parent"
|
||||
<ImageButton
|
||||
android:id="@+id/play_button"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="75dp"
|
||||
android:layout_gravity="center"
|
||||
android:orientation="horizontal">
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/loop_button"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="center"
|
||||
android:adjustViewBounds="false"
|
||||
android:baselineAlignBottom="true"
|
||||
android:clickable="false"
|
||||
android:contentDescription="@string/mpris_loop"
|
||||
android:src="@drawable/ic_loop_none_black"
|
||||
android:theme="@style/DisableableButton"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent"
|
||||
app:layout_constraintWidth_percent="0.20" />
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/play_button"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="center"
|
||||
android:adjustViewBounds="false"
|
||||
android:baselineAlignBottom="true"
|
||||
android:clickable="false"
|
||||
android:contentDescription="@string/mpris_play"
|
||||
android:src="@drawable/ic_play_black"
|
||||
android:theme="@style/DisableableButton"
|
||||
app:layout_constraintEnd_toStartOf="@id/shuffle_button"
|
||||
app:layout_constraintStart_toEndOf="@id/loop_button"
|
||||
app:layout_constraintTop_toTopOf="parent" />
|
||||
|
||||
<ImageButton
|
||||
android:id="@+id/shuffle_button"
|
||||
android:layout_width="0dp"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_gravity="center"
|
||||
android:adjustViewBounds="false"
|
||||
android:baselineAlignBottom="true"
|
||||
android:clickable="false"
|
||||
android:contentDescription="@string/mpris_shuffle"
|
||||
android:src="@drawable/ic_shuffle_off_black"
|
||||
android:theme="@style/DisableableButton"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintWidth_percent="0.20" />
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
android:layout_weight="0"
|
||||
android:adjustViewBounds="false"
|
||||
android:baselineAlignBottom="true"
|
||||
android:clickable="false"
|
||||
android:contentDescription="@string/mpris_play"
|
||||
app:srcCompat="@drawable/ic_play_black"
|
||||
android:theme="@style/DisableableButton" />
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
@@ -99,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
|
||||
@@ -108,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
|
||||
@@ -117,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" />
|
||||
|
||||
|
||||
@@ -127,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
|
||||
@@ -136,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>
|
||||
|
||||
@@ -193,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" />
|
||||
|
||||
|
||||
|
@@ -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>
|
@@ -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>
|
||||
|
@@ -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>
|
||||
|
@@ -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"
|
||||
|
@@ -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>
|
||||
|
@@ -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"/>
|
@@ -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>
|
@@ -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>
|
@@ -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>
|
||||
|
@@ -1,37 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:id="@+id/error_message_container"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:gravity="center"
|
||||
android:orientation="horizontal"
|
||||
android:padding="16dp"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible">
|
||||
|
||||
<androidx.appcompat.widget.AppCompatImageView
|
||||
android:id="@+id/error_message_icon"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:importantForAccessibility="no"
|
||||
android:paddingEnd="8dip"
|
||||
android:paddingLeft="0dip"
|
||||
android:paddingRight="8dip"
|
||||
android:paddingStart="0dip"
|
||||
android:src="@drawable/ic_error_outline_48dp"
|
||||
app:tint="?attr/colorHighContrast"
|
||||
tools:ignore="UnusedAttribute" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/not_reachable_message"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center_vertical"
|
||||
android:text="@string/unreachable_description"
|
||||
android:textAppearance="?android:attr/textAppearanceMedium"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible" />
|
||||
</LinearLayout>
|
@@ -1,77 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:id="@+id/pairing_buttons"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:orientation="vertical"
|
||||
android:padding="@dimen/activity_vertical_margin"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible">
|
||||
|
||||
<ProgressBar
|
||||
android:id="@+id/pair_progress"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:visibility="gone" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/pair_message"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginBottom="8dip"
|
||||
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"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="@drawable/button_round"
|
||||
android:text="@string/request_pairing"
|
||||
android:textColor="@android:color/white" />
|
||||
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/pair_request_buttons"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_gravity="center"
|
||||
android:visibility="gone">
|
||||
|
||||
<Button
|
||||
android:id="@+id/accept_button"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="4dip"
|
||||
android:layout_weight="1"
|
||||
android:background="@drawable/button_round"
|
||||
android:text="@string/pairing_accept"
|
||||
android:textColor="@android:color/white" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/reject_button"
|
||||
android:layout_width="fill_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_margin="4dip"
|
||||
android:layout_weight="1"
|
||||
android:background="@drawable/button_round"
|
||||
android:text="@string/pairing_reject"
|
||||
android:textColor="@android:color/white" />
|
||||
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
@@ -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"
|
||||
|
@@ -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>
|
@@ -1,18 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<menu xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:kdeconnect="http://schemas.android.com/apk/res-auto">
|
||||
|
||||
<item
|
||||
android:id="@+id/menu_rise_up"
|
||||
android:icon="@drawable/ic_arrow_upward_black_24dp"
|
||||
android:title="@string/rise_up"
|
||||
android:iconTint="@color/text_color"
|
||||
kdeconnect:showAsAction="ifRoom" />
|
||||
|
||||
<item
|
||||
android:id="@+id/menu_rise_down"
|
||||
android:icon="@drawable/ic_arrow_downward_black_24dp"
|
||||
android:title="@string/rise_down"
|
||||
android:iconTint="@color/text_color"
|
||||
kdeconnect:showAsAction="ifRoom" />
|
||||
</menu>
|
@@ -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>
|
||||
|
@@ -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>
|
||||
|
@@ -1,393 +0,0 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<resources>
|
||||
<string name="kde_connect">KDE Connect</string>
|
||||
<string name="manifest_label_share">Cihaza göndərin</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ərildi</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="view_status_title">Vəziyyət</string>
|
||||
<string name="battery_status_format">Batareya: %d%%</string>
|
||||
<string name="battery_status_low_format">Batareya: %d%% Zəif batareya</string>
|
||||
<string name="battery_status_charging_format">Batareya: %d%% doldurulur</string>
|
||||
<string name="battery_status_unknown">Batareya haqqında məlumat əlçatan deyil</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_loop">Dairəvi</string>
|
||||
<string name="mpris_shuffle">Qarışıq</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>
|
||||
<string name="website">Veb sayt</string>
|
||||
<string name="about">Haqqında</string>
|
||||
<string name="authors">Müəlliflər</string>
|
||||
<string name="thanks_to">Minəttdarlıq</string>
|
||||
<string name="easter_egg">Pasxa yumurtası</string>
|
||||
<string name="email_contributor">Əməkdaşın e-poçt ünvanı\n%s</string>
|
||||
<string name="visit_contributors_homepage">Əməkdaşın ev səhifəsinə baxın\n%s</string>
|
||||
<string name="version">Versiya %s</string>
|
||||
<string name="about_kde">KDE haqqında</string>
|
||||
<string name="kde_be_free">KDE - Sərbəst olun!</string>
|
||||
<string name="kde">KDE</string>
|
||||
<string name="konqi">Konqi</string>
|
||||
<string name="rise_up">Qalxmaq</string>
|
||||
<string name="rise_down">Aşağı enmək</string>
|
||||
<string name="app_description">Cihazlarınızı (məs., telefonunuz və ya kompyuteriniz) arasında əlaqə yaratmaq üçün çox platformalı tətbiq.</string>
|
||||
<string name="about_kde_about"><h1>Haqqında</h1> <p>KDE, özlərini <a href=https://www.gnu.org/philosophy/free-sw.html>Azad Proqram Təminatı</a> tərtibatına həsr etmiş, proqram təminatı üzrə mühəndislərdən, rəssamlardan, yazıçılardan, tərcüməçilərdən və yaradıcılardan ibarət dünya miqyasında bir cəmiyyətdir. KDE, Plasma İş masası mühiti, yüzlərlə tətbiqlər və onları dəstəkləyən proqram təminatı kitabxanaları nəşr edir. </p> <p>KDE kooperativ bir müəssisədir: heç bir müəssisə onun işinə və məhsullarına nəzarət etmir. Bunun əvəzinə, dünyanın ən yaxşı Proqram Təminatını yaratmaq məsədimizə çatmaq üçün birlikdə çalışırıq. <a href=https://community.kde.org/Get_Involved>KDE\'yə qoşulmaq və işimizə töhvə vermək istəyən, </a> siz də daxil olmaqla</p> hər kəsi salamlayırıq. <a href=https://www.kde.org/>https://www.kde.org/</a> saytına daxil olun ki, KDE cəmiyyəti və bizim proqram təminatı və məhsullarımız haqqında daha çox məlumat əldə edə biləsiniz.</string>
|
||||
<string name="about_kde_report_bugs_or_wishes"><h1>Səhvləri və Arzularınızı bildirin</h1> <p>Proqram təminatı hər zaman təkmilləşdirilə bilər və KDE komandası buna hazırdır. Lakin siz - istifadəçi - , nə isə gözlənildiyi kimi düzgün işləmədikdə və ya bundan daha yaxşısını yaratmaq barədə təklifiniz olduqda bizə bildirməlisiniz.</p> <p>KDE\'nin xətaları izləmə sistemi var. <a href=https://bugs.kde.org/>https://bugs.kde.org/</a> ziyarət edin və ya xətalar haqında hesabat vermək üçün ekrandakı \"Xətaları bildirin\" düyməsindən istifadə edin.</p> Əgər təkmilləşdirmə üçün bir təklifiniz varsa, bu istəyinizi bildirmək üçün xətaları izləmə sistemində qeyd edə bilərsiniz. \"İstəklər siyahısı\" ciddilik səviyyəsindən istifadə etdiyinizə əmin olun.</string>
|
||||
<string name="about_kde_join_kde"><h1>KDE\'yə qoşulun</h1> <p>KDE komandasının üzvü olmaq üçün proqram tərtibatçısı olmanız vacib deyil. Sİz proqram interfeysini tərcümə etmək üçün milli komandanıza da qoşula bilərsiniz. Siz, həmçinin qrafiklər, mövzular, səslər və təkmilləşdirilmiş sənədləşmələr təqdim edə bilərsiniz. Siz, </p> <p>buradan - <a href=https://community.kde.org/Get_Involved>https://community.kde.org/Get_Involved</a> - üzərində çalışmağa qərar verdiyiniz bəzi layihələr haqqında məlumat ala bilərsiniz.</p> Daha çox məlumat əldə etmək istəsəniz, lazım lazım olan nə varsa tapa biləcəyiniz bu sayta daxil olun: <a href=https://techbase.kde.org/>https://techbase.kde.org/</a>.</string>
|
||||
<string name="about_kde_support_kde"><h1>KDE\'yə dəstək</h1> <p>KDE tətbiqləri pulsuzdur və bu hər zaman belə olacaqdır, lakin onların yaradılması pulsuz deyil.</p> <p>KDE Cəmiyyətini dəstəkləmək üçün Almaniyada qanuni olaraq yaradılmış, qeyri-kommersiya təşkilatı olan KDE e.V formalaşdırlıb. KDE e.V., KDE Cəmiyyətinə maddi və hüquqi yardım göstərir. Da çox məlumat üçün: <a href=https://ev.kde.org/>https://ev.kde.org/</a> KDE e.V. baxın</p> <p>KDE ona göstərilən malliyə da daxil olmaqla bir çox yardımlardan faydalanır. Vəsaitlər, üzvlərə və başqalarına töhfə verərkən çəkdikləri xərcləri ödəmək üçün xərclənir. Əlavə vəsait, hüquqi dəstək üçün və konfrans və görüşlərin təşkili üçün istifadə olunur.</p> <p>Biz sizi, aşağıda göstərilən yollardan istifadə etməklə bizə maddi dəstəyinizi göztərməyə dəvət edirik: <a href=https://www.kde.org/community/donations/>https://www.kde.org/community/donations/</a>.</p> Göstərdiyiniz və göstərəcəyiniz hər hansı dəstək üçün sizə təşəkkür edirik.</string>
|
||||
<string name="maintainer_and_developer">Müşayətçi və tərtibatçı</string>
|
||||
<string name="developer">Tərtibatçı</string>
|
||||
<string name="apple_support">macOS dəstəyi. İOS dəstəklənməsi üzərində işləyirik</string>
|
||||
<string name="bug_fixes_and_general_improvements">Xəta sazlamaları və əsas yaxşılaşdırmalar</string>
|
||||
<string name="samoilenko_yuri_task">SFTP tətbiqi, xəta sazlamaları və əsas yaxşılaşdırmalar</string>
|
||||
<string name="aniket_kumar_task">SMS əlavəsi yaxşılaşdırılması</string>
|
||||
<string name="alex_fiestas_task">Əlaqələr əlavəsi yaxşılaşdırılması</string>
|
||||
<string name="maxim_leshchenko_task">İİ yaxşılaşdırmaları və bu haqda səhifə</string>
|
||||
<string name="holger_kaelberer_task">Uzaq klaviatura əlavəsi və xəta sazlamaları</string>
|
||||
<string name="saikrishna_arcot_task">Uzaq daxiletmə əlavəsində klaviaturanın istifadəsini dəstəklənməsi, xəta sazlamaları və əsas yaxşılaşdırmalar</string>
|
||||
<string name="everyone_else">İllər boyu KDE Connect\'ə töhfə verən hər kəs</string>
|
||||
</resources>
|
@@ -1,7 +1,6 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<resources>
|
||||
<string name="kde_connect">KDE Connect</string>
|
||||
<string name="manifest_label_share">Envia a un dispositiu</string>
|
||||
<string name="foreground_notification_no_devices">No està connectat a cap dispositiu</string>
|
||||
<string name="foreground_notification_devices">Connectat a: %s</string>
|
||||
<string name="foreground_notification_send_clipboard">Envia al porta-retalls</string>
|
||||
@@ -9,17 +8,15 @@
|
||||
<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>
|
||||
<string name="pref_plugin_clipboard_desc">Comparteix el contingut del porta-retalls</string>
|
||||
<string name="pref_plugin_clipboard_sent">S\'ha enviat al porta-retalls</string>
|
||||
<string name="pref_plugin_mousepad">Entrada remota</string>
|
||||
<string name="pref_plugin_mousepad_desc">Usa el vostre telèfon o tauleta com un ratolí tàctil i un teclat</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>
|
||||
@@ -33,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>
|
||||
@@ -77,31 +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 %1$s al dispositiu %2$s</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="view_status_title">Estat</string>
|
||||
<string name="battery_status_format">Bateria: %d%%</string>
|
||||
<string name="battery_status_low_format">Bateria: %d%% bateria baixa</string>
|
||||
<string name="battery_status_charging_format">Bateria: %d%% està carregant</string>
|
||||
<string name="battery_status_unknown">La informació de la bateria no està disponible</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>
|
||||
@@ -112,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">
|
||||
@@ -152,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>
|
||||
@@ -166,8 +143,6 @@
|
||||
<string name="mpris_rew">Rebobina</string>
|
||||
<string name="mpris_ff">Avanç ràpid</string>
|
||||
<string name="mpris_next">Següent</string>
|
||||
<string name="mpris_loop">Repetició</string>
|
||||
<string name="mpris_shuffle">Mescla</string>
|
||||
<string name="mpris_volume">Volum</string>
|
||||
<string name="mpris_time_settings_title">Botons per a avançar o rebobinar</string>
|
||||
<string name="mpris_time_settings_summary">Ajusta el temps per a avançar o rebobinar quan es toca</string>
|
||||
@@ -180,9 +155,9 @@
|
||||
</string-array>
|
||||
<string name="mpris_notification_settings_title">Mostra les notificacions dels reproductors</string>
|
||||
<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="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>
|
||||
@@ -191,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>
|
||||
@@ -199,7 +174,7 @@
|
||||
<string name="share_destination_folder_preference">Directori de destinació</string>
|
||||
<string name="share">Comparteix</string>
|
||||
<string name="share_received_file">Comparteix «%s»</string>
|
||||
<string name="title_activity_notification_filter">Filtre de notificacions</string>
|
||||
<string name="title_activity_notification_filter">Filtre per a les notificacions</string>
|
||||
<string name="filter_apps_info">Les notificacions se sincronitzaran per a les aplicacions seleccionades.</string>
|
||||
<string name="sftp_sdcard_num">Targeta SD %d</string>
|
||||
<string name="sftp_sdcard">Targeta SD</string>
|
||||
@@ -224,7 +199,7 @@
|
||||
<string name="sftp_action_mode_menu_delete">Suprimeix</string>
|
||||
<string name="sftp_no_sdcard_detected">No s\'ha detectat cap targeta SD</string>
|
||||
<string name="sftp_no_storage_locations_configured">No s\'ha configurat cap ubicació d\'emmagatzematge</string>
|
||||
<string name="sftp_saf_permission_explanation">Per a accedir remotament als fitxers cal configurar les ubicacions d\'emmagatzematge</string>
|
||||
<string name="sftp_saf_permission_explanation">Per a accedir remotament als fitxer cal configurar les ubicacions d\'emmagatzematge</string>
|
||||
<string name="no_players_connected">No s\'ha trobat cap reproductor</string>
|
||||
<string name="send_files">Envia fitxers</string>
|
||||
<string name="pairing_title">Dispositius del KDE Connect</string>
|
||||
@@ -251,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>
|
||||
@@ -276,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>
|
||||
@@ -294,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>
|
||||
@@ -316,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>
|
||||
@@ -356,38 +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>
|
||||
<string name="website">Lloc web</string>
|
||||
<string name="about">Quant al</string>
|
||||
<string name="authors">Autors</string>
|
||||
<string name="thanks_to">Gràcies a</string>
|
||||
<string name="easter_egg">Ou de Pasqua</string>
|
||||
<string name="email_contributor">Correu electrònic del col·laborador\n%s</string>
|
||||
<string name="visit_contributors_homepage">Visiteu la pàgina d\'inici del col·laborador\n%s</string>
|
||||
<string name="version">Versió %s</string>
|
||||
<string name="about_kde">Quant al KDE</string>
|
||||
<string name="kde_be_free">KDE - Sigues lliure!</string>
|
||||
<string name="kde">KDE</string>
|
||||
<string name="konqi">Konqi</string>
|
||||
<string name="rise_up">Cap amunt</string>
|
||||
<string name="rise_down">Cap avall</string>
|
||||
<string name="app_description">Aplicació multiplataforma que permet que els dispositius es comuniquin (p. ex., el telèfon i l\'ordinador)</string>
|
||||
<string name="about_kde_about"><h1>Quant al</h1> <p>El KDE és una comunitat mundial d\'enginyers, artistes, escriptors, traductors i creadors de programari compromesos amb el desenvolupament de <a href=https://www.gnu.org/philosophy/free-sw.html>programari lliure</a>. El KDE produeix l\'entorn d\'escriptori Plasma, centenars d\'aplicacions i moltes biblioteques de programari que els donen suport.</p> <p>El KDE és una empresa en cooperativa: cap entitat controla la seva direcció o els productes. En el seu lloc, treballem junts per a aconseguir l\'objectiu comú de construir el millor programari lliure del món. Tothom hi és benvingut a <a href=https://community.kde.org/Get_Involved>unir-se i contribuir</a> al KDE, inclosos vosaltres.</p> Visiteu <a href=https://www.kde.org/ca/>https://www.kde.org/ca/</a> per a obtenir més informació sobre la comunitat KDE i el programari que produïm.</string>
|
||||
<string name="about_kde_report_bugs_or_wishes"><h1>Informeu dels errors o desitjos</h1> <p>El programari sempre es pot millorar, i l\'equip del KDE està a punt per a fer-ho. No obstant això, l\'usuari, ha de dir-nos quan alguna cosa no funciona com s\'esperava o si podria fer-se millor.</p> <p>El KDE té un sistema de seguiment d\'errors. Per a informar-ne d\'un, visiteu <a href=https://bugs.kde.org/>https://bugs.kde.org/</a> o useu el botó \"Informa d\'un error\" des de la pantalla Quant al.</p> Si teniu un suggeriment de millora, podeu usar el sistema de seguiment d\'errors per a enregistrar el vostre desig. Assegureu-vos d\'usar la severitat anomenada \"Llista de desitjos\" (Wishlist).</string>
|
||||
<string name="about_kde_join_kde"><h1>Uniu-vos al KDE</h1> <p>No cal ser un desenvolupador de programari per a ser membre de l\'equip KDE. Podeu unir-vos als equips nacionals que tradueixen la interfície dels programes. Podeu proporcionar gràfics, temes, sons i documentació millorada. Vosaltres decidiu!</p> <p>Visiteu <a href=https://community.kde.org/Get_Involved>https://community.kde.org/Get_Involved</a> per a obtenir informació sobre alguns projectes en què podeu participar-hi.</p> Si us cal més informació o documentació, una visita a <a href=https://techbase.kde.org/>https://techbase.kde.org/</a> us proporcionarà el que necessiteu.</string>
|
||||
<string name="about_kde_support_kde"><h1>Contribució al KDE</h1> <p>El programari KDE està i sempre estarà disponible de forma gratuïta, però la creació no està lliure de càrrecs.</p> <p>Per a donar suport al desenvolupament, la comunitat KDE ha format la KDE e.V., una organització sense ànim de lucre legalment fundada a Alemanya. La KDE e.V. representa a la comunitat KDE en els assumptes legals i financers. Per a obtenir informació sobre la KDE e.V., vegeu <a href=https://ev.kde.org/>https://ev.kde.org/</a>.El KDE es beneficia de molts tipus de contribucions, inclosa la financera. Usem els fons per a reemborsar als membres i altra gent per les despeses que incorren col·laborant-hi. S\'usen més fons per al suport legal i l\'organització de les conferències i reunions.</p> <p>Us animem a ajudar al KDE mitjançant donacions monetàries, usant un dels mitjans descrits a <a href=https://kde.org/ca/community/donations/>https://kde.org/ca/community/donations/</a>.</p>. Moltes gràcies per endavant per la vostra ajuda.</string>
|
||||
<string name="maintainer_and_developer">Mantenidor i desenvolupador</string>
|
||||
<string name="developer">Desenvolupador</string>
|
||||
<string name="apple_support">Suport de macOS. Treballant en el suport d\'iOS</string>
|
||||
<string name="bug_fixes_and_general_improvements">Esmenes d\'errors i millores generals</string>
|
||||
<string name="samoilenko_yuri_task">Implementació d\'SFTP, esmenes d\'errors i millores generals</string>
|
||||
<string name="aniket_kumar_task">Millores en el connector SMS</string>
|
||||
<string name="alex_fiestas_task">Millores en el connector de contactes</string>
|
||||
<string name="maxim_leshchenko_task">Millores en la IU i ha creat aquesta pàgina</string>
|
||||
<string name="holger_kaelberer_task">Connector de teclat remot i esmenes d\'errors</string>
|
||||
<string name="saikrishna_arcot_task">Suport per a usar el teclat en el connector d\'entrada remota, esmenes d\'errors i millores generals</string>
|
||||
<string name="everyone_else">Tothom qui ha contribuït al KDE Connect al llarg dels anys</string>
|
||||
</resources>
|
||||
|
@@ -5,11 +5,9 @@
|
||||
<string name="foreground_notification_devices">Připojen k: %s</string>
|
||||
<string name="foreground_notification_send_clipboard">Poslat schránku</string>
|
||||
<string name="pref_plugin_telephony">Upozornění telefonie</string>
|
||||
<string name="pref_plugin_telephony_desc">Posílat oznámení příchozích hovorů</string>
|
||||
<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>
|
||||
@@ -29,10 +27,10 @@
|
||||
<string name="pref_plugin_contacts_desc">Povolit synchronizaci kontaktů zařízení</string>
|
||||
<string name="pref_plugin_ping">Ping</string>
|
||||
<string name="pref_plugin_ping_desc">Posílat a přijímat ping</string>
|
||||
<string name="pref_plugin_notifications">Synchronizace oznámení</string>
|
||||
<string name="pref_plugin_notifications_desc">Zpřístupněte si oznámení z jiných zařízení</string>
|
||||
<string name="pref_plugin_receive_notifications">Přijímat oznámení</string>
|
||||
<string name="pref_plugin_receive_notifications_desc">Přijímat oznámení z jiného zařízení a zobrazovat je v Androidu</string>
|
||||
<string name="pref_plugin_notifications">Synchronizace upozornění</string>
|
||||
<string name="pref_plugin_notifications_desc">Zpřístupněte si upozornění z jiných zařízení</string>
|
||||
<string name="pref_plugin_receive_notifications">Přijímat upozornění</string>
|
||||
<string name="pref_plugin_receive_notifications_desc">Přijímat upozornění z jiného zařízení a zobrazovat je v Androidu</string>
|
||||
<string name="pref_plugin_sharereceiver">Sdílet a přijmout</string>
|
||||
<string name="pref_plugin_sharereceiver_desc">Sdílet soubory a odkazy mezi zařízeními</string>
|
||||
<string name="device_list_empty">Žádná zařízení</string>
|
||||
@@ -40,8 +38,8 @@
|
||||
<string name="sad_ok">OK :(</string>
|
||||
<string name="cancel">Zrušit</string>
|
||||
<string name="open_settings">Otevřít nastavení</string>
|
||||
<string name="no_permissions">Pro zpřístupnění oznámení potřebujete oprávnění</string>
|
||||
<string name="no_permission_mprisreceiver">Abyste byli schopni ovládat vaše přehrávače médií, musíte udělit přístup k oznámením</string>
|
||||
<string name="no_permissions">Pro zpřístupnění upozornění potřebujete oprávnění</string>
|
||||
<string name="no_permission_mprisreceiver">Abyste byli schopni ovládat vaše přehrávače médií, musíte udělit přístup k upozorněním</string>
|
||||
<string name="no_permissions_remotekeyboard">Pro zachytávání stisků kláves je potřeba aktivovat vzdálenou klávesnici KDE Connect</string>
|
||||
<string name="send_ping">Poslat ping</string>
|
||||
<string name="open_mpris_controls">Ovládání multimédií</string>
|
||||
@@ -76,26 +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 %1$s na zařízení %2$s</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="view_status_title">Stav</string>
|
||||
<string name="battery_status_format">Baterie: %d%%</string>
|
||||
<string name="battery_status_low_format">Baterie: %d%% Téměř vybitá baterie</string>
|
||||
<string name="battery_status_charging_format">Battery: %d%% nabíjí se</string>
|
||||
<string name="battery_status_unknown">Informace o baterii jsou nedostupné</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>
|
||||
@@ -111,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">
|
||||
@@ -181,8 +159,6 @@
|
||||
<string name="mpris_rew">Přetočit zpět</string>
|
||||
<string name="mpris_ff">Rychle vpřed</string>
|
||||
<string name="mpris_next">Následující</string>
|
||||
<string name="mpris_loop">Smyčka</string>
|
||||
<string name="mpris_shuffle">Zamíchat</string>
|
||||
<string name="mpris_volume">Hlasitost</string>
|
||||
<string name="mpris_time_settings_title">Tlačítka vpřed/přetočit</string>
|
||||
<string name="mpris_time_settings_summary">Upravit čas pro rychlý posun/přetočení při stisku</string>
|
||||
@@ -193,7 +169,7 @@
|
||||
<item>1 minuta</item>
|
||||
<item>2 minuty</item>
|
||||
</string-array>
|
||||
<string name="mpris_notification_settings_title">Obrazit oznámení pro ovládání médií</string>
|
||||
<string name="mpris_notification_settings_title">Obrazit upozornění pro ovládání médií</string>
|
||||
<string name="mpris_notification_settings_summary">Umožnit ovládání přehrávače médií bez otevření KDE Connect</string>
|
||||
<string name="share_to">Sdílet s...</string>
|
||||
<string name="protocol_version_newer">Toto zařízení používá novější verzi protokolu</string>
|
||||
@@ -206,7 +182,7 @@
|
||||
<string name="custom_device_list_help">Pokud vaše zařízení není automaticky detekováno, můžete přidat jeho adresu IP nebo hostname kliknutím na tlačítko pro plovoucí činnosti</string>
|
||||
<string name="custom_device_fab_hint">Přidat zařízení</string>
|
||||
<string name="undo">Zpět</string>
|
||||
<string name="share_notification_preference">Hlasitá oznámení</string>
|
||||
<string name="share_notification_preference">Hlasitá upozornění</string>
|
||||
<string name="share_notification_preference_summary">Vibrovat a přehrát melodii při přijímání souboru</string>
|
||||
<string name="share_destination_customize">Přizpůsobte si cílový adresář</string>
|
||||
<string name="share_destination_customize_summary_disabled">Přijaté soubory se objeví v Downloads</string>
|
||||
@@ -214,8 +190,8 @@
|
||||
<string name="share_destination_folder_preference">Cílový adresář</string>
|
||||
<string name="share">Sdílet</string>
|
||||
<string name="share_received_file">Sdílet \"%s\"</string>
|
||||
<string name="title_activity_notification_filter">Filtr oznámení</string>
|
||||
<string name="filter_apps_info">Oznámení vybraných aplikací bude synchronizováno.</string>
|
||||
<string name="title_activity_notification_filter">Filtr upozornění</string>
|
||||
<string name="filter_apps_info">Upozorňování mezi vybranými aplikacemi bude synchronizováno.</string>
|
||||
<string name="sftp_sdcard_num">SD karta %d</string>
|
||||
<string name="sftp_sdcard">SD karta</string>
|
||||
<string name="sftp_readonly">(pouze ke čtení)</string>
|
||||
@@ -266,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>
|
||||
@@ -286,12 +262,11 @@
|
||||
<string name="add_command_description">V pracovním prostředí můžete přidat příkazy</string>
|
||||
<string name="pref_plugin_mprisreceiver">Ovládání přehrávače médií</string>
|
||||
<string name="pref_plugin_mprisreceiver_desc">Ovládejte přehrávače médií na vašem telefonu z jiného zařízení</string>
|
||||
<string name="notification_channel_default">Ostatní oznámení</string>
|
||||
<string name="notification_channel_default">Ostatní upozornění</string>
|
||||
<string name="notification_channel_persistent">Stálý ukazatel</string>
|
||||
<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>
|
||||
@@ -312,14 +287,14 @@
|
||||
<string name="settings_more_settings_title">Více nastavení</string>
|
||||
<string name="settings_more_settings_text">Nastavení \"pro každé zařízení\" lze najít v \'Nastavení modulu\' v zařízení.</string>
|
||||
<string name="setting_persistent_notification">Ukázat stálé upozornění</string>
|
||||
<string name="setting_persistent_notification_oreo">Stálé upozornění</string>
|
||||
<string name="setting_persistent_notification_description">Ťuknutím povolíte/zakážete v nastavení oznámení</string>
|
||||
<string name="setting_persistent_notification_oreo">Perzistentní upozornění</string>
|
||||
<string name="setting_persistent_notification_description">Ťuknutím povolíte/zakážete v nastavení upozornění</string>
|
||||
<string name="extra_options">Další možnosti</string>
|
||||
<string name="privacy_options">Možnosti soukromí</string>
|
||||
<string name="set_privacy_options">Nastavte své možnosti soukromí</string>
|
||||
<string name="block_contents">Blokovat obsah oznámení</string>
|
||||
<string name="block_images">Blokovat obrázky v oznámení</string>
|
||||
<string name="notification_channel_receivenotification">Oznámení z ostatních zařízení</string>
|
||||
<string name="block_contents">Blokovat obsah upozornění</string>
|
||||
<string name="block_images">Blokovat obrázky z upozornění</string>
|
||||
<string name="notification_channel_receivenotification">Upozornění z ostatních zařízení</string>
|
||||
<string name="take_picture">Spustit fotoaparát</string>
|
||||
<string name="plugin_photo_desc">Spusťte aplikaci fotoaparátu pro snadné zachytávání s přenos obrázků</string>
|
||||
<string name="no_app_for_opening">Pro otevření tohoto souboru nebyla nalezena vhodná aplikace</string>
|
||||
@@ -346,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>
|
||||
@@ -371,36 +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>
|
||||
<string name="website">Webová stránka</string>
|
||||
<string name="about">O aplikaci</string>
|
||||
<string name="authors">Autoři</string>
|
||||
<string name="thanks_to">Poděkování</string>
|
||||
<string name="easter_egg">Skrytý vtípek</string>
|
||||
<string name="email_contributor">Poslat e-mail autorovi\n%s</string>
|
||||
<string name="visit_contributors_homepage">Navštívit domovskou stránku autora\n%s</string>
|
||||
<string name="version">Verze %s</string>
|
||||
<string name="about_kde">O prostředí KDE</string>
|
||||
<string name="kde_be_free">KDE - Buďte svobodní!</string>
|
||||
<string name="kde">KDE</string>
|
||||
<string name="konqi">Konqi</string>
|
||||
<string name="app_description">Multiplatformní aplikace, která umožňuje vašim zařízením komunikaci (např. váš telefon a počítač)</string>
|
||||
<string name="about_kde_about"><h1>O KDE</h1> <p>KDE je celosvětová komunita softwarových inženýrů, výtvarníků, překladatelů a jiných přispěvatelů, kteří se odevzdali vývoji <a href=https://www.gnu.org/philosophy/free-sw.html>Svobodného Softwaru</a>. KDE vytvořilo pracovní prostředí Plasma, stovky aplikací a spousty knihoven, jenž je podporují. </p> <p>KDE je společné úsilí, kde žádná společnost neřídí jeho směr nebo produkty. Namísto toho spolupracujeme na společném cíli jímž je vytvoření nejlepšího Free Softwaru. Každý je vítán aby <a href=https://community.kde.org/Get_Involved>se zapojil a přispíval</a> do KDE, včetně vás. Více informací o komunitě KDE a softwaru, na kterém pracujeme najdete na </a>$3<a href=https://www.kde.org/>https://www.kde.org/</a>.</string>
|
||||
<string name="about_kde_report_bugs_or_wishes"><h1>Hlaste chyby a návrhy</h1> <p>Software je možno neustále vylepšovat a tým KDE je k tomu připraven. Avšak vy, uživatel, nám musíte sdělit, když něco nefunguje tak, jak by se očekávalo nebo by mělo být uděláno lépe.</p> <p>KDE má systém sledování chyb. Chcete-li tedy nahlásit chybu, navštivte <a href=https://bugs.kde.org/>https://bugs.kde.org/</a> nebo použijte dialog \"Nahlásit chybu...\".</p> Máte-li náměty na vylepšení, budeme rádi, pošlete-li nám svoje přání. Ujistěte se však, že jste označili chybové hlášení jako \"Přání\".</string>
|
||||
<string name="about_kde_join_kde"><h1>Přidejte se ke KDE</h1> <p>K tomu, abyste se stali členem týmu KDE, není zapotřebí být vývojářem softwaru. Můžete se připojit k národním týmům, které překládají programy. Můžete vytvářet grafiku, motivy, zvuky a lepší dokumentaci. Vy se rozhodněte!</p> <p>Navštivte <a href=https://community.kde.org/Get_Involved>https://community.kde.org/Get_Involved</a> kde naleznete informace o některých projektech, kterých se můžete zúčastnit.</p> Potřebujete-li více informací nebo dokumentace, pak návštěva na <a href=https://techbase.kde.org/>https://techbase.kde.org/</a> vám poskytne, co potřebujete.</p>České stránky o KDE se nacházejí na adrese <a href=\"http://czechia.kde.org/\">http://czechia.kde.org/</a> . Přidejte se k nám!</string>
|
||||
<string name="about_kde_support_kde"><h1>Podpořte KDE</h1> <p>KDE je a vždy bude dostupné zdarma, ale jeho tvorba zdarma není.</p> <p>Proto jsme vytvořili Asociaci KDE, neziskovou organizaci založenou v Tuebingenu, Německo. Asociace KDE reprezentuje komunitu KDE v právních a finančních záležitostech. Podívejte se na <a href=https://ev.kde.org/>https://ev.kde.org/</a> informace o KDE e.V.</p> <p>KDE staví na různých způsobech pomoci, včetně finanční. Peníze používáme na proplacení výdajů našich členů a dalších př přispívání. Další finance jsou použity na právnickou podporu, a organizaci konferencí a setkání.</p> <p>Chtěli bychom vás poprosit o podporu v naší snaze pomocí finančního daru některým ze způsobů popsaných na <a href=https://www.kde.org/community/donations/>https://www.kde.org/community/donations/</a>.</p> Předem děkujeme za váš příspěvek a podporu.</string>
|
||||
<string name="maintainer_and_developer">Správce a vývojář</string>
|
||||
<string name="developer">Vývojář</string>
|
||||
<string name="apple_support">Podpora macOS. Práce na podpoře iOS</string>
|
||||
<string name="bug_fixes_and_general_improvements">Opravy chyb a vylepšení</string>
|
||||
<string name="samoilenko_yuri_task">Implementace SFTP, opravy chyb a obecná vylepšení</string>
|
||||
<string name="aniket_kumar_task">Vylepšení modulu SMS</string>
|
||||
<string name="alex_fiestas_task">Vylepšení modulu kontaktů</string>
|
||||
<string name="maxim_leshchenko_task">Vylepšení prostředí a tato stránka o aplikaci</string>
|
||||
<string name="holger_kaelberer_task">Vzdálené modul klávesnice a opravy chyb</string>
|
||||
<string name="saikrishna_arcot_task">Podpora použití klávesnice na vzdáleném vstupním modulu, opravy chyb a obecná zlepšení</string>
|
||||
<string name="everyone_else">Každý kdo přispěl do KDE Connect během let</string>
|
||||
</resources>
|
||||
|
@@ -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">
|
||||
|
@@ -3,18 +3,14 @@
|
||||
<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>
|
||||
<string name="pref_plugin_battery_desc">Den Akkustand periodisch berichten</string>
|
||||
<string name="pref_plugin_connectivity_report">Verbindungsbericht</string>
|
||||
<string name="pref_plugin_connectivity_report_desc">Signalstärke und Status des Netzwerks anzeigen</string>
|
||||
<string name="pref_plugin_sftp">Dateisystem-Freigabe</string>
|
||||
<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>
|
||||
@@ -37,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>
|
||||
@@ -76,15 +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_disabled_toast">Das Senden von Tastatureingaben ist deaktiviert - aktivieren Sie es in den Einstellungen</string>
|
||||
<string name="sendkeystrokes_wrong_data">Ungültiger MIME-Typ - er muss „text/x-keystrokes“ sein</string>
|
||||
<string name="sendkeystrokes_pref_category_summary">Mit diesem Modul können andere Anwendungen Textsegmente als Tastendrücke teilen, die an den verbundenen Rechner gesendet werden</string>
|
||||
<string name="sendkeystrokes_pref_category_title">Tastendrücke senden</string>
|
||||
<string name="sendkeystrokes_pref_enabled">Senden von Tastendrücken aktivieren</string>
|
||||
<string name="sendkeystrokes_pref_enabled_summary">Auf Daten mit dem MIME-Typ „text/x-keystrokes“ warten</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>
|
||||
@@ -100,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">
|
||||
@@ -136,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>
|
||||
@@ -179,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>
|
||||
@@ -220,12 +205,9 @@
|
||||
<string name="refresh">Aktualisieren</string>
|
||||
<string name="unreachable_description">Das verbundene Gerät ist nicht erreichbar. Stellen Sie sicher, dass es mit demselben Netzwerk verbunden ist</string>
|
||||
<string name="no_wifi">Sie sind nicht mit einem WLAN-Netzwerk verbunden, weshalb womöglich keine anderen Geräte angezeigt werden können. Klicken Sie hier um Ihr WLAN zu aktivieren</string>
|
||||
<string name="on_non_trusted_message">"Dies ist kein vertrauenswürdiges Netzwerk: die automatische Erkennung ist deaktiviert."</string>
|
||||
<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="pref_plugin_telepathy_mms_desc">Um MMS von KDE Connect aus versenden zu können, müssen Sie es als Standard-SMS-App festlegen.</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>
|
||||
@@ -237,7 +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 geteilte Dateien zu empfangen, müssen Sie einen Zielordner wählen</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>
|
||||
@@ -262,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>
|
||||
@@ -297,49 +278,23 @@
|
||||
<string name="remote_keyboard_service">Entfernte Tastatur für KDE Connect</string>
|
||||
<string name="presenter_pointer">Laserpointer</string>
|
||||
<string name="trusted_networks">Vertrauenswürdiges Netzwerk</string>
|
||||
<string name="trusted_networks_desc">Automatische Erkennung auf bekannte Netzwerke beschränken</string>
|
||||
<string name="add_trusted_network">%1s hinzufügen</string>
|
||||
<string name="empty_trusted_networks_list_text">Sie haben bisher noch kein vertrauenswürdiges Netzwerk hinzugefügt</string>
|
||||
<string name="allow_all_networks_text">Alle erlauben</string>
|
||||
<string name="location_permission_needed_title">Berechtigung erforderlich</string>
|
||||
<string name="clipboard_android_x_incompat">In Android 10 wurde der Zugriff auf die Zwischenablage für alle Apps entfernt. Diese Modul wird deaktiviert.</string>
|
||||
<string name="mpris_open_url">Wiedergabe hier fortsetzen</string>
|
||||
<string name="cant_open_url">Die URL zum Fortsetzen der Wiedergabe kann nicht geöffnet werden</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_mic">Mikrofon</string>
|
||||
<string name="bigscreen_optional_permission_explanation">Um den Mikrofoneingang des Mobiltelefons freizugeben, müssen Sie den Zugriff auf den Audioeingang des Mobiltelefons erlauben</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_group_message_as_mms_title">Gruppen-SMS 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>
|
||||
|
@@ -1,32 +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_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">Χρησιμοποιήστε τη συσκευή σας για να αλλάξετε διαφάνειες σε μία παρουσίαση</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>
|
||||
@@ -37,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>
|
||||
@@ -50,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>
|
||||
@@ -69,33 +52,13 @@
|
||||
<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="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">Εστάλησαν %1$s στη συσκευή %2$s</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="view_status_title">Κατάσταση</string>
|
||||
<string name="battery_status_format">Μπαταρία: %d%%</string>
|
||||
<string name="battery_status_low_format">Μπαταρία: %d%% Χαμηλή συάθμη</string>
|
||||
<string name="battery_status_charging_format">Μπαταρία: %d%% φόρτιση</string>
|
||||
<string name="battery_status_unknown">Πληροφορίες για τη μπαταρία δεν είναι διαθέσιμες</string>
|
||||
<string name="category_connected_devices">Συνδεδεμένες συσκευές</string>
|
||||
<string name="category_not_paired_devices">Διαθέσιμες συσκευές</string>
|
||||
<string name="category_remembered_devices">Συσκευές στη μνήμη</string>
|
||||
@@ -111,45 +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="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">
|
||||
<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>
|
||||
@@ -158,18 +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_loop">Βρόχος</string>
|
||||
<string name="mpris_shuffle">Ανάμιξη</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>
|
||||
@@ -177,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>
|
||||
@@ -232,161 +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>
|
||||
<string name="report_bug">Αναφορά σφάλματος</string>
|
||||
<string name="donate">Δωρεές</string>
|
||||
<string name="source_code">Πηγαίος κώδικας</string>
|
||||
<string name="licenses">Άδειες χρήσης</string>
|
||||
<string name="website">Ιστότοπος</string>
|
||||
<string name="about">Σχετικά</string>
|
||||
<string name="authors">Συγγραφείς</string>
|
||||
<string name="thanks_to">Ευχαριστίες</string>
|
||||
<string name="easter_egg">Πασχαλινό αυγό</string>
|
||||
<string name="email_contributor">Email συμβαλλόμενου\n%s</string>
|
||||
<string name="visit_contributors_homepage">Επισκεφθείτε τη σελίδα του συμβαλλόμενου\n%s</string>
|
||||
<string name="version">Έκδοση %s</string>
|
||||
<string name="about_kde">Σχετικά με το KDE</string>
|
||||
<string name="kde_be_free">KDE - Απελευθερωθείτε!</string>
|
||||
<string name="kde">KDE</string>
|
||||
<string name="konqi">Konqi</string>
|
||||
<string name="rise_up">Άνοδος</string>
|
||||
<string name="rise_down">Κάθοδος</string>
|
||||
<string name="app_description">Εφαρμογή γα πολλές πλατφόρμες που επιτρέπει στις συσκευές σας να επικοινωνούν (π.χ. το κινητό με τον υπολογιστή)</string>
|
||||
<string name="about_kde_about"><h1>Σχετικά</h1> <p>Το KDE είναι μια παγκόσμια κοινότητα μηχανικών λογισμικού, καλλιτεχνών, συγγραφέων, μεταφραστών και δημιουργών οι οποίοι είναι αφοσιωμένοι στην ανάπτυξη του <a href=https://www.gnu.org/philosophy/free-sw.html>Ελεύθερου Λογισμικού</a>. Το KDE παράγει το περιβάλλον γραφείου Plasma, εκατοντάδες εφαρμογές και πολλές βιβλιοθήκες που τις υποστηρίζουν.</p> <p>Το KDE είναι ένα συνεργατικό εγχείρημα: καμιά οντότητα από μόνη της δεν ελέγχει την κατεύθυνση ή τα προϊόντα του. Αντίθετα, συνεργαζόμαστε για να επιτύχουμε τον κοινό στόχο της κατασκευής του πληρέστερου στον κόσμο Ελεύθερου Λογισμικού. Οποιοσδήποτε είναι ευπρόσδεκτος να <a href=https://community.kde.org/Get_Involved>γίνει μέλος και να συμβάλει</a> στο KDE, και εσείς φυσικά.</p> Επισκεφθείτε το <a href=https://www.kde.org/>https://www.kde.org/</a> για περισσότερες πληροφορίες σχετικά με την κοινότητα του KDE και το λογισμικό που παράγουμε.</string>
|
||||
<string name="about_kde_report_bugs_or_wishes"><h1>Αναφέρετε σφάλματα ή επιθυμίες στο</h1> <p>Το Λογισμικό μπορεί πάντα να βελτιώνεται και η ομάδα του KDE είναι έτοιμη γι\' αυτό. Ωστόσο, εσείς - ο χρήστης - πρέπει να μας ενημερώνετε αν κάτι δεν λειτουργεί όπως θα έπρεπε ή αν θα μπορούσε να γίνει καλύτερο.</p> <p>Το KDE έχει ένα σύστημα ανίχνευσης σφαλμάτων. Επισκεφθείτε το <a href=https://bugs.kde.org/>https://bugs.kde.org/</a> ή χρησιμοποιήστε το κουμπί «Αναφορά σφάλματος» από την οθόνη Σχετικά για να αναφέρετε σφάλματα.</p> Αν έχετε κάποια πρόταση για βελτίωση, χρησιμοποιήστε το σύστημα ανίχνευσης σφαλμάτων για να εγγράψετε την επιθυμία σας. Βεβαιωθείτε ότι χρησιμοποιείτε τη «Λίστα επιθυμιών».</string>
|
||||
<string name="about_kde_join_kde"><h1>Γίνετε μέλη του KDE</h1> <p>Δεν χρειάζεται να είστε προγραμματιστής για να γίνετε μέλος της ομάδας του KDE. Μπορείτε να ενταχθείτε στις εθνικές ομάδες που μεταφράζουν τις διεπαφές των εφαρμογών. Μπορείτε να παρέχετε γραφικά, θέματα, ήχους και να βελτιώσετε την τεκμηρίωση. Εσείς αποφασίζετε!</p> <p>Επισκεφθείτε το <a href=https://community.kde.org/Get_Involved>https://community.kde.org/Get_Involved</a> για πληροφρίες σε ορισμένα έργα στα οποία μπορείτε να δηλώσετε συμμετοχή.</p> Αν χρειάζεστε πρόσθετη πληροφόρηση ή τεκμηρίωση, μια επίσκεψη στο <a href=https://techbase.kde.org/>https://techbase.kde.org/</a> θα σας παρέχει ό,τι χρειάζεστε.</string>
|
||||
<string name="about_kde_support_kde"><h1>Υποστηρίξτε το KDE</h1> <p>Το λογισμικό του KDE είναι και θα είναι πάντα διαθέσιμο δωρεάν, ωστόσο η δημιουργία του δεν είναι δωρεάν.</p> <p>Για να υποστηρίξετε την ανάπτυξη η κοινότητα του KDE έχει δημιουργήσει στη Γερμανία το KDE e.V., έναν μη-κερδοσκοπικό οργανισμό. Το KDE e.V. εκπροσωπεί την κοινότητα του KDE σε νομικά και χρηματοοικονομικά θέματα. Δείτε το<a href=https://ev.kde.org/>https://ev.kde.org/</a> για πληροφορίες για το KDE e.V.</p> <p>Το KDE ωφελείται από πολλά είδη συνεισφορών, και οικονομικών. Χρησιμοποιούμε τους οικονομικούς πόρους για αμοιβές μελών και άλλων για έξοδα που παρουσιάζονται όταν συμμετέχουν. Άλλα κονδύλια χρησιμοποιούνται για τη νομική υποστήριξη και τη διοργάνωση συνεδρίων και συναντήσεων.</p> <p>Θα θέλαμε να σας ενθαρρύνουμε να υποστηρίξετε τις προσπάθειές μας με μια δωρεά, με έναν από τους τρόπους που περιγράφονται στο <a href=https://www.kde.org/community/donations/>https://www.kde.org/community/donations/</a>.</p> Σας ευχαριστούμε πολύ εκ των προτέρων για την υποστήριξή σας.</string>
|
||||
<string name="maintainer_and_developer">Συντηρητής και προγραμματιστής</string>
|
||||
<string name="developer">Προγραμματιστής</string>
|
||||
<string name="apple_support">Υποστήριξη macos. Εργασία υποστήριξης iOS</string>
|
||||
<string name="bug_fixes_and_general_improvements">Διόρθωση σφαλμάτων και γενικές βελτιώσεις</string>
|
||||
<string name="samoilenko_yuri_task">Υλοποίηση SFTP, διόρθωση σφαλμάτων και γενικές βελτιώσεις</string>
|
||||
<string name="aniket_kumar_task">Βελτιώσεις πρόσθετου SMS</string>
|
||||
<string name="alex_fiestas_task">Βελτιώσεις πρόσθετου επαφών</string>
|
||||
<string name="maxim_leshchenko_task">Βελτιώσεις γραφικού περιβάλλοντος και της σελίδας του περιγράμματος</string>
|
||||
<string name="holger_kaelberer_task">Πρόσθετο απομακρυσμένου πληκτρολπγίου και διορθώσεις σφαλμάτων</string>
|
||||
<string name="saikrishna_arcot_task">Υποστήριξη της χρήσης του πληκτρολογίου στο πρόσθετο απομακρυσμένης σύνδεσης, διορθώσεις σφαλμάτων και γενικές βελτιώσεις</string>
|
||||
<string name="everyone_else">Οποιοσδήποτε άλλος έχει συμβάλλει στο παρελθόν στο KDE Contact</string>
|
||||
</resources>
|
||||
|
@@ -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,26 +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 %1$s to device %2$s</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="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="view_status_title">Status</string>
|
||||
<string name="battery_status_format">Battery: %d%%</string>
|
||||
<string name="battery_status_low_format">Battery: %d%% Low Battery</string>
|
||||
<string name="battery_status_charging_format">Battery: %d%% charging</string>
|
||||
<string name="battery_status_unknown">Battery information not available</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>
|
||||
@@ -111,8 +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="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>
|
||||
<plurals name="incoming_file_title">
|
||||
@@ -165,8 +143,6 @@
|
||||
<string name="mpris_rew">Rewind</string>
|
||||
<string name="mpris_ff">Fast-forward</string>
|
||||
<string name="mpris_next">Next</string>
|
||||
<string name="mpris_loop">Loop</string>
|
||||
<string name="mpris_shuffle">Shuffle</string>
|
||||
<string name="mpris_volume">Volume</string>
|
||||
<string name="mpris_time_settings_title">Forward/rewind buttons</string>
|
||||
<string name="mpris_time_settings_summary">Adjust the time to fast forward/rewind when pressed</string>
|
||||
@@ -237,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>
|
||||
@@ -250,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>
|
||||
@@ -275,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>
|
||||
@@ -330,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>
|
||||
@@ -350,43 +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>
|
||||
<string name="website">Website</string>
|
||||
<string name="about">About</string>
|
||||
<string name="authors">Authors</string>
|
||||
<string name="thanks_to">Thanks To</string>
|
||||
<string name="easter_egg">Easter Egg</string>
|
||||
<string name="email_contributor">Email contributor\n%s</string>
|
||||
<string name="visit_contributors_homepage">Visit contributor\'s homepage\n%s</string>
|
||||
<string name="version">Version %s</string>
|
||||
<string name="about_kde">About KDE</string>
|
||||
<string name="kde_be_free">KDE - Be Free!</string>
|
||||
<string name="kde">KDE</string>
|
||||
<string name="konqi">Konqi</string>
|
||||
<string name="rise_up">Rise Up</string>
|
||||
<string name="rise_down">Rise Down</string>
|
||||
<string name="app_description">Multi-platform app that allows your devices to communicate (e.g., your phone and your computer)</string>
|
||||
<string name="about_kde_about"><h1>About</h1> <p>KDE is a world-wide community of software engineers, artists, writers, translators and creators who are committed to <a href=https://www.gnu.org/philosophy/free-sw.html>Free Software</a> development. KDE produces the Plasma desktop environment, hundreds of applications, and the many software libraries that support them.</p> <p>KDE is a cooperative enterprise: no single entity controls its direction or products. Instead, we work together to achieve the common goal of building the world\'s finest Free Software. Everyone is welcome to <a href=https://community.kde.org/Get_Involved>join and contribute</a> to KDE, including you.</p> Visit <a href=https://www.kde.org/>https://www.kde.org/</a> for more information about the KDE community and the software we produce.</string>
|
||||
<string name="about_kde_report_bugs_or_wishes"><h1>Report Bugs or Wishes</h1> <p>Software can always be improved, and the KDE team is ready to do so. However, you - the user - must tell us when something does not work as expected or could be done better.</p> <p>KDE has a bug tracking system. Visit <a href=https://bugs.kde.org/>https://bugs.kde.org/</a> or use the \"Report Bug\" button from the about screen to report bugs.</p> If you have a suggestion for improvement then you are welcome to use the bug tracking system to register your wish. Make sure you use the severity called \"Wishlist\".</string>
|
||||
<string name="about_kde_join_kde"><h1>Join KDE</h1> <p>You do not have to be a software developer to be a member of the KDE team. You can join the national teams that translate program interfaces. You can provide graphics, themes, sounds, and improved documentation. You decide!</p> <p>Visit <a href=https://community.kde.org/Get_Involved>https://community.kde.org/Get_Involved</a> for information on some projects in which you can participate.</p> If you need more information or documentation, then a visit to <a href=https://techbase.kde.org/>https://techbase.kde.org/</a> will provide you with what you need.</string>
|
||||
<string name="about_kde_support_kde"><h1>Support KDE</h1> <p>KDE software is and will always be available free of charge, however creating it is not free.</p> <p>To support development the KDE community has formed the KDE e.V., a non-profit organisation legally founded in Germany. KDE e.V. represents the KDE community in legal and financial matters. See <a href=https://ev.kde.org/>https://ev.kde.org/</a> for information on KDE e.V.</p> <p>KDE benefits from many kinds of contributions, including financial. We use the funds to reimburse members and others for expenses they incur when contributing. Further funds are used for legal support and organising conferences and meetings.</p> <p>We would like to encourage you to support our efforts with a financial donation, using one of the ways described at <a href=https://www.kde.org/community/donations/>https://www.kde.org/community/donations/</a>.</p> Thank you very much in advance for your support.</string>
|
||||
<string name="maintainer_and_developer">Maintainer and developer</string>
|
||||
<string name="developer">Developer</string>
|
||||
<string name="apple_support">macOS support. Working on iOS support</string>
|
||||
<string name="bug_fixes_and_general_improvements">Bug fixes and general improvements</string>
|
||||
<string name="samoilenko_yuri_task">SFTP implementation, bug fixes and general improvements</string>
|
||||
<string name="aniket_kumar_task">SMS plugin improvements</string>
|
||||
<string name="alex_fiestas_task">Contacts plugin improvements</string>
|
||||
<string name="maxim_leshchenko_task">UI improvements and this about page</string>
|
||||
<string name="holger_kaelberer_task">Remote keyboard plugin and bug fixes</string>
|
||||
<string name="saikrishna_arcot_task">Support for using the keyboard in the remote input plugin, bug fixes and general improvements</string>
|
||||
<string name="everyone_else">Everyone else who has contributed to KDE Connect over the years</string>
|
||||
</resources>
|
||||
|
@@ -1,7 +1,6 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<resources>
|
||||
<string name="kde_connect">KDE Connect</string>
|
||||
<string name="manifest_label_share">Enviar al dispositivo</string>
|
||||
<string name="foreground_notification_no_devices">No conectado a ningún dispositivo</string>
|
||||
<string name="foreground_notification_devices">Conectado a: %s</string>
|
||||
<string name="foreground_notification_send_clipboard">Enviar al portapapeles</string>
|
||||
@@ -9,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>
|
||||
@@ -77,26 +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 %1$s al dispositivo %2$s</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="view_status_title">Estado</string>
|
||||
<string name="battery_status_format">Batería: %d%%</string>
|
||||
<string name="battery_status_low_format">Batería: %d%% Batería baja</string>
|
||||
<string name="battery_status_charging_format">Batería: %d%% cargando</string>
|
||||
<string name="battery_status_unknown">Información de batería no disponible</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>
|
||||
@@ -112,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">
|
||||
@@ -166,8 +143,6 @@
|
||||
<string name="mpris_rew">Rebobinar</string>
|
||||
<string name="mpris_ff">Avance rápido</string>
|
||||
<string name="mpris_next">Siguiente</string>
|
||||
<string name="mpris_loop">Bucle</string>
|
||||
<string name="mpris_shuffle">Mezclar</string>
|
||||
<string name="mpris_volume">Volumen</string>
|
||||
<string name="mpris_time_settings_title">Botones de avance/rebobinado</string>
|
||||
<string name="mpris_time_settings_summary">Ajustar el tiempo a avanzar o rebobinar rápidamente al pulsar</string>
|
||||
@@ -238,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>
|
||||
@@ -251,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>
|
||||
@@ -276,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>
|
||||
@@ -331,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">Tú</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">
|
||||
@@ -351,43 +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>
|
||||
<string name="website">Página web</string>
|
||||
<string name="about">Acerca de</string>
|
||||
<string name="authors">Autores</string>
|
||||
<string name="thanks_to">Gracias a</string>
|
||||
<string name="easter_egg">Huevo de Pascua</string>
|
||||
<string name="email_contributor">Correo del contribuidor\n%s</string>
|
||||
<string name="visit_contributors_homepage">Visite la página web del contribuidor\n%s</string>
|
||||
<string name="version">Versión %s</string>
|
||||
<string name="about_kde">Acerca de KDE</string>
|
||||
<string name="kde_be_free">KDE - ¡Sea libre!</string>
|
||||
<string name="kde">KDE</string>
|
||||
<string name="konqi">Konqi</string>
|
||||
<string name="rise_up">Levantar</string>
|
||||
<string name="rise_down">Bajar</string>
|
||||
<string name="app_description">Aplicación multi-plataforma que permite a sus dispositivos comunicarse (por ejemplo entre su teléfono y su equipo)</string>
|
||||
<string name="about_kde_about"><h1>Acerca de</h1> <p>KDE es una comunidad global de ingenieros software, artistas, escritores, traductores y creadores que siguen el desarrollo de <a href=https://www.gnu.org/philosophy/free-sw.html>Software Libre</a>. KDE produce el entorno de escritorio Plasma, cientos de aplicaciones y todas las librerías en las que se basan.</p> <p>KDE es una empresa colaborativa: no hay una entidad única que controla sus productos o su dirección. En su lugar, trabajamos de manera conjunta para conseguir la meta común de construir el mejor software libre posible. Todo el mundo es bienvenido a <a href=https://community.kde.org/Get_Involved>unirse y contribuir</a> a KDE, incluido usted.</p> Visite <a href=https://www.kde.org/>https://www.kde.org/</a> para más información sobre la comunidad KDE y el software que creamos.</string>
|
||||
<string name="about_kde_report_bugs_or_wishes"><h1>Reporte errores o deseos</h1> <p>El software siempre puede ser mejorado y el equipo de KDE está preparado para ello. Sin embargo, usted - el usuario - debe comunicarnos cuando algo no funciona como es esperado o que puede ser mejorado. </p> <p> KDE tiene un sistema de traqueo de errores. Visite <a href=https://bugs.kde.org/>https://bugs.kde.org/</a> o use el botón «Informar de fallo» en la ventana «Acerca de» para reportar errores.</p> Si tiene una sugerencia de mejora entonces use el sistema de traqueo de errores para registrar su sugerencia. Asegúrese de que usa la severidad «Lista de deseos».</string>
|
||||
<string name="about_kde_join_kde"><h1>Unirse a KDE</h1> <p>No tiene por que ser un desarrollador de software para ser miembro del equipo KDE. Se puede unir a los equipos nacionales que traducen las interfaces de los programas. Puede proporcionar gráficos, temas, sonidos y mejorar la documentación. ¡Tú decides!</p> <p>Visite <a href=https://community.kde.org/Get_Involved>https://community.kde.org/Get_Involved</a> para más información sobre los proyectos en los que puede participar.</p> Si necesita más información o documentación, entonces una visita a <a href=https://techbase.kde.org/>https://techbase.kde.org/</a> le proporcionará la información que necesite.</string>
|
||||
<string name="about_kde_support_kde"><h1>Soporte a KDE</h1> <p>El software KDE es y siempre será gratuito, sin embargo crearlo no lo es.</p> <p>Para soportar el desarrollo, la comunidad KDE ha creado KDE e.V., una organización sin ánimo de lucro creada en Alemania. KDE e.V. representa a la comunidad KDE en asuntos legales y financieros. Vea <a href=https://ev.kde.org/>https://ev.kde.org/</a> para más información de KDE e.V.</p> <p>KDE se beneficia de muchos tipos de contribuciones, incluyendo financieras. Usamos los fondos para reembolsar los gastos de los contribuidores cuando contribuyen. Otros fondos se usan para dar soporte legal y para organizar conferencias y reuniones.</p> <p>Le agradeceríamos una donación financiera para soportar nuestros esfuerzos, usando uno de los mecanismos descritos en <a href=https://www.kde.org/community/donations/>https://www.kde.org/community/donations/</a>.</p> Muchas gracias por su apoyo.</string>
|
||||
<string name="maintainer_and_developer">Mantenedor y desarrollador</string>
|
||||
<string name="developer">Desarrollador</string>
|
||||
<string name="apple_support">Soporte para macOS. Trabajando en el soporte para iOS</string>
|
||||
<string name="bug_fixes_and_general_improvements">Arreglos y mejoras generales</string>
|
||||
<string name="samoilenko_yuri_task">Implementación SFTP, arreglos y mejoras generales</string>
|
||||
<string name="aniket_kumar_task">Mejoras en el complemento SMS</string>
|
||||
<string name="alex_fiestas_task">Mejoras en el complemento de contactos</string>
|
||||
<string name="maxim_leshchenko_task">Mejoras en la UI y la página «Acerca de»</string>
|
||||
<string name="holger_kaelberer_task">Complemento del teclado remoto y arreglos</string>
|
||||
<string name="saikrishna_arcot_task">Soporte para usar el teclado en el complemento de entrada remota, arreglos y mejoras generales</string>
|
||||
<string name="everyone_else">Todos los demás que han contribuido a KDE Connect a lo largo de su historia</string>
|
||||
</resources>
|
||||
|
@@ -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>
|
||||
|
@@ -8,8 +8,6 @@
|
||||
<string name="pref_plugin_telephony_desc">Bidali jakinarazpenak sarrerako deietarako</string>
|
||||
<string name="pref_plugin_battery">Bateriaren txostena</string>
|
||||
<string name="pref_plugin_battery_desc">Bidali bateriaren egoera aldiro</string>
|
||||
<string name="pref_plugin_connectivity_report">Konektagarritasun txostena</string>
|
||||
<string name="pref_plugin_connectivity_report_desc">Eman sareko seinale-sendotasunaren eta egoeraren berri</string>
|
||||
<string name="pref_plugin_sftp">Fitxategi-sistemaren esposaketa</string>
|
||||
<string name="pref_plugin_sftp_desc">Gailu honen fitxategi-sistema urrunetik arakatzea ahalbidetzen du</string>
|
||||
<string name="pref_plugin_clipboard">Arbelaren sinkronizazioa</string>
|
||||
@@ -76,26 +74,6 @@
|
||||
<item>Sendoagoa</item>
|
||||
<item>Sendoena</item>
|
||||
</string-array>
|
||||
<string name="sendkeystrokes_send_to">Bidali tekla-joaldiak hona</string>
|
||||
<string name="sendkeystrokes_textbox_hint">Bidali tekla-joaldiak ostalarira</string>
|
||||
<string name="sendkeystrokes_disabled_toast">Tekla-joaldiak bidaltzea ezgaituta dago - gaitu ezazu ezarpenetan</string>
|
||||
<string name="sendkeystrokes_wrong_data">MIME-mota baliogabea - \'text/x-keystrokes\' izan behar da</string>
|
||||
<string name="sendkeystrokes_sent_text">%1$s %2$s gailura bidali da</string>
|
||||
<string name="sendkeystrokes_pref_category_summary">Modulu honek, beste aplikazioei, konektatutako ostalarira tekla-joaldi gisa bidaliko diren testu-segmentuak partekatzeko aukera eskaintzen die</string>
|
||||
<string name="sendkeystrokes_pref_category_title">Bidali tekla-joaldiak</string>
|
||||
<string name="sendkeystrokes_pref_enabled">Gaitu tekla-joaldiak bidaltzea</string>
|
||||
<string name="sendkeystrokes_pref_enabled_summary">\'text/x-keystrokes\' MIME-motako datuak entzutea</string>
|
||||
<string name="sendkeystrokes_safe_text_enabled">Bidali testu segurua berehala</string>
|
||||
<string name="sendkeystrokes_safe_text_enabled_summary">Bidali zenbakizko kate laburrak berrespenik gabe</string>
|
||||
<string name="pref_plugin_mousepad_send_keystrokes">Bidali tekla-joaldi gisa</string>
|
||||
<string name="mouse_receiver_plugin_description">Jaso urrutiko saguaren mugimenduak</string>
|
||||
<string name="mouse_receiver_plugin_name">Sagu jasotzailea</string>
|
||||
<string name="mouse_receiver_no_permissions">Irisgarritasun zerbitzua gaitu behar duzu</string>
|
||||
<string name="view_status_title">Egoera</string>
|
||||
<string name="battery_status_format">Bateria: %%%d</string>
|
||||
<string name="battery_status_low_format">Bateria: %%%d bateria baxu</string>
|
||||
<string name="battery_status_charging_format">Bateria: %%%d kargatzen</string>
|
||||
<string name="battery_status_unknown">Bateriari buruzko informazioa ez dago erabilgarri</string>
|
||||
<string name="category_connected_devices">Konektatutako gailuak</string>
|
||||
<string name="category_not_paired_devices">Gailu eskuragarriak</string>
|
||||
<string name="category_remembered_devices">Gogoratutako gailuak</string>
|
||||
@@ -111,8 +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="my_device_fingerprint">Zure gailuaren ziurtagiriaren SHA256 hatz-marka:</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">
|
||||
@@ -165,8 +143,6 @@
|
||||
<string name="mpris_rew">Atzera eraman</string>
|
||||
<string name="mpris_ff">Aurrera eraman</string>
|
||||
<string name="mpris_next">Hurrengoa</string>
|
||||
<string name="mpris_loop">Begizta</string>
|
||||
<string name="mpris_shuffle">Nahasi</string>
|
||||
<string name="mpris_volume">Bolumena</string>
|
||||
<string name="mpris_time_settings_title">Atzera eraman / Aurrera eraman botoiak</string>
|
||||
<string name="mpris_time_settings_summary">Doitu sakatzean aurrera/atzera azkar egin beharreko denbora</string>
|
||||
@@ -235,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>
|
||||
@@ -250,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>
|
||||
@@ -275,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>
|
||||
@@ -330,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">
|
||||
@@ -350,43 +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>
|
||||
<string name="report_bug">Akats baten berri eman</string>
|
||||
<string name="donate">Egin dohaintza</string>
|
||||
<string name="source_code">Sorburu kodea</string>
|
||||
<string name="licenses">Lizentziak</string>
|
||||
<string name="website">Webgunea</string>
|
||||
<string name="about">Honi buruz</string>
|
||||
<string name="authors">Egileak</string>
|
||||
<string name="thanks_to">Eskerrak ondokoei</string>
|
||||
<string name="easter_egg">Pazkoko arrautza</string>
|
||||
<string name="email_contributor">Bidali e-posta kolaboratzaileari\n%s</string>
|
||||
<string name="visit_contributors_homepage">Bisitatu kolaboratzailearen orri nagusia\n%s</string>
|
||||
<string name="version">%s bertsioa</string>
|
||||
<string name="about_kde">KDEri buruz</string>
|
||||
<string name="kde_be_free">KDE - Izan aske!</string>
|
||||
<string name="kde">KDE</string>
|
||||
<string name="konqi">Konqi</string>
|
||||
<string name="rise_up">Igo</string>
|
||||
<string name="rise_down">Jaitsi</string>
|
||||
<string name="app_description">Zure gailuei haien artean komunikatzen uzten dien plataforma askotariko aplikazioa (adib., zure telefonoa eta zure ordenagailua)</string>
|
||||
<string name="about_kde_about">"<h1>Honi buruz</h1> <p>KDE <a href=https://www.gnu.org/philosophy/free-sw.html>Software Askearen</a> garapenarekin engaiatutako mundu osoko software ingeniari, artista, idazle, itzultzaile eta sortzaile elkarte bat da. KDEk Plasma mahaigain ingurunea, ehunka aplikazio, eta haiei euskarria ematen dieten liburutegi ugariak ekoizten ditu. </p> <p>KDE ekimen kooperatibo bat da: ez dago bere norabidea eta produktuak kontrolatzen dituen erakunderik. Aldiz, elkarrekin lan egiten dugu guztiok partekatzen dugun helburu bera lortzeko, munduko Software Aske bikainena eraikitzearena alegia. Jende oro ongi etorria da KDErekin <a href=https://community.kde.org/Get_Involved>elkartu eta laguntza ematera</a>, zu barne. </p> Bisitatu <a href=https://www.kde.org/>https://www.kde.org/</a> , KDE elkartearen eta ekoizten dugun softwarearen gaineko informazio zabalagoa eskuratzeko."</string>
|
||||
<string name="about_kde_report_bugs_or_wishes"><h1>Akatsen edo nahien berri ematea</h1> <p>Softwarea beti hobetu daiteke, eta KDE taldea horretarako prest dago. Hala ere, zuk - erabiltzailea zaren horrek - zerbait behar bezala ez dabilenean edo hobeto egin daitekeenean esan egin behar diguzu.</p> <p>KDEk programa-akatsen gaineko jarraipena egiteko sistema bat du. Bisitatu <a href=https://bugs.kde.org/>https://bugs.kde.org/</a> edo erabili Honi buruz pantailako «Akatsa jakinarazi» botoia.</p> Hobetzeko iradokizunik baduzu, akatsen jarraipen sisteman zure nahia erregistratzera gonbidatzen zaitugu. Larritasun maila bezala \"Wishlist\" (nahien zerrenda) erabil ezazu horretarako.</string>
|
||||
<string name="about_kde_join_kde">"<h1>Zatoz KDEra</h1> <p>Ez duzu software garatzailea izan behar KDEren taldeko kide izateko. Programen interfazeak itzultzen dituzten hizkuntzen taldeetara batu zaitezke. Grafikoak, gaiak, soinuak, eta dokumentazio hobetua eskain ditzakezu. Zeuk erabaki!</p> <p>Bisitatu <a href=https://community.kde.org/Get_Involved>https://community.kde.org/Get_Involved</a> parte hartu dezakezun proiektuen informazioa eskuratzeko.</p> Informazio edo dokumentazio gehiago behar baduzu, <a href=https://techbase.kde.org/>https://techbase.kde.org/</a> bisitatuz behar duzuna eskuratuko duzu."</string>
|
||||
<string name="about_kde_support_kde">"<h1>Babestu KDE</h1> <p>KDE softwarea doan eskura daiteke eta beti hala izango da, hala ere hura sortzea ez da doan.</p> <p>Garapenari sostengua emateko KDE elkarteak KDE e.V. sortu du, irabazi asmorik gabeko erakunde bat legalki Alemanian fundatua. KDE e.V. erakundeak KDE proiektua ordezkatzen du gai legal eta finantzakoetan. Begiratu <a href=https://ev.kde.org/>https://ev.kde.org/</a> KDE e.V. gaineko informaziorako.</p> <p>KDE kolaborazio mota askoren onuradun da, finantzetakoa barne. Funtsa partaideek laguntzerakoan jasaten dituzten gastuak ordaintzeko erabiltzen dugu. Funtsaren gainerakoa sostengu legalerako eta konferentziak eta topaketak antolatzeko erabiltzen da.</p> <p>Gure esfortzuak finantza dohaintza batekin babes ematera animatu nahi zaitugu, hauetan, <a href=https://www.kde.org/community/donations/>https://www.kde.org/community/donations/</a> azaltzen diren moduetako bat erabiliz.</p> Aurrez esker mila zure babesagatik"</string>
|
||||
<string name="maintainer_and_developer">Arduraduna eta garatzailea</string>
|
||||
<string name="developer">Garatzailea</string>
|
||||
<string name="apple_support">macOS-ren euskarria. iOS-en euskarria lantzen</string>
|
||||
<string name="bug_fixes_and_general_improvements">Akatsen konponketa eta hobekuntza orokorrak</string>
|
||||
<string name="samoilenko_yuri_task">SFTP inplementatzea, akatsen konponketa eta hobekuntza orokorrak</string>
|
||||
<string name="aniket_kumar_task">SMS pluginaren hobekuntzak</string>
|
||||
<string name="alex_fiestas_task">Kontaktuen pluginaren hobekuntzak</string>
|
||||
<string name="maxim_leshchenko_task">Erabiltzaile-interfazean hobekuntzak eta Honi buru orria hau</string>
|
||||
<string name="holger_kaelberer_task">Urruneko teklatuaren plugina eta akatsen konponketa</string>
|
||||
<string name="saikrishna_arcot_task">Urruneko sarrerako pluginean teklatua erabiltzeko euskarria, akatsen konponketa eta hobekuntza orokorrak</string>
|
||||
<string name="everyone_else">Urteetan KDE Connect-ekin lagundu duten gainerako guztiak</string>
|
||||
</resources>
|
||||
|
@@ -8,8 +8,6 @@
|
||||
<string name="pref_plugin_telephony_desc">Lähetä ilmoitukset saapuvista puheluista</string>
|
||||
<string name="pref_plugin_battery">Akkuraportti</string>
|
||||
<string name="pref_plugin_battery_desc">Raportoi akun tila säännöllisesti</string>
|
||||
<string name="pref_plugin_connectivity_report">Verkkoyhteysraportti</string>
|
||||
<string name="pref_plugin_connectivity_report_desc">Ilmoita kentän voimakkuus ja tila</string>
|
||||
<string name="pref_plugin_sftp">Tiedostojärjestelmän paljastaminen</string>
|
||||
<string name="pref_plugin_sftp_desc">Mahdollistaa tämän laitteen tiedostojärjestelmän etäselaamisen</string>
|
||||
<string name="pref_plugin_clipboard">Leikepöydän synkronointi</string>
|
||||
@@ -76,26 +74,6 @@
|
||||
<item>Vahvempi</item>
|
||||
<item>Vahvin</item>
|
||||
</string-array>
|
||||
<string name="sendkeystrokes_send_to">Lähetä näppäinpainallukset…</string>
|
||||
<string name="sendkeystrokes_textbox_hint">Lähetä näppäinpainallukset koneelle</string>
|
||||
<string name="sendkeystrokes_disabled_toast">Näppäinpainallusten lähetys ei ole käytössä: ota se käyttöön asetuksista</string>
|
||||
<string name="sendkeystrokes_wrong_data">Virheellinen MIME-tyyppi: vaaditaan ”text/x-keystrokes”</string>
|
||||
<string name="sendkeystrokes_sent_text">Lähetettiin %1$s laitteelle %2$s</string>
|
||||
<string name="sendkeystrokes_pref_category_summary">Tällä moduulilla muut sovellukset voivat jakaa tekstikatkelmia yhdistetylle koneelle lähetettyinä näppäinpainalluksina</string>
|
||||
<string name="sendkeystrokes_pref_category_title">Lähetä näppäinpainalluksia</string>
|
||||
<string name="sendkeystrokes_pref_enabled">Salli näppäinpainallusten lähettäminen</string>
|
||||
<string name="sendkeystrokes_pref_enabled_summary">Kuuntele dataa, jonka MIME-tyyppi on ”text/x-keystrokes”</string>
|
||||
<string name="sendkeystrokes_safe_text_enabled">Lähetä turvallinen teksti välittömästi</string>
|
||||
<string name="sendkeystrokes_safe_text_enabled_summary">Lähetä lyhyet vain numeeriset jonot vahvistuksetta</string>
|
||||
<string name="pref_plugin_mousepad_send_keystrokes">Lähetä näppäinpainalluksina</string>
|
||||
<string name="mouse_receiver_plugin_description">Vastaanota etähiiren liike</string>
|
||||
<string name="mouse_receiver_plugin_name">Hiirivastaanotin</string>
|
||||
<string name="mouse_receiver_no_permissions">Esteettömyyspalvelu on otettava käyttöön</string>
|
||||
<string name="view_status_title">Tila</string>
|
||||
<string name="battery_status_format">Varaus: %d %%</string>
|
||||
<string name="battery_status_low_format">Varaus: %d %%, vähissä</string>
|
||||
<string name="battery_status_charging_format">Varaus: %d %%, latautuu</string>
|
||||
<string name="battery_status_unknown">Varaustietoa ei ole saatavilla</string>
|
||||
<string name="category_connected_devices">Yhdistetyt laitteet</string>
|
||||
<string name="category_not_paired_devices">Saatavilla olevat laitteet</string>
|
||||
<string name="category_remembered_devices">Muistetut laitteet</string>
|
||||
@@ -111,8 +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="my_device_fingerprint">Laitevarmenteen SHA256-sormenjälki on:</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">
|
||||
@@ -165,8 +143,6 @@
|
||||
<string name="mpris_rew">Kelaa takaisin</string>
|
||||
<string name="mpris_ff">Pikakelaa</string>
|
||||
<string name="mpris_next">Seuraava</string>
|
||||
<string name="mpris_loop">Silmukka</string>
|
||||
<string name="mpris_shuffle">Sekoita</string>
|
||||
<string name="mpris_volume">Äänenvoimakkuus</string>
|
||||
<string name="mpris_time_settings_title">Kelauspainikkeet</string>
|
||||
<string name="mpris_time_settings_summary">Säädä painettaessa tapahtuvan kelauksen kestoa</string>
|
||||
@@ -237,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>
|
||||
@@ -250,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>
|
||||
@@ -275,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>
|
||||
@@ -330,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">
|
||||
@@ -350,39 +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>
|
||||
<string name="report_bug">Ilmoita ohjelmavirheestä</string>
|
||||
<string name="donate">Lahjoita</string>
|
||||
<string name="source_code">Lähdekoodi</string>
|
||||
<string name="licenses">Lisenssit</string>
|
||||
<string name="website">Sivusto</string>
|
||||
<string name="about">Tietoa</string>
|
||||
<string name="authors">Tekijät</string>
|
||||
<string name="thanks_to">Kiitokset</string>
|
||||
<string name="easter_egg">Yllätysmuna</string>
|
||||
<string name="email_contributor">Sähköpostiavustaja\n%s</string>
|
||||
<string name="visit_contributors_homepage">Käy avustajan sivustolla\n%s</string>
|
||||
<string name="version">Versio %s</string>
|
||||
<string name="about_kde">Tietoa KDE:stä</string>
|
||||
<string name="kde_be_free">KDE – Ole vapaa!</string>
|
||||
<string name="kde">KDE</string>
|
||||
<string name="konqi">Konqi</string>
|
||||
<string name="rise_up">Nouse ylemmäs</string>
|
||||
<string name="rise_down">Laskeudu alemmas</string>
|
||||
<string name="app_description">Usean alustan sovellus, jolla laitteet (esim. puhelin ja tietokone) voivat viestiä keskenään</string>
|
||||
<string name="maintainer_and_developer">Ylläpitäjä ja kehittäjä</string>
|
||||
<string name="developer">Kehittäjä</string>
|
||||
<string name="apple_support">macOS-tuki. Työn alla iOS-tuki</string>
|
||||
<string name="bug_fixes_and_general_improvements">Virhekorjauksia ja yleisparannuksia</string>
|
||||
<string name="samoilenko_yuri_task">SFTP-toteutus, virheenkorjaukset ja yleisparannukset</string>
|
||||
<string name="aniket_kumar_task">Tekstiviestiliitännäisen parannukset</string>
|
||||
<string name="alex_fiestas_task">Yhteystietoliitännäisen parannukset</string>
|
||||
<string name="maxim_leshchenko_task">Käyttöliittymäparannukset ja tämä tietosivu</string>
|
||||
<string name="holger_kaelberer_task">Etänäppäimistöliitännäinen ja virheenkorjaukset</string>
|
||||
<string name="saikrishna_arcot_task">Tuki näppäimistön käytölle etäsyöteliitännäisessä, virheenkorjaukset ja yleisparannukset</string>
|
||||
<string name="everyone_else">Kaikki muut vuosien varrella KDE Connectia avustaneet</string>
|
||||
</resources>
|
||||
|
@@ -1,7 +1,6 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<resources>
|
||||
<string name="kde_connect">KDE Connect</string>
|
||||
<string name="manifest_label_share">Envoyer vers un périphérique</string>
|
||||
<string name="foreground_notification_no_devices">Aucun périphérique connecté</string>
|
||||
<string name="foreground_notification_devices">Connecté à : %s</string>
|
||||
<string name="foreground_notification_send_clipboard">Envoyer le presse-papier</string>
|
||||
@@ -9,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>
|
||||
@@ -47,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>
|
||||
@@ -77,26 +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">%1s envoyés 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="view_status_title">État</string>
|
||||
<string name="battery_status_format">Batterie : %d %%</string>
|
||||
<string name="battery_status_low_format">Batterie : %d %% Batterie faible</string>
|
||||
<string name="battery_status_charging_format">Battery: %d%% en charge</string>
|
||||
<string name="battery_status_unknown">Informations de batterie non disponibles</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>
|
||||
@@ -112,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">
|
||||
@@ -166,8 +143,6 @@
|
||||
<string name="mpris_rew">Retour rapide</string>
|
||||
<string name="mpris_ff">Avance rapide</string>
|
||||
<string name="mpris_next">Suivant</string>
|
||||
<string name="mpris_loop">En boucle</string>
|
||||
<string name="mpris_shuffle">Mélanger</string>
|
||||
<string name="mpris_volume">Volume</string>
|
||||
<string name="mpris_time_settings_title">Boutons avance / retour rapide.</string>
|
||||
<string name="mpris_time_settings_summary">Ajustez le temps pour l\'avance ou retour rapide.</string>
|
||||
@@ -251,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>
|
||||
@@ -276,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>
|
||||
@@ -331,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>
|
||||
@@ -356,38 +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>
|
||||
<string name="website">Site Internet</string>
|
||||
<string name="about">À propos</string>
|
||||
<string name="authors">Auteurs</string>
|
||||
<string name="thanks_to">Remerciements à</string>
|
||||
<string name="easter_egg">Œuf de Pâques</string>
|
||||
<string name="email_contributor">Envoyer un courriel au contributeur\n%s</string>
|
||||
<string name="visit_contributors_homepage">Visiter la page d\'accueil du contributeur\n%s</string>
|
||||
<string name="version">Version %s</string>
|
||||
<string name="about_kde">À propos de KDE</string>
|
||||
<string name="kde_be_free">KDE - Soyez libre !</string>
|
||||
<string name="kde">KDE</string>
|
||||
<string name="konqi">Konqi</string>
|
||||
<string name="rise_up">Debout !</string>
|
||||
<string name="rise_down">Se lever</string>
|
||||
<string name="app_description">Application multi-plate-forme permettant à vos périphériques de communiquer (Par exemple, votre téléphone et votre ordinateur)</string>
|
||||
<string name="about_kde_about">"<h1>A propos</h1&gt ; <p>KDE est une communauté mondiale d\'ingénieurs en logiciel, d\'artistes d\'ingénieurs logiciels, d\'artistes, d\'écrivains, de traducteurs et de créateurs s\'engageant pour le développement de <a href=https://www.gnu.org/philosophy/free-sw.html>Logiciels libres</a&gt. KDE développe l\'environnement de bureau Plasma, des centaines d\'applications, et les nombreuses bibliothèques logicielles les prenant en charge. KDE est une entreprise coopérative : aucune entité centrale ne contrôle sa direction ou ses produits. Au contraire, nous travaillons tous ensemble pour atteindre un objectif commun : construire le meilleur logiciel libre au monde. Tout le monde est est le bienvenu pour <a href=https://community.kde.org/Get_Involved>rejoindre et contribuer</a&gt ; à KDE, y compris vous. </p&gt ; Visitez <a href=https://www.kde.org/>https://www.kde.org/</a&gt ; pour de plus amples informations sur la communauté KDE et les logiciels que nous développons."</string>
|
||||
<string name="about_kde_report_bugs_or_wishes"><h1>Signaler des bogues ou des souhaits</h1&gt ; <p>Les logiciels peuvent toujours être améliorés et l\'équipe KDE est prête à le faire. Cependant, vous - l\'utilisateur / trice - devez nous dire quand quelque chose ne fonctionne pas comme prévu ou pourrait être mieux fait. KDE dispose d\'un système de suivi des bogues. Visitez <a href=https://bugs.kde.org/>https://bugs.kde.org/</a&gt ; ou utilisez le bouton bouton « Signaler un bogue » de la page « A propos » pour signaler les bogues. Si vous avez une suggestion d\'amélioration, vous pouvez aussi utiliser le système de suivi des bogues pour enregistrer votre souhait. Veuillez vous assurer de bien utiliser le niveau de gravité appelée « Liste de souhaits ».</string>
|
||||
<string name="about_kde_join_kde"><h1>Rejoignez KDE</h1&gt ; <p>Vous n\'avez pas besoin d\'être un développeur de logiciels pour être membre de l\'équipe KDE. Vous pouvez rejoindre les équipes nationales qui traduisent les interfaces des programmes. Vous pouvez fournir des graphiques, des thèmes, des sons, et des améliorations de la documentation. À vous de décider !</p&gt ; <p>Visitez <a href=https://community.kde.org/Get_Involved>https://community.kde.org/Get_Involved</a&gt ; pour obtenir des informations sur certains projets auxquels vous pouvez participer.</p&gt ; Si vous avez besoin de plus d\'informations ou de documentation, alors une visite sur <a href=https://techbase.kde.org/>https://techbase.kde.org/</a&gt ; vous fournira ce dont vous avez besoin.</string>
|
||||
<string name="about_kde_support_kde"><h1>Soutenir KDE</h1&gt ; <p> Les logiciels de KDE sont et seront toujours disponibles gratuitement. Cependant, leur création n\'est pas gratuite. <p>Pour soutenir le développement, la communauté KDE a créée KDE e.V., une organisation à but non lucratif, légalement fondée en Allemagne. KDE e.V. représente la communauté KDE pour les questions juridiques et financières. Veuillez consulter la page <a href=https://ev.kde.org/>https://ev.kde.org/</a&gt ; pour plus d\'informations sur KDE e.V.</p&gt ; <p>KDE bénéficie de plusieurs types de contributions, y compris financières. Nous utilisons les fonds pour rembourser les membres et d\'autres personnes pour les dépenses qu\'ils engagent pour leurs contributions. D\'autres fonds sont utilisés pour le soutien juridique et l\'organisation de conférences et de réunions. Nous aimerions vous encourager à soutenir nos efforts par un don financier, en utilisant l\'un des moyens décrits sur la page <a href=https://www.kde.org/community/donations/>https://www.kde.org/community/donations/</a&gt ;.</p&gt ; Nous vous remercions par avance pour votre soutien.</string>
|
||||
<string name="maintainer_and_developer">Mainteneur et développeur</string>
|
||||
<string name="developer">Développeur</string>
|
||||
<string name="apple_support">Prise en charge de MacOs. Travail en cours sur la prise en charge de iOS.</string>
|
||||
<string name="bug_fixes_and_general_improvements">Correction de bogues et améliorations générales</string>
|
||||
<string name="samoilenko_yuri_task">Implémentation de SFTP, corrections de bogues et améliorations générales</string>
|
||||
<string name="aniket_kumar_task">Améliorations du module externe pour SMS</string>
|
||||
<string name="alex_fiestas_task">Améliorations du module externe pour les contacts</string>
|
||||
<string name="maxim_leshchenko_task">Améliorations de l\'interface utilisateur et de cette page d\'à propos</string>
|
||||
<string name="holger_kaelberer_task">Corrections du module externe de clavier sans fil et de bogues</string>
|
||||
<string name="saikrishna_arcot_task">Prise en charge de l\'utilisation du clavier dans le module d\'entrée à distance, corrections de bogues et améliorations générales</string>
|
||||
<string name="everyone_else">Toutes les autres personnes ayant contribué à « KDE Connect » depuis plusieurs années</string>
|
||||
</resources>
|
||||
|
@@ -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>
|
||||
|
@@ -1,108 +1,44 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<resources>
|
||||
<string name="kde_connect">KDE Connect</string>
|
||||
<string name="manifest_label_share">Küldés eszközre</string>
|
||||
<string name="foreground_notification_no_devices">Nincs csatlakozva egy eszközhöz sem</string>
|
||||
<string name="foreground_notification_devices">Csatlakozva ehhez: %s</string>
|
||||
<string name="foreground_notification_send_clipboard">Vágólap küldése</string>
|
||||
<string name="pref_plugin_telephony">Telefon értesítő</string>
|
||||
<string name="pref_plugin_telephony_desc">Értesítések küldése bejövő hívásokról</string>
|
||||
<string name="pref_plugin_battery">Akkumulátor jelentés</string>
|
||||
<string name="pref_plugin_battery_desc">Akkumulátorállapot időszakos jelentése</string>
|
||||
<string name="pref_plugin_connectivity_report">Kapcsolódási jelentés</string>
|
||||
<string name="pref_plugin_connectivity_report_desc">Hálózati jelerősség és állapot jelentése</string>
|
||||
<string name="pref_plugin_sftp">Fájlrendszer-közzététel</string>
|
||||
<string name="pref_plugin_sftp_desc">Lehetővé teszi az eszköz fájlrendszerének távolról történő tallózását</string>
|
||||
<string name="pref_plugin_sftp">Fájlrendszer kifejtés</string>
|
||||
<string name="pref_plugin_clipboard">Vágólap szinkronizáció</string>
|
||||
<string name="pref_plugin_clipboard_desc">A vágólap tartalmának megosztása</string>
|
||||
<string name="pref_plugin_clipboard_sent">Vágólap elküldve</string>
|
||||
<string name="pref_plugin_mousepad">Távirányítás</string>
|
||||
<string name="pref_plugin_mousepad_desc">A telefon vagy tablet használata érintőtáblaként és billentyűzetként</string>
|
||||
<string name="pref_plugin_presenter">Bemutató távirányító</string>
|
||||
<string name="pref_plugin_presenter_desc">Az eszköz használata diák léptetésére prezentációkban</string>
|
||||
<string name="pref_plugin_remotekeyboard">Távoli billentyűlenyomások fogadása</string>
|
||||
<string name="pref_plugin_remotekeyboard_desc">Billentyűlenyomás események fogadása távoli eszközökről</string>
|
||||
<string name="pref_plugin_mpris">Multimédiavezérlők</string>
|
||||
<string name="pref_plugin_mpris_desc">Médialejátszók távirányítása</string>
|
||||
<string name="pref_plugin_runcommand">Parancs futtatása</string>
|
||||
<string name="pref_plugin_runcommand_desc">Távoli parancsok kiváltása telefonjáról vagy tabletjéről</string>
|
||||
<string name="pref_plugin_contacts">Névjegyszinkronizáló</string>
|
||||
<string name="pref_plugin_contacts_desc">Az eszköz névjegyeinek szinkronizálása</string>
|
||||
<string name="pref_plugin_ping">Ping</string>
|
||||
<string name="pref_plugin_ping_desc">Pingek küldése és fogadása</string>
|
||||
<string name="pref_plugin_notifications">Értesítés szinkronizáció</string>
|
||||
<string name="pref_plugin_notifications_desc">Hozzáférés az értesítésekhez más eszközökről</string>
|
||||
<string name="pref_plugin_receive_notifications">Értesítések fogadása</string>
|
||||
<string name="pref_plugin_receive_notifications_desc">Értesítések fogadása más eszközökről, és megjelenítésük Androidon</string>
|
||||
<string name="pref_plugin_sharereceiver">Megosztás és fogadás</string>
|
||||
<string name="pref_plugin_sharereceiver_desc">Fájlok és URL-ek megosztása eszközök között</string>
|
||||
<string name="device_list_empty">Nincsenek eszközök</string>
|
||||
<string name="ok">OK</string>
|
||||
<string name="sad_ok">OK :(</string>
|
||||
<string name="cancel">Mégsem</string>
|
||||
<string name="cancel">Mégse</string>
|
||||
<string name="open_settings">Beállítások megnyitása</string>
|
||||
<string name="no_permissions">Engedélyt kell adnia az értesítésekhez való hozzáféréshez</string>
|
||||
<string name="no_permission_mprisreceiver">A médialejátszók távirányításához engedélyt kell adnia az értesítésekhez hozzáféréshez</string>
|
||||
<string name="no_permissions_remotekeyboard">A billentyűlenyomások fogadásához aktiválnia kell a KDE Connect távoli billentyűzetet</string>
|
||||
<string name="no_permissions">Jogot kell adnia az értesítésekhez való hozzáféréshez</string>
|
||||
<string name="send_ping">Ping küldése</string>
|
||||
<string name="open_mpris_controls">Multimédiavezérlés</string>
|
||||
<string name="remotekeyboard_editing_only_title">Távoli billentyűk kezelése csak szerkesztéskor</string>
|
||||
<string name="remotekeyboard_not_connected">Nincs aktív távoli billentyűzetkapcsolat, létesítsen egyet a kdeconnectben</string>
|
||||
<string name="remotekeyboard_connected">Távoli billentyűzetkapcsolat aktív</string>
|
||||
<string name="remotekeyboard_multiple_connections">Több, mint egy távoli billentyűzetkapcsolat van, válassza ki a beállítandó eszközt</string>
|
||||
<string name="open_mousepad">Távirányítás</string>
|
||||
<string name="mousepad_info">Az egérkurzor mozgatásához mozgassa az ujját a képernyőn. Koppintson a kattintáshoz, és használjon két/három ujjat a jobb és a középső gombokhoz. A görgetéshez használjon 2 ujjat. Hosszan húzza az ejtéshez.</string>
|
||||
<string name="mousepad_double_tap_settings_title">Két ujjas koppintás beállítása</string>
|
||||
<string name="mousepad_triple_tap_settings_title">Három ujjas koppintás beállítása</string>
|
||||
<string name="mousepad_sensitivity_settings_title">Érintőtábla érzékenység beállítása</string>
|
||||
<string name="mousepad_acceleration_profile_settings_title">Mutatógyorsítás beállítása</string>
|
||||
<string name="mousepad_scroll_direction_title">Fordított görgetési irány</string>
|
||||
<string-array name="mousepad_tap_entries">
|
||||
<item>Jobb gombos kattintás</item>
|
||||
<item>Középső gombos kattintás</item>
|
||||
<item>Semmi</item>
|
||||
<item/>
|
||||
<item/>
|
||||
<item>Nothing</item>
|
||||
</string-array>
|
||||
<string-array name="mousepad_sensitivity_entries">
|
||||
<item>Leglassabb</item>
|
||||
<item>Leglassabb felett</item>
|
||||
<item>Alapértelmezett</item>
|
||||
<item>Alapértelmezett felett</item>
|
||||
<item>Leggyorsabb</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>Nincs gyorsítás</item>
|
||||
<item>Leggyengébb</item>
|
||||
<item>Gyengébb</item>
|
||||
<item>Közepes</item>
|
||||
<item>Erősebb</item>
|
||||
<item>Legerősebb</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">Billentyűleütések küldése ide:</string>
|
||||
<string name="sendkeystrokes_textbox_hint">Billentyűleütések küldése a gazdagépnek</string>
|
||||
<string name="sendkeystrokes_disabled_toast">Billentyűleütések küldése kikapcsolva - kapcsolja be a beállításokban</string>
|
||||
<string name="sendkeystrokes_wrong_data">Érvénytelen MIME-típus - „text/x-keystrokes” kell</string>
|
||||
<string name="sendkeystrokes_sent_text">%1$s küldése a(z) %2$s eszköznek</string>
|
||||
<string name="sendkeystrokes_pref_category_summary">Ez a modul lehetővé teszi más alkalmazások számára, hogy szövegrészleteket osszanak meg billentyűleütésként, amelyek elküldésre kerülnek a csatlakoztatott gépnek</string>
|
||||
<string name="sendkeystrokes_pref_category_title">Billentyűleütések küldése</string>
|
||||
<string name="sendkeystrokes_pref_enabled">Billentyleütések küldésének bekapcsolása</string>
|
||||
<string name="sendkeystrokes_pref_enabled_summary">A „text/x-keystrokes” MIME-típusú adatok figyelése</string>
|
||||
<string name="sendkeystrokes_safe_text_enabled">Biztonságos szöveg küldése azonnal</string>
|
||||
<string name="sendkeystrokes_safe_text_enabled_summary">Rövid, csak numerikus karakterláncok küldése megerősítés nélkül</string>
|
||||
<string name="pref_plugin_mousepad_send_keystrokes">Küldés billentyűleütésként</string>
|
||||
<string name="mouse_receiver_plugin_description">Távoli egérmozgások fogadása</string>
|
||||
<string name="mouse_receiver_plugin_name">Egérvevő</string>
|
||||
<string name="mouse_receiver_no_permissions">Engedélyeznie kell az akadálymentesítési szolgáltatást</string>
|
||||
<string name="view_status_title">Állapot</string>
|
||||
<string name="battery_status_format">Akku: %d%%</string>
|
||||
<string name="battery_status_low_format">Akku: %d%% alacsony töltöttség</string>
|
||||
<string name="battery_status_charging_format">Akku: %d%% töltés</string>
|
||||
<string name="battery_status_unknown">Nem érhetők el akkuinformációk</string>
|
||||
<string name="category_connected_devices">Csatlakoztatott eszközök</string>
|
||||
<string name="category_not_paired_devices">Elérhető eszközök</string>
|
||||
<string name="category_remembered_devices">Megjegyzett eszközök</string>
|
||||
<string name="device_menu_plugins">Bővítménybeállítások</string>
|
||||
<string name="device_menu_unpair">Leválasztás</string>
|
||||
<string name="pair_new_device">Új eszköz párosítása</string>
|
||||
<string name="unknown_device">Ismeretlen eszköz</string>
|
||||
<string name="error_not_reachable">Az eszköz nem érhető el</string>
|
||||
<string name="error_already_paired">Az eszköz már párosítva van</string>
|
||||
@@ -110,284 +46,47 @@
|
||||
<string name="error_timed_out">Időtúllépés</string>
|
||||
<string name="error_canceled_by_user">Megszakítva a felhasználó által</string>
|
||||
<string name="error_canceled_by_other_peer">A másik partner megszakította</string>
|
||||
<string name="encryption_info_title">Titkosítási információk</string>
|
||||
<string name="encryption_info_msg_no_ssl">A másik eszköz nem használja a KDE Connect legújabb verzióját, régi titkosítási módszert lesz használva.</string>
|
||||
<string name="my_device_fingerprint">Az eszköz tanúsítványának SHA256 ujjlenyomata:</string>
|
||||
<string name="remote_device_fingerprint">A távoli eszköz tanúsítványának SHA256 ujjlenyomata:</string>
|
||||
<string name="pair_requested">Párosítás kérve</string>
|
||||
<string name="pairing_request_from">Párosítási kérés innen: %1s</string>
|
||||
<plurals name="incoming_file_title">
|
||||
<item quantity="one">%1$d fájl fogadása innen: %2$s</item>
|
||||
<item quantity="other">%1$d fájl fogadása innen: %2$s</item>
|
||||
</plurals>
|
||||
<plurals name="incoming_files_text">
|
||||
<item quantity="one">Fájl: %1s</item>
|
||||
<item quantity="other">(%2$d / %3$d fájl): %1$s</item>
|
||||
</plurals>
|
||||
<plurals name="outgoing_file_title">
|
||||
<item quantity="one">%1$d fájl küldése ide: %2$s</item>
|
||||
<item quantity="other">%1$d fájl küldése ide: %2$s</item>
|
||||
</plurals>
|
||||
<plurals name="outgoing_files_text">
|
||||
<item quantity="one">Fájl: %1$s</item>
|
||||
<item quantity="other">(%2$d / %3$d fájl): %1$s</item>
|
||||
</plurals>
|
||||
<plurals name="received_files_title">
|
||||
<item quantity="one">Fájl érkezett innen: %1$s</item>
|
||||
<item quantity="other">%2$d fájl érkezett innen: %1$s</item>
|
||||
</plurals>
|
||||
<plurals name="received_files_fail_title">
|
||||
<item quantity="one">Sikertelen fájlfogadás innen: %1$s</item>
|
||||
<item quantity="other">%2$d / %3$d fájl fogadása sikertelen innen: %1$s</item>
|
||||
</plurals>
|
||||
<plurals name="sent_files_title">
|
||||
<item quantity="one">Fájl küldve ide: %1$s</item>
|
||||
<item quantity="other">%2$d fájl küldve ide: %1$s</item>
|
||||
</plurals>
|
||||
<plurals name="send_files_fail_title">
|
||||
<item quantity="one">Sikertelen fájlküldés ide: %1$s</item>
|
||||
<item quantity="other">%2$d / %3$d fájl küldése sikertelen ide: %1$s</item>
|
||||
</plurals>
|
||||
<string name="tap_to_open">Koppintson a megnyitáshoz</string>
|
||||
<string name="received_file_text">Koppintson a(z) „%1s” megnyitásához</string>
|
||||
<string name="cannot_create_file">Nem hozható létre a(z) %s fájl</string>
|
||||
<string name="tap_to_answer">Koppintson válaszhoz</string>
|
||||
<string name="received_file_text">Koppintson „%1s” megnyitásához</string>
|
||||
<string name="tap_to_answer">Érintse meg a válaszhoz</string>
|
||||
<string name="right_click">Jobb kattintás küldése</string>
|
||||
<string name="middle_click">Középső kattintás küldése</string>
|
||||
<string name="show_keyboard">Billentyűzet megjelenítése</string>
|
||||
<string name="device_not_paired">Az eszköz nincs párosítva</string>
|
||||
<string name="request_pairing">Párosítás kérése</string>
|
||||
<string name="pairing_accept">Elfogadás</string>
|
||||
<string name="pairing_reject">Elutasítás</string>
|
||||
<string name="settings">Beállítások</string>
|
||||
<string name="mpris_play">Lejátszás</string>
|
||||
<string name="mpris_pause">Szünet</string>
|
||||
<string name="mpris_previous">Előző</string>
|
||||
<string name="mpris_rew">Visszatekerés</string>
|
||||
<string name="mpris_ff">Gyors előretekerés</string>
|
||||
<string name="mpris_next">Következő</string>
|
||||
<string name="mpris_loop">Ismétlés</string>
|
||||
<string name="mpris_shuffle">Keverés</string>
|
||||
<string name="mpris_volume">Hangerő</string>
|
||||
<string name="mpris_time_settings_title">Előre/visszatekerő gombok</string>
|
||||
<string name="mpris_time_settings_summary">A gyors előre/visszatekerés idejének beállítása, amikor megnyomják</string>
|
||||
<string-array name="mpris_time_entries">
|
||||
<item>10 másodperc</item>
|
||||
<item>20 másodperc</item>
|
||||
<item>30 másodperc</item>
|
||||
<item>1 perc</item>
|
||||
<item>2 perc</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">Médiavezérlő értesítéseinek megjelenítése</string>
|
||||
<string name="mpris_notification_settings_summary">Lehetővé teszi a médialejátszók vezérlését a KDE Connect megnyitása nélkül</string>
|
||||
<string name="share_to">Megosztás…</string>
|
||||
<string name="protocol_version_newer">Ez az eszköz egy újabb protokollverziót használ</string>
|
||||
<string name="plugin_settings_with_name">%s beállításai</string>
|
||||
<string name="invalid_device_name">Érvénytelen eszköznév</string>
|
||||
<string name="shareplugin_text_saved">Szöveg érkezett, elmentve a vágólapra</string>
|
||||
<string name="custom_devices_settings">Saját eszközök listája</string>
|
||||
<string name="custom_device_list">Eszközök hozzáadása IP-cím alapján</string>
|
||||
<string name="custom_device_deleted">Saját eszköz észlelve</string>
|
||||
<string name="custom_device_list_help">Ha az eszköz nem kerül automatikusan felismerésre, akkor hozzáadhatja az IP-címét vagy a gépnevét a lebegő műveletgombra kattintva</string>
|
||||
<string name="custom_device_fab_hint">Eszköz hozzáadása</string>
|
||||
<string name="undo">Visszavonás</string>
|
||||
<string name="share_notification_preference">Hangos értesítések</string>
|
||||
<string name="share_notification_preference_summary">Rezgés és hanglejátszás fájl fogadásakor</string>
|
||||
<string name="share_destination_customize">Célmappa megadása</string>
|
||||
<string name="share_destination_customize_summary_disabled">A fogadott fájlok a Letöltésekben jelennek meg</string>
|
||||
<string name="share_destination_customize_summary_enabled">A fájlok az alábbi mappában lesznek tárolva</string>
|
||||
<string name="share_destination_folder_preference">Célmappa</string>
|
||||
<string name="share">Megosztás</string>
|
||||
<string name="share_received_file">„%s” megosztása</string>
|
||||
<string name="title_activity_notification_filter">Értesítésszűrő</string>
|
||||
<string name="filter_apps_info">A kiválasztott alkalmazások értesítései szinkronizálódnak.</string>
|
||||
<string name="sftp_sdcard_num">%d. SD-kártya</string>
|
||||
<string name="sftp_sdcard">SD-kártya</string>
|
||||
<string name="sftp_readonly">(csak olvasható)</string>
|
||||
<string name="sftp_camera">Fényképek</string>
|
||||
<string name="add_device_dialog_title">Eszköz hozzáadása</string>
|
||||
<string name="add_device_hint">Gépnév vagy IP-cím</string>
|
||||
<string name="sftp_preference_detected_sdcards">Észlelt SD-kártyák</string>
|
||||
<string name="sftp_preference_edit_sdcard_title">SD-kártya szerkesztése</string>
|
||||
<string name="sftp_preference_configured_storage_locations">Beállított tárolóhelyek</string>
|
||||
<string name="sftp_preference_add_storage_location_title">Tárolóhely hozzáadása</string>
|
||||
<string name="sftp_preference_edit_storage_location">Tárolóhely szerkesztése</string>
|
||||
<string name="sftp_preference_add_camera_shortcut">Kamera mappa ikon hozzáadása</string>
|
||||
<string name="sftp_preference_add_camera_shortcut_summary_on">Parancsikon hozzáadása a kamera mappához</string>
|
||||
<string name="sftp_preference_add_camera_shortcut_summary_off">Ne adjon hozzá a kamera mappához parancsikont</string>
|
||||
<string name="sftp_storage_preference_storage_location">Tárolóhely</string>
|
||||
<string name="sftp_storage_preference_storage_location_already_configured">Ez a hely már be van állítva-</string>
|
||||
<string name="sftp_storage_preference_click_to_select">kattintson a kiválasztáshoz</string>
|
||||
<string name="sftp_storage_preference_display_name">Megjelenített név</string>
|
||||
<string name="sftp_storage_preference_display_name_already_used">Ez a név már használatban van</string>
|
||||
<string name="sftp_storage_preference_display_name_cannot_be_empty">A megjelenített név nem lehet üres</string>
|
||||
<string name="sftp_action_mode_menu_delete">Törlés</string>
|
||||
<string name="sftp_no_sdcard_detected">Nem található SD-kártya</string>
|
||||
<string name="sftp_no_storage_locations_configured">Nincs beállítva tárolóhely</string>
|
||||
<string name="sftp_saf_permission_explanation">A fájlok távoli eléréséhez be kell állítania a tárolóhelyeket</string>
|
||||
<string name="no_players_connected">Nem találhatók lejátszók</string>
|
||||
<string name="send_files">Fájlok küldése</string>
|
||||
<string name="pairing_title">KDE Connect eszközök</string>
|
||||
<string name="pairing_description">Itt kell megjelennie az Ön hálózatában lévő többi, KDE Connectet futtató eszköznek.</string>
|
||||
<string name="device_rename_title">Eszköz átnevezése</string>
|
||||
<string name="device_rename_confirm">Átnevezés</string>
|
||||
<string name="refresh">Frissítés</string>
|
||||
<string name="unreachable_description">Ez a párosított eszköz nem érhető el. Ellenőrizze, hogy ugyanarra a hálózatra csatlakozott-e.</string>
|
||||
<string name="no_wifi">Ön nem csatlakozik Wi-Fi hálózathoz, így előfordulhat, hogy nem láthat semmilyen eszközt. Kattintson ide a Wi-Fi bekapcsolásához.</string>
|
||||
<string name="on_non_trusted_message">Nem megbízható hálóat: automatikus felfedezés kikapcsolva.</string>
|
||||
<string name="no_file_browser">Nincsenek fájlkezelők telepítve.</string>
|
||||
<string name="pref_plugin_telepathy">SMS küldése</string>
|
||||
<string name="pref_plugin_telepathy_desc">Szöveges üzenetek küldese a számítógépéről</string>
|
||||
<string name="pref_plugin_telepathy_mms">MMS küldése</string>
|
||||
<string name="pref_plugin_telepathy_mms_desc">Ahhoz, hogy MMS-t tudjon küldeni a KDE Connectből, be kell állítania a KDE Connectet alapértelmezett SMS alkalmazásként.</string>
|
||||
<string name="findmyphone_title">Telefon keresése</string>
|
||||
<string name="findmyphone_title_tablet">Tablet keresése</string>
|
||||
<string name="findmyphone_title_tv">TV keresése</string>
|
||||
<string name="findmyphone_description">Megcsörgeti ezt az eszközt, hogy megtalálhassa</string>
|
||||
<string name="findmyphone_found">Megtalálva</string>
|
||||
<string name="open">Megnyitás</string>
|
||||
<string name="close">Bezárás</string>
|
||||
<string name="plugins_need_permission">Néhány bővítménynek engedélyekre van szüksége a működéshez (koppintson további információkért):</string>
|
||||
<string name="permission_explanation">Ez a bővítmény engedélyeket kér a működéshez</string>
|
||||
<string name="optional_permission_explanation">További engedélyeket kell biztosítania az összes funkció bekapcsolásához</string>
|
||||
<string name="plugins_need_optional_permission">Néhány bővítmény jogosultság hiányában kikapcsolta egyes funkcióit (koppintson további információkért):</string>
|
||||
<string name="share_optional_permission_explanation">Megosztott fájlok fogadásához meg kell adnia egy célmappát</string>
|
||||
<string name="telepathy_permission_explanation">Az SMS-ek írásához és olvasásához a számítógépéről engedélyt kell adnia az SMS-nek</string>
|
||||
<string name="telephony_permission_explanation">Ahhoz, hogy a telefonhívásokat a számítógépén láthassa, engedélyt kell adnia a hívásnaplókhoz és a telefon állapotához</string>
|
||||
<string name="telephony_optional_permission_explanation">Ahhoz, hogy a telefonszám helyett a nevet lássa, hozzáférést kell adnia a telefon névjegyeihez</string>
|
||||
<string name="contacts_permission_explanation">Ahhoz, hogy megoszthassa a névjegyzékét az asztali számítógépével, meg kell adnia a névjegyek engedélyt</string>
|
||||
<string name="select_ringtone">Válasszon csengőhangot</string>
|
||||
<string name="telephony_pref_blocked_title">Blokkolt számok</string>
|
||||
<string name="telephony_pref_blocked_dialog_desc">Ne jelenítsen meg hívásokat és SMS-eket ezekről a számokról. Soronként egy számot adjon meg</string>
|
||||
<string name="mpris_coverart_description">A jelenlegi média borítója</string>
|
||||
<string name="device_icon_description">Eszközikon</string>
|
||||
<string name="settings_icon_description">Beállítások ikon</string>
|
||||
<string name="presenter_fullscreen">Teljes képernyő</string>
|
||||
<string name="presenter_exit">Kilépés bemutató módból</string>
|
||||
<string name="presenter_lock_tip">Zárolhatja az eszközét, és használhatja a hangerő gombokat az előző/következő diára lépéshez</string>
|
||||
<string name="add_command">Parancs hozzáadása</string>
|
||||
<string name="addcommand_explanation">Nincsenek regisztrálva parancsok</string>
|
||||
<string name="addcommand_explanation2">A KDE Connect rendszerbeállításokban adhat hozzá új parancsokat</string>
|
||||
<string name="add_command_description">A számítógépén adhat hozzá új parancsokat</string>
|
||||
<string name="pref_plugin_mprisreceiver">Médialejátszó vezérlés</string>
|
||||
<string name="pref_plugin_mprisreceiver_desc">A telefon médialejátszóinak vezérlése egy másik eszközről</string>
|
||||
<string name="notification_channel_default">Egyéb értesítések</string>
|
||||
<string name="notification_channel_persistent">Állandó jelző</string>
|
||||
<string name="notification_channel_media_control">Médiavezérlő</string>
|
||||
<string name="notification_channel_filetransfer">Fájlátvitel</string>
|
||||
<string name="notification_channel_high_priority">Magas prioritás</string>
|
||||
<string name="notification_channel_sms_mms">Új üzenet</string>
|
||||
<string name="mpris_stop">Az aktuális lejátszó leállítása</string>
|
||||
<string name="copy_url_to_clipboard">URL másolása a vágólapra</string>
|
||||
<string name="clipboard_toast">Másolva a vágólapra</string>
|
||||
<string name="runcommand_notreachable">Az eszköz nem érhető el</string>
|
||||
<string name="runcommand_notpaired">Az eszköz nincs párosítva</string>
|
||||
<string name="runcommand_nosuchdevice">Nincs ilyen eszköz</string>
|
||||
<string name="runcommand_noruncommandplugin">Az eszközön nincs bekapcsolva a Parancs futtatása bővítmény</string>
|
||||
<string name="pref_plugin_findremotedevice">Távoli eszköz keresése</string>
|
||||
<string name="pref_plugin_findremotedevice_desc">Távoli eszköz csörgetése</string>
|
||||
<string name="ring">Csörgetés</string>
|
||||
<string name="pref_plugin_systemvolume">Rendszerhangerő</string>
|
||||
<string name="pref_plugin_systemvolume_desc">A távoli eszköz rendszerhangerejének szabályozása</string>
|
||||
<string name="mute">Némítás</string>
|
||||
<string name="all">Összes</string>
|
||||
<string name="devices">Eszközök</string>
|
||||
<string name="settings_rename">Eszköznév</string>
|
||||
<string name="settings_dark_mode">Sötét téma</string>
|
||||
<string name="settings_more_settings_title">További beállítások</string>
|
||||
<string name="settings_more_settings_text">Eszközönkénti beállítások a „Bővítménybeállítások” alatt találhatók egy eszközön belül.</string>
|
||||
<string name="setting_persistent_notification">Állandó értesítések megjelenítése</string>
|
||||
<string name="setting_persistent_notification_oreo">Állandó értesítés</string>
|
||||
<string name="setting_persistent_notification_description">Koppintson az Értesítésbeállítások bekapcsolásához/kikapcsolásához</string>
|
||||
<string name="extra_options">További beállítások</string>
|
||||
<string name="privacy_options">Adatvédelmi beállítások</string>
|
||||
<string name="set_privacy_options">Adatvédelmi beállítások megadása</string>
|
||||
<string name="block_contents">Értesítések tartalmának blokkolása</string>
|
||||
<string name="block_images">Képek blokkolása az értesítésekben</string>
|
||||
<string name="notification_channel_receivenotification">Értesítések más eszközökről</string>
|
||||
<string name="take_picture">Kamera indítása</string>
|
||||
<string name="plugin_photo_desc">A kamera alkalmazás indítása képek készítésének és átvitelének megkönnyítésére</string>
|
||||
<string name="no_app_for_opening">Nem található alkalmazás a fájl megnyitásához</string>
|
||||
<string name="remote_keyboard_service">KDE Connect távoli billentyűzet</string>
|
||||
<string name="presenter_pointer">Mutató</string>
|
||||
<string name="trusted_networks">Megbízható hálózatok</string>
|
||||
<string name="trusted_networks_desc">Automatikus felfedezés korlátozása az ismert hálózatokra</string>
|
||||
<string name="add_trusted_network">%1s hozzáadása</string>
|
||||
<string name="empty_trusted_networks_list_text">Még nem adott hozzá megbízható hálózatot</string>
|
||||
<string name="allow_all_networks_text">Összes engedélyezése</string>
|
||||
<string name="location_permission_needed_title">Engedély szükséges</string>
|
||||
<string name="location_permission_needed_desc">Az Androidnak szüksége van a Helymeghatározási engedélyre a WiFi hálózat azonosításához</string>
|
||||
<string name="clipboard_android_x_incompat">Az Android 10 eltávolította a vágólaphoz való hozzáférést minden alkalmazásból. Ez a bővítmény le lesz tiltva.</string>
|
||||
<string name="mpris_open_url">Lejátszás folytatása itt</string>
|
||||
<string name="cant_open_url">Nem lehet megnyitni az URL-t a lejátszás folytatásához</string>
|
||||
<string name="bigscreen_home">Kezdőképernyő</string>
|
||||
<string name="bigscreen_up">Fel</string>
|
||||
<string name="bigscreen_left">Balra</string>
|
||||
<string name="bigscreen_select">Kiválasztás</string>
|
||||
<string name="bigscreen_right">Jobbra</string>
|
||||
<string name="bigscreen_down">Le</string>
|
||||
<string name="bigscreen_mic">Mikrofon</string>
|
||||
<string name="pref_plugin_bigscreen">Bigscreen távirányító</string>
|
||||
<string name="pref_plugin_bigscreen_desc">Használja eszközét a Plasma Bigscreen távirányítójaként</string>
|
||||
<string name="bigscreen_optional_permission_explanation">A telefon mikrofonbemenetének megosztásához hozzáférést kell biztosítania a telefon hangbemenetéhez</string>
|
||||
<string name="bigscreen_speech_extra_prompt">Beszéljen</string>
|
||||
<string name="message_reply_label">VÁLASZ</string>
|
||||
<string name="mark_as_read_label">MEGJELÖLÉS OLVASOTTKÉNT</string>
|
||||
<string name="user_display_name">Ön</string>
|
||||
<string name="set_default_sms_app_title">MMS küldése</string>
|
||||
<string name="set_group_message_as_mms_title">Csoportos MMS küldése</string>
|
||||
<string name="set_long_text_as_mms_title">Hosszú szöveg küldése MMS-ként</string>
|
||||
<string name="convert_to_mms_after_title">Konvertálás MMS-sé</string>
|
||||
<string-array name="convert_to_mms_after_entries">
|
||||
<item>Egy üzenet után</item>
|
||||
<item>Két üzenet után</item>
|
||||
<item>Három üzenet után</item>
|
||||
<item>Négy üzenet után</item>
|
||||
<item>Öt üzenet után</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">Témaválasztás</string>
|
||||
<string-array name="theme_list">
|
||||
<item>Akkukimélő által beállítva</item>
|
||||
<item>Világos</item>
|
||||
<item>Sötét</item>
|
||||
<item>Set by Battery Saver</item>
|
||||
<item/>
|
||||
<item>Dark</item>
|
||||
</string-array>
|
||||
<string-array name="theme_list_v28">
|
||||
<item>Rendszertéma</item>
|
||||
<item>Világos</item>
|
||||
<item>Sötét</item>
|
||||
<item>System Default</item>
|
||||
<item/>
|
||||
<item>Dark</item>
|
||||
</string-array>
|
||||
<string name="report_bug">Hiba bejelentése</string>
|
||||
<string name="donate">Támogatás</string>
|
||||
<string name="source_code">Forráskód</string>
|
||||
<string name="licenses">Licencek</string>
|
||||
<string name="website">Weboldal</string>
|
||||
<string name="about">Névjegy</string>
|
||||
<string name="authors">Szerzők</string>
|
||||
<string name="thanks_to">Köszönet</string>
|
||||
<string name="easter_egg">Easter Egg</string>
|
||||
<string name="email_contributor">E-mail a közreműködőnek\n%s</string>
|
||||
<string name="visit_contributors_homepage">Ugrás a közreműködő honlapjára\n%s</string>
|
||||
<string name="version">Verzió: %s</string>
|
||||
<string name="about_kde">A KDE névjegye</string>
|
||||
<string name="kde_be_free">KDE - Légy szabad!</string>
|
||||
<string name="kde">KDE</string>
|
||||
<string name="konqi">Konqi</string>
|
||||
<string name="rise_up">Felemelés</string>
|
||||
<string name="rise_down">Leereszkedés</string>
|
||||
<string name="app_description">Multiplatformos alkalmazás, amely lehetővé teszi eszközeinek, hogy kommunikáljanak egymással (például a telefonja és számítógépe)</string>
|
||||
<string name="about_kde_about"><h1>Névjegy</h1> <p>A KDE fejlesztését és karbantartását egy nemzetközi közösség végzi, melynek tagjai mélyen elkötelezettek <a href=https://www.gnu.org/philosophy/free-sw.html>szabad szoftverek</a> iránt. A KDE készíti a Plasma asztali környezetet, alkalmazások százait és az azokat támogató programkönyvtárakat.</p> <p>Nem egyetlen csoport, vállalat vagy szervezet határozza meg a KDE fejlődési irányát, akár Ön is <a href=https://community.kde.org/Get_Involved >bekapcsolódhat a fejlesztésbe</a>!</p> Ha többet szeretne megtudni a KDE közösségről és az általunk készített szoftverekről, látogassa meg a <a href=https://www.kde.org/>https://www.kde.org/</a> honlapot.</string>
|
||||
<string name="about_kde_report_bugs_or_wishes">"<h1>Hibabejelentés és kérések</h1> <p>Fejlesztőink folyamatosan próbálják tökéletesíteni a KDE-t, könnyebbé tenni annak kezelését. Ebben a folyamatban hatalmas segítséget jelent, ha Ön, a felhasználó is jelzi, ha valami nem úgy működik, ahogy szeretné.</p> <p>A KDE rendelkezik egy internetes hibabejelentő rendszerrel. Hiba vagy továbbfejlesztési kívánság bejelentéséhez kérjük látogasson el a <a href=https://bugs.kde.org/>https://bugs.kde.org/</a> címre, vagy használja a „Hibabejelentés” menüpontot a névjegy képernyőn.</p> A hibabejelentő rendszerben nem csak hibákat, hanem továbbfejlesztési ötleteket és javaslatokat is rögzíteni lehet (ebben az esetben kérjük, hogy a bejelentés típusát „Wishlist”-nek - kívánságnak - állítsa be)."</string>
|
||||
<string name="about_kde_join_kde"><h1>Csatlakozás a KDE-hez</h1> <p>Nem csak szoftverfejlesztőket várunk a KDE csapatba! A magyar KDE örömmel fogad bármiféle segítséget a KDE magyar fordításának jobbá, pontosabbá tételéhez. A KDE fejlesztők örömmel fogadnak mindenkit, aki a mostaninál szebb és jobb képanyagot, hangokat, grafikai témákat vagy teljesebb dokumentációt tud készíteni.</p> <p>Az egyes projektekről, a bekapcsolódási lehetőségekről sok információ található a <a href=https://community.kde.org/Get_Involved>https://community.kde.org/Get_Involved</a> weboldalon.</p> Ha több információt szeretne kapni a fejlesztési témakörökről, kérjük látogasson el a <a href=https://techbase.kde.org/>https://techbase.kde.org/</a> honlapra, ahol választ kaphat minden kérdésére.</string>
|
||||
<string name="about_kde_support_kde"><h1>A KDE támogatása</h1> <p>A KDE ingyenesen használható, elkészítése azonban nincs ingyen.</p> <p>Ezért a KDE projekt vezetői létrehoztak egy KDE e.V. nevű nonprofit szervezetet Németországban. A KDE e.V. képviseli a KDE projektet jogi és pénzügyi kérdésekben. Részletes információ itt található: <a href=https://ev.kde.org/>https://ev.kde.org/</a></p> <p>A KDE projektnek szüksége van pénzügyi támogatásra a megfelelő működéshez. A pénz elsősorban új tagok toborzásához és a forráskód kezeléséhez szükséges eszközökhöz kell. A további támogatásokat jogi támogatásra, konferenciák és találkozók szervezésére használjuk fel. Ha módjában áll, kérjük járuljon hozzá a projekt finanszírozásához az alább felsorolt módok egyikével: <a href=https://www.kde.org/community/donations/>https://www.kde.org/community/donations/</a>.</p> Előre is köszönjük a támogatását!</string>
|
||||
<string name="maintainer_and_developer">Karbantartó és fejlesztő</string>
|
||||
<string name="developer">Fejlesztő</string>
|
||||
<string name="apple_support">macOS támogatás, munka az iOS támogatáson</string>
|
||||
<string name="bug_fixes_and_general_improvements">Hibajavítások és általános fejlesztések</string>
|
||||
<string name="samoilenko_yuri_task">SFTP implementáció, hibajavítások és általános fejlesztések</string>
|
||||
<string name="aniket_kumar_task">SMS bővítmény továbbfejlesztése</string>
|
||||
<string name="alex_fiestas_task">Névjegyek bővítmény továbbfejlesztése</string>
|
||||
<string name="maxim_leshchenko_task">Fejlesztések a felhasználói felületen, és a névjegy oldal</string>
|
||||
<string name="holger_kaelberer_task">Távoli billentyűzet bővítmény és hibajavítások</string>
|
||||
<string name="saikrishna_arcot_task">Támogatás a billentyűzet használatához a távoli bement bővítményben, hibajavítások és általános fejlesztések</string>
|
||||
<string name="everyone_else">Mindenki más, aki hozzájárult a KDE Connect fejlesztéséhez az évek alatt</string>
|
||||
</resources>
|
||||
|
@@ -1,37 +1,11 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<resources>
|
||||
<string name="kde_connect">KDE Connect</string>
|
||||
<string name="manifest_label_share">Invia a dispositivo</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 navigar 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="pref_plugin_ping_desc">Invia e recipe pings</string>
|
||||
<string name="pref_plugin_receive_notifications">Recipe notificationes</string>
|
||||
<string name="pref_plugin_sharereceiver">Comparti e recipe</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">
|
||||
@@ -39,46 +13,26 @@
|
||||
<item>Above Slowest</item>
|
||||
<item>Predefinite</item>
|
||||
<item>Above Default</item>
|
||||
<item>le Plus veloce</item>
|
||||
<item>Fastest</item>
|
||||
</string-array>
|
||||
<string-array name="mousepad_acceleration_profile_entries">
|
||||
<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="sendkeystrokes_sent_text">"Inviate %1$s a dispositivo %2$s"</string>
|
||||
<string name="view_status_title">Stato</string>
|
||||
<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>
|
||||
<string name="mpris_next">Proxime</string>
|
||||
<string name="mpris_loop">Anella</string>
|
||||
<string name="mpris_shuffle">Shuffle (miscer)</string>
|
||||
<string name="mpris_volume">Volumine</string>
|
||||
<string-array name="mpris_time_entries">
|
||||
<item>10 secundas</item>
|
||||
@@ -87,55 +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="sftp_camera">Photos de camera</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="pref_plugin_systemvolume">Volumine de systema</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_dark_mode">Thema obscur</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>
|
||||
@@ -145,28 +57,12 @@
|
||||
</string-array>
|
||||
<string-array name="theme_list">
|
||||
<item>Set by Battery Saver</item>
|
||||
<item>Legier</item>
|
||||
<item>Obscur</item>
|
||||
<item>Light</item>
|
||||
<item>Dark</item>
|
||||
</string-array>
|
||||
<string-array name="theme_list_v28">
|
||||
<item>Predefinite de systema</item>
|
||||
<item>Legier</item>
|
||||
<item>Obscur</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>
|
||||
<string name="website">Sito Web</string>
|
||||
<string name="about">A proposito</string>
|
||||
<string name="authors">Autores</string>
|
||||
<string name="thanks_to">Gratias a</string>
|
||||
<string name="about_kde">A proposio de KDE</string>
|
||||
<string name="kde_be_free">KDE- Vos Sia Libere!</string>
|
||||
<string name="kde">KDE</string>
|
||||
<string name="rise_down">Leva a basso</string>
|
||||
<string name="maintainer_and_developer">Mantenitor e developpator</string>
|
||||
<string name="developer">Disveloppator</string>
|
||||
<string name="bug_fixes_and_general_improvements">Fixationes de bug e melioramentos general</string>
|
||||
<string name="everyone_else">Alcun altere qui ha contribuite a KDE Connect durante le annos</string>
|
||||
</resources>
|
||||
|
@@ -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>
|
||||
|
@@ -1,7 +1,6 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<resources>
|
||||
<string name="kde_connect">KDE Connect</string>
|
||||
<string name="manifest_label_share">Invia al dispositivo</string>
|
||||
<string name="foreground_notification_no_devices">Non connesso ad alcun dispositivo</string>
|
||||
<string name="foreground_notification_devices">Connesso a: %s</string>
|
||||
<string name="foreground_notification_send_clipboard">Invia appunti</string>
|
||||
@@ -9,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>
|
||||
@@ -77,26 +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 %1$s al dispositivo %2$s</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="view_status_title">Stato</string>
|
||||
<string name="battery_status_format">Batteria: %d%%</string>
|
||||
<string name="battery_status_low_format">Batteria: %d%% livello basso</string>
|
||||
<string name="battery_status_charging_format">Batteria: %d%% in carica</string>
|
||||
<string name="battery_status_unknown">Informazioni sulla batteria non disponibili</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>
|
||||
@@ -112,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">
|
||||
@@ -166,8 +143,6 @@
|
||||
<string name="mpris_rew">Riavvolgi</string>
|
||||
<string name="mpris_ff">Avanti veloce</string>
|
||||
<string name="mpris_next">Successivo</string>
|
||||
<string name="mpris_loop">Cicla</string>
|
||||
<string name="mpris_shuffle">Mescola</string>
|
||||
<string name="mpris_volume">Volume</string>
|
||||
<string name="mpris_time_settings_title">Pulsanti di avanzamento/riavvolgimento</string>
|
||||
<string name="mpris_time_settings_summary">Regola l\'ora per avanzare rapidamente o riavvolgere in caso di pressione</string>
|
||||
@@ -251,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>
|
||||
@@ -276,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>
|
||||
@@ -331,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>
|
||||
@@ -356,38 +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>
|
||||
<string name="website">Sito web</string>
|
||||
<string name="about">Informazioni</string>
|
||||
<string name="authors">Autori</string>
|
||||
<string name="thanks_to">Ringraziamenti</string>
|
||||
<string name="easter_egg">Uovo di Pasqua</string>
|
||||
<string name="email_contributor">Indirizzo email del collaboratore\n%s</string>
|
||||
<string name="visit_contributors_homepage">Visita la pagina web del collaboratore\n%s</string>
|
||||
<string name="version">Versione %s</string>
|
||||
<string name="about_kde">Informazioni su KDE</string>
|
||||
<string name="kde_be_free">KDE - Vivi libero!</string>
|
||||
<string name="kde">KDE</string>
|
||||
<string name="konqi">Konqi</string>
|
||||
<string name="rise_up">Alza</string>
|
||||
<string name="rise_down">Abbassa</string>
|
||||
<string name="app_description">Applicazione multipiattaforma che consente ai tuoi dispositivi di comunicare (ad esempio, il tuo telefono e il tuo computer)</string>
|
||||
<string name="about_kde_about"><h1>Informazioni</h1> <p>KDE è una comunità mondiale di ingegneri del software, artisti, scrittori, traduttori e creatori che si impegnano a sviluppare <a href=https://www.gnu.org/philosophy/free-sw.html>software libero</a>. KDE produce l\'ambiente desktop Plasma, centinaia di applicazioni e le numerose librerie software che le supportano.</p> <p>KDE è un\'impresa cooperativa: nessuna singola entità ne controlla la direzione o i prodotti. Invece, lavoriamo insieme per raggiungere l\'obiettivo comune di costruire il miglior software libero del mondo. Tutti sono invitati a <a href=https://community.kde.org/Get_Involved>unirsi e contribuire</a> a KDE, incluso te.</p> Visita <a href=https://www.kde.org/>https://www.kde.org/</a> per ulteriori informazioni sulla comunità KDE e sul software che produciamo.</string>
|
||||
<string name="about_kde_report_bugs_or_wishes"><h1>Segnala bug o desideri</h1> <p>Il software può sempre essere migliorato e il team di KDE è pronto a farlo. Tuttavia, tu - l\'utente - devi dirci quando qualcosa non funziona come previsto o potrebbe essere fatto meglio.</p> <p>KDE ha un sistema di tracciamento dei bug. Visita <a href=https://bugs.kde.org/>https://bugs.kde.org/</a> oppure utilizza il pulsante «Segnala bug» dalla schermata delle informazioni per segnalare i bug.</p> Se hai un suggerimento per il miglioramento, puoi utilizzare il sistema di tracciamento dei bug per registrare il tuo desiderio. Assicurati di utilizzare «Wishlist» per il campo Severity.</string>
|
||||
<string name="about_kde_join_kde"><h1>Unisciti a KDE</h1> <p>Non devi essere uno sviluppatore di software per essere un membro della squadra di KDE. Puoi unirti ai gruppi nazionali che traducono le interfacce dei programmi. Puoi fornire grafica, temi, suoni e documentazione migliorata. Decidi tu!</p> <p>Visita <a href=https://community.kde.org/Get_Involved>https://community.kde.org/Get_Involved</a> per informazioni su alcuni progetti a cui puoi partecipare.</p> Se hai bisogno di ulteriori informazioni o documentazione, visita <a href=https://techbase.kde.org/>https://techbase.kde.org/</a> ti fornirà ciò di cui hai bisogno.</string>
|
||||
<string name="about_kde_support_kde"><h1>Supporta KDE&lt/h1> <p>Il software KDE è e sarà sempre disponibile gratuitamente, tuttavia la sua creazione non è gratuita.</p> <p>Per supportare lo sviluppo, la comunità KDE ha dato vita a KDE e.V., un\'organizzazione senza scopo di lucro fondata legalmente in Germania. KDE e.V. rappresenta la comunità KDE nelle questioni legali e finanziarie. Vedi <a href=https://ev.kde.org/>https://ev.kde.org/</a> per informazioni su KDE e.V.</p> <p>KDE beneficia di molti tipi di contributi, inclusi quelli finanziari. Usiamo i fondi per rimborsare i membri e altri per le spese che sostengono quando contribuiscono. Ulteriori fondi sono utilizzati per il supporto legale e l\'organizzazione di conferenze e riunioni.</p> <p>Vorremmo incoraggiarti a sostenere i nostri sforzi con una donazione finanziaria, utilizzando uno dei modi descritti in <a href=https://www.kde.org/community/donations/>https://www.kde.org/community/donations/</a>.</p> Grazie in anticipo per il tuo supporto.</string>
|
||||
<string name="maintainer_and_developer">Responsabile e sviluppatore</string>
|
||||
<string name="developer">Sviluppatore</string>
|
||||
<string name="apple_support">Supporto macOS. Lavorazione supporto iOS</string>
|
||||
<string name="bug_fixes_and_general_improvements">Correzione bug e miglioramenti generali</string>
|
||||
<string name="samoilenko_yuri_task">Implementazione SFTP, correzioni di bug e miglioramenti generali</string>
|
||||
<string name="aniket_kumar_task">Miglioramenti all\'estensione SMS</string>
|
||||
<string name="alex_fiestas_task">Miglioramenti all\'estensione dei contatti</string>
|
||||
<string name="maxim_leshchenko_task">Miglioramenti all\'interfaccia utente e questa pagina informativa</string>
|
||||
<string name="holger_kaelberer_task">Estensione della tastiera remota e correzioni di bug</string>
|
||||
<string name="saikrishna_arcot_task">Supporto per l\'utilizzo della tastiera nell\'estensione di inserimento remoto, correzioni di bug e miglioramenti generali</string>
|
||||
<string name="everyone_else">Tutti gli altri che hanno contribuito a KDE Connect nel corso degli anni</string>
|
||||
</resources>
|
||||
|
@@ -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>
|
||||
|
@@ -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>
|
||||
|
@@ -1,7 +1,6 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<resources>
|
||||
<string name="kde_connect">KDE Connect</string>
|
||||
<string name="manifest_label_share">장치로 보내기</string>
|
||||
<string name="foreground_notification_no_devices">연결된 장치 없음</string>
|
||||
<string name="foreground_notification_devices">연결됨: %s</string>
|
||||
<string name="foreground_notification_send_clipboard">클립보드 보내기</string>
|
||||
@@ -9,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>
|
||||
@@ -77,26 +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">%1$s을(를) %2$s 장치로 보냄</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="view_status_title">상태</string>
|
||||
<string name="battery_status_format">배터리: %d%%</string>
|
||||
<string name="battery_status_low_format">배터리: %d%% 배터리 부족</string>
|
||||
<string name="battery_status_charging_format">배터리: %d%% 충전 중</string>
|
||||
<string name="battery_status_unknown">배터리 정보를 사용할 수 없음</string>
|
||||
<string name="category_connected_devices">연결된 장치</string>
|
||||
<string name="category_not_paired_devices">사용 가능한 장치</string>
|
||||
<string name="category_remembered_devices">기억하는 장치</string>
|
||||
@@ -112,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">
|
||||
@@ -158,8 +135,6 @@
|
||||
<string name="mpris_rew">되감기</string>
|
||||
<string name="mpris_ff">빨리 감기</string>
|
||||
<string name="mpris_next">다음</string>
|
||||
<string name="mpris_loop">반복</string>
|
||||
<string name="mpris_shuffle">무순서 재생</string>
|
||||
<string name="mpris_volume">음량</string>
|
||||
<string name="mpris_time_settings_title">되감기/빨리감기 단추</string>
|
||||
<string name="mpris_time_settings_summary">눌렀을 때 되감거나 빨리 감을 시간 조정</string>
|
||||
@@ -230,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>
|
||||
@@ -243,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">데스크톱에서 문자 메시지를 읽고 보내려면 문자 메시지 접근 권한이 필요합니다</string>
|
||||
<string name="telephony_permission_explanation">데스크톱에서 통화와 문자 메시지를 보려면 통화 기록 및 휴대폰 상태 접근 권한이 필요합니다</string>
|
||||
<string name="telephony_optional_permission_explanation">전화번호 대신 연락처에 등록된 이름을 보려면 주소록 접근 권한이 필요합니다</string>
|
||||
@@ -268,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>
|
||||
@@ -323,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">
|
||||
@@ -343,39 +308,4 @@
|
||||
<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>
|
||||
<string name="website">웹 사이트</string>
|
||||
<string name="about">정보</string>
|
||||
<string name="authors">작성자</string>
|
||||
<string name="thanks_to">고마운 분</string>
|
||||
<string name="easter_egg">이스터 에그</string>
|
||||
<string name="email_contributor">이메일 보내기\n%s</string>
|
||||
<string name="visit_contributors_homepage">기여자의 홈페이지 방문하기\n%s</string>
|
||||
<string name="version">버전 %s</string>
|
||||
<string name="about_kde">KDE 정보</string>
|
||||
<string name="kde_be_free">KDE - 자유롭게!</string>
|
||||
<string name="kde">KDE</string>
|
||||
<string name="konqi">Konqi</string>
|
||||
<string name="rise_up">위로 올리기</string>
|
||||
<string name="rise_down">아래로 내리기</string>
|
||||
<string name="app_description">장치간 통신을 지원하는 멀티 플랫폼 앱(예: 휴대폰과 컴퓨터)</string>
|
||||
<string name="maintainer_and_developer">관리자 및 개발자</string>
|
||||
<string name="developer">개발자</string>
|
||||
<string name="apple_support">macOS 지원. iOS 지원 작업 중</string>
|
||||
<string name="bug_fixes_and_general_improvements">버그 수정과 개선</string>
|
||||
<string name="samoilenko_yuri_task">SFTP 구현, 버그 수정과 개선</string>
|
||||
<string name="aniket_kumar_task">SMS 플러그인 개선</string>
|
||||
<string name="alex_fiestas_task">연락처 플러그인 개선</string>
|
||||
<string name="maxim_leshchenko_task">UI 개선과 정보 페이지</string>
|
||||
<string name="holger_kaelberer_task">원격 키보드 플러그인과 버그 수정</string>
|
||||
<string name="saikrishna_arcot_task">원격 입력 플러그인에서 키보드 사용 지원, 버그 수정과 개선</string>
|
||||
<string name="everyone_else">그 외 오랫동안 KDE Connect에 기여한 사람들</string>
|
||||
</resources>
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user