Compare commits

...
14 Commits
Author SHA1 Message Date
Markus Fisch f2df364840 Advance version number to 1.42.0 2021-05-24 22:18:26 +02:00
Markus Fisch 5740b43568 Add a setting to pick a default search engine
To open unknown data with.
2021-05-24 22:12:13 +02:00
GazandGitHub b384b99b01 Update zh-TW(Traditional Chinese) Translation 2021-05-23 12:21:27 +02:00
Heimen StoffelsandGitHub 6affa4ce25 Update Dutch translation 2021-05-18 18:40:05 +02:00
Markus Fisch 455d329fff Remove resolveActivity() for opening content
Because on Android 11+ resolveActivity() can no longer be used
to query if there's an app that can handle the intent for privacy
reasons.
2021-05-07 22:15:38 +02:00
Markus Fisch 792be87283 Advance version number to 1.41.1 2021-05-06 23:01:49 +02:00
Markus Fisch 381e10bddc Ignore exceptions in MultiFormatReader.decode()
Usually it's bad practice to blindly catch *all* exceptions
because this can hide problems we want to know about.

But since ZXing has some errors (like all software) and I don't
want this app to break in the hands of my users, which won't
see the stack trace anyway, it's better to just catch all
exceptions that may happen in MultiFormatReader.decode().
2021-05-06 17:19:49 +02:00
Markus Fisch 220d1b9d4c Remove useless context argument
The argument is never used except for calling the function again.
A leftover from an earlier implementation.
2021-05-06 17:10:00 +02:00
Markus Fisch 020cd2c192 Update tools and gradle version
And migrate from jcenter() back to mavenCentral().
2021-05-05 20:50:50 +02:00
OymateandGitHub e8766a0fd1 Update Bengali translation 2021-05-02 13:31:28 +02:00
yzqzssandGitHub 69c6d1324e Update Simplified Chinese (Zh-rCN) 2021-05-01 19:50:13 +02:00
Markus Fisch 2dd0c48225 Format comments like sentences
Makes reading multiline comments easier.
2021-04-27 19:59:21 +02:00
Markus Fisch faa536274b Update build tools 2021-04-27 19:58:31 +02:00
Markus Fisch 0a944f9fb8 Add latest changelog for F-Droid 2021-04-13 19:47:59 +02:00
47 changed files with 445 additions and 351 deletions
+9
View File
@@ -1,5 +1,14 @@
# Change Log
## 1.42.0
* Add a setting to pick a default search engine
* Update Traditional Chinese
* Update Dutch translation
## 1.41.1
* Update Bengali translation
* Update Simplified Chinese
## 1.41.0
* Use cropping limiter by default for new installations
* Truncate all toasts with strings from the outside
+2 -2
View File
@@ -9,8 +9,8 @@ android {
minSdkVersion 9
targetSdkVersion sdk_version
versionCode 80
versionName '1.41.0'
versionCode 82
versionName '1.42.0'
// it's recommended to set this value to the lowest API level
// able to provide all the functionality
@@ -7,8 +7,7 @@ import de.markusfisch.android.binaryeye.actions.IAction
import de.markusfisch.android.binaryeye.app.alertDialog
import de.markusfisch.android.binaryeye.app.parseAndNormalizeUri
import de.markusfisch.android.binaryeye.app.prefs
import de.markusfisch.android.binaryeye.content.execShareIntent
import de.markusfisch.android.binaryeye.widget.toast
import de.markusfisch.android.binaryeye.content.startIntent
import java.net.URLEncoder
object OpenOrSearchAction : IAction {
@@ -18,36 +17,36 @@ object OpenOrSearchAction : IAction {
override fun canExecuteOn(data: ByteArray): Boolean = false
override suspend fun execute(context: Context, data: ByteArray) {
val intent = openUri(context, String(data)) ?: return
context.execShareIntent(intent)
view(context, String(data), true)
}
private suspend fun openUri(
context: Context,
data: String,
search: Boolean = true
): Intent? {
val uri = parseAndNormalizeUri(data)
val intent = Intent(Intent.ACTION_VIEW, uri)
return when {
// It's okay to use `resolveActivity()` at API level 30+ here
// because ACTION_VIEW is defined in `<queries>` in the Manifest.
intent.resolveActivity(context.packageManager) != null -> intent
search -> getSearchIntent(context, data)
else -> {
context.toast(R.string.cannot_resolve_action)
null
}
private suspend fun view(context: Context, s: String, search: Boolean) {
val intent = Intent(Intent.ACTION_VIEW, parseAndNormalizeUri(s))
if (!context.startIntent(intent) && search) {
openSearch(context, s)
}
}
private suspend fun getSearchIntent(context: Context, query: String): Intent? {
private suspend fun openSearch(context: Context, query: String) {
val defaultSearchUrl = prefs.defaultSearchUrl
if (defaultSearchUrl.isNotEmpty()) {
view(
context,
defaultSearchUrl + URLEncoder.encode(query, "utf-8"),
false
)
return
}
val names = context.resources.getStringArray(
R.array.search_engines_names
).toMutableList()
val urls = context.resources.getStringArray(
R.array.search_engines_values
).toMutableList()
// Remove the "Always ask" entry. The arrays search_engines_*
// are used in the preferences too.
names.removeFirst()
urls.removeFirst()
if (prefs.openWithUrl.isNotEmpty()) {
names.add(prefs.openWithUrl)
urls.add(prefs.openWithUrl)
@@ -57,7 +56,7 @@ object OpenOrSearchAction : IAction {
setItems(names.toTypedArray()) { _, which ->
resume(urls[which] + URLEncoder.encode(query, "utf-8"))
}
} ?: return null
return openUri(context, queryUri, false)
} ?: return
view(context, queryUri, false)
}
}
@@ -56,7 +56,8 @@ object VEventAction : IntentAction() {
}
}
@SuppressLint("SimpleDateFormat") // we definitely don't wan't the local format
// We definitely don't wan't the local format.
@SuppressLint("SimpleDateFormat")
private val dateFormats = listOf(
SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'"),
SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss"),
@@ -45,7 +45,7 @@ object WifiConnector {
invoke(parsedData.password)
}
return if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q) {
// WifiConfiguration is deprecated in Android Q
// WifiConfiguration is deprecated in Android Q.
@Suppress("DEPRECATION")
WifiConfiguration().apply(parsedData)
} else {
@@ -58,7 +58,7 @@ object WifiConnector {
Context.WIFI_SERVICE
) as WifiManager
return if (Build.VERSION.SDK_INT < Build.VERSION_CODES.Q) {
// WifiConfiguration is deprecated in Android Q
// WifiConfiguration is deprecated in Android Q.
@Suppress("DEPRECATION")
val wifiConfig = config as WifiConfiguration
if (wifiManager.enableWifi() &&
@@ -72,7 +72,7 @@ object WifiConnector {
} else {
val suggestion = (config as WifiNetworkSuggestion.Builder).build()
val suggestions = listOf(suggestion)
// remove previous conflicting network suggestion
// Remove previous conflicting network suggestion.
wifiManager.removeNetworkSuggestions(suggestions)
val result = wifiManager.addNetworkSuggestions(suggestions)
if (result == WifiManager.STATUS_NETWORK_SUGGESTIONS_SUCCESS) {
@@ -84,11 +84,11 @@ object WifiConnector {
}
internal fun parseMap(string: String): Map<String, String>? {
// normally those codes should have the last semicolon, but many
// generators don't add it
// Normally those codes should have the last semicolon, but many
// generators don't add it.
val wifiRegex = """^WIFI:((?:.+?:(?:[^\\;]|\\.)*;)+);?$""".toRegex()
// should be: ^(.+):((?:[^\\;,":]|\\.)*);$ but allows unescaped , "
// and : because many QR Code creators don't escape properly
// Should be: ^(.+):((?:[^\\;,":]|\\.)*);$ but allows unescaped , "
// and : because many QR Code creators don't escape properly.
val pairRegex = """(.+?):((?:[^\\;]|\\.)*);""".toRegex()
return wifiRegex.matchEntire(
string
@@ -102,7 +102,7 @@ object WifiConnector {
internal class SimpleDataAccessor private constructor(
private val inputMap: Map<String, String>
) {
// this should be private but because of testing it isn't possible
// This should be private but because of testing it isn't possible.
internal val ssid: String
get() = inputMap.getValue("S").unescape
internal val securityType: String
@@ -212,7 +212,7 @@ object WifiConnector {
return this.applyCommon(data)?.applySecurity(data)
}
// WifiConfiguration is deprecated in Android Q
// WifiConfiguration is deprecated in Android Q.
@Suppress("DEPRECATION")
private fun WifiConfiguration.apply(
data: SimpleDataAccessor
@@ -274,7 +274,7 @@ object WifiConnector {
allowedAuthAlgorithms.set(WifiConfiguration.AuthAlgorithm.OPEN)
allowedProtocols.set(WifiConfiguration.Protocol.RSN) // WPA2
allowedKeyManagement.set(WifiConfiguration.KeyMgmt.WPA_EAP)
@Suppress("DEPRECATION") // TKIP is insecure and has bad performance
@Suppress("DEPRECATION") // TKIP is insecure and has bad performance.
allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.TKIP)
allowedPairwiseCiphers.set(WifiConfiguration.PairwiseCipher.CCMP)
allowedGroupCiphers.set(WifiConfiguration.GroupCipher.TKIP)
@@ -300,8 +300,8 @@ object WifiConnector {
}
}
// keep possibility of wrongly unescaped \ by explicitly searching
// for special chars
// Keep possibility of wrongly unescaped \ by explicitly searching
// for special chars.
private val escapedRegex = """\\([\\;,":])""".toRegex()
private val String.unescape: String
get() = this.replace(escapedRegex) { escaped ->
@@ -327,12 +327,12 @@ private fun String.isHex() = length == 64 && matches(hexRegex)
private fun WifiManager.enableWifi(): Boolean {
// setWifiEnabled() will always return false for Android Q
// because Q doesn't allow apps to enable/disable Wi-Fi anymore
// because Q doesn't allow apps to enable/disable Wi-Fi anymore.
@Suppress("DEPRECATION")
return isWifiEnabled || setWifiEnabled(true)
}
// WifiConfiguration is deprecated in Android Q
// WifiConfiguration is deprecated in Android Q.
@Suppress("DEPRECATION")
private fun WifiManager.removeOldNetwork(
wifiConfig: WifiConfiguration
@@ -345,13 +345,13 @@ private fun WifiManager.removeOldNetwork(
removeNetwork(it)
}
} catch (e: SecurityException) {
// the user didn't allow ACCESS_FINE_LOCATION which is
// required to access configuredNetworks and that's fine
// The user didn't allow ACCESS_FINE_LOCATION which is
// required to access configuredNetworks and that's fine.
}
return true
}
// WifiConfiguration is deprecated in Android Q
// WifiConfiguration is deprecated in Android Q.
@Suppress("DEPRECATION")
private fun WifiManager.enableNewNetwork(
wifiConfig: WifiConfiguration
@@ -119,7 +119,8 @@ class CameraActivity : AppCompatActivity() {
super.onCreate(state)
setContentView(R.layout.activity_camera)
// necessary to get the right translation after setting a custom locale
// Necessary to get the right translation after setting a
// custom locale.
setTitle(R.string.scan_code)
rs = RenderScript.create(this)
@@ -193,7 +194,7 @@ class CameraActivity : AppCompatActivity() {
private fun closeCamera() {
cameraView.close()
// closing the camera will also shut off the flash
// Closing the camera will also shut off the flash.
flash = false
}
@@ -214,8 +215,8 @@ class CameraActivity : AppCompatActivity() {
}
override fun dispatchTouchEvent(ev: MotionEvent): Boolean {
// always give crop handle precedence over other controls
// because it can easily overlap and would then be inaccessible
// Always give crop handle precedence over other controls
// because it can easily overlap and would then be inaccessible.
if (detectorView.onTouchEvent(ev)) {
return true
}
@@ -329,8 +330,8 @@ class CameraActivity : AppCompatActivity() {
}
}
MotionEvent.ACTION_UP -> {
// stop calling focusTo() as soon as it returns false
// to avoid throwing and catching future exceptions
// Stop calling focusTo() as soon as it returns false
// to avoid throwing and catching future exceptions.
if (focus) {
focus = cameraView.focusTo(v, event.x, event.y)
if (focus) {
@@ -378,9 +379,9 @@ class CameraActivity : AppCompatActivity() {
}
override fun onCameraReady(camera: Camera) {
// reset preprocessor to make sure it always fits the current
// frame orientation; important for landscape to landscape
// orientation changes
// Reset preprocessor to make sure it always fits the current
// frame orientation. Important for landscape to landscape
// orientation changes.
resetPreProcessor()
val frameWidth = cameraView.frameWidth
val frameHeight = cameraView.frameHeight
@@ -440,7 +441,7 @@ class CameraActivity : AppCompatActivity() {
params.zoom = zoom
camera.parameters = params
} catch (e: RuntimeException) {
// ignore; there's nothing we can do
// Ignore. There's nothing we can do.
}
}
}
@@ -511,7 +512,7 @@ class CameraActivity : AppCompatActivity() {
camera.parameters = parameters
flash = flash xor true
} catch (e: RuntimeException) {
// ignore; there's nothing we can do
// Ignore. There's nothing we can do.
}
}
}
@@ -555,9 +556,9 @@ class CameraActivity : AppCompatActivity() {
zxing.decode(frameData, w, h, invert)
} catch (e: RSRuntimeException) {
prefs.forceCompat = prefs.forceCompat xor true
// now the only option is to restart the app because
// Now the only option is to restart the app because
// RenderScript.forceCompat() needs to be called before
// RenderScript is initialized
// RenderScript is initialized.
restartApp(this)
null
}
@@ -611,12 +612,12 @@ class CameraActivity : AppCompatActivity() {
) {
null
} else {
// map ROI in detectorView to cameraView
// Map ROI in detectorView to cameraView.
val previewRect = cameraView.previewRect
// previewRect may be larger than the screen (and thus as the
// detectorView) in which case its left and/or top coordinate
// will be negative which must then be clamped to the
// screen/DetectorView
// screen/DetectorView.
val previewLeft = max(0, previewRect.left)
val previewTop = max(0, previewRect.top)
val previewRoi = Rect(
@@ -633,8 +634,8 @@ class CameraActivity : AppCompatActivity() {
previewRoi.right.toFloat() / previewRectWidth,
previewRoi.bottom.toFloat() / previewRectHeight
)
// since the ROI is always centered and symmetric, we don't
// need to distinguish between 0 and 180 or 90 and 270 degree
// Since the ROI is always centered and symmetric, we don't
// need to distinguish between 0 and 180 or 90 and 270 degree.
if (isPortrait(frameOrientation)) {
Rect(
(normalizedRoi.top * frameWidth.toFloat()).roundToInt(),
@@ -654,7 +655,7 @@ class CameraActivity : AppCompatActivity() {
}
private fun postResult(result: Result) {
// get mapping for the current rotate value
// Get mapping for the current rotate value.
val mapping = getMapping()
cameraView.post {
val rp = result.resultPoints
@@ -54,7 +54,8 @@ class PickActivity : AppCompatActivity() {
super.onCreate(state)
setContentView(R.layout.activity_pick)
// necessary to get the right translation after setting a custom locale
// Necessary to get the right translation after setting a custom
// locale.
setTitle(R.string.pick_code_to_scan)
zxing.updateHints(true)
@@ -9,9 +9,9 @@ class SplashActivity : AppCompatActivity() {
override fun onCreate(state: Bundle?) {
super.onCreate(state)
// it's important _not_ to inflate a layout file here
// It's important _not_ to inflate a layout file here
// because that would happen after the app is fully
// initialized what is too late
// initialized what is too late.
setRestartCount(intent)
startActivity(Intent(applicationContext, CameraActivity::class.java))
@@ -75,7 +75,7 @@ class ScansAdapter(context: Context, cursor: Cursor) :
icon, 0, 0, 0
)
holder.formatView.text = prettifyFormatName(cursor.getString(formatIndex))
// view.isSelected needs to be put on the queue to work
// view.isSelected needs to be put on the queue to work.
val selected = cursor.getLong(idIndex) == selectedScanId
view.post {
view.isSelected = selected
@@ -12,6 +12,12 @@ import de.markusfisch.android.binaryeye.widget.toast
import java.io.File
fun Context.execShareIntent(intent: Intent) {
if (!startIntent(intent)) {
toast(R.string.cannot_resolve_action)
}
}
fun Context.startIntent(intent: Intent) = try {
// Avoid using `intent.resolveActivity()` at API level 30+ due
// to the new package visibility restrictions. In order for
// `resolveActivity()` to "see" another package, we would need
@@ -20,11 +26,10 @@ fun Context.execShareIntent(intent: Intent) {
// an exception if the Intent cannot be resolved, it's much easier
// and more robust to just try and catch that exception if
// necessary.
try {
startActivity(intent)
} catch (e: ActivityNotFoundException) {
toast(R.string.cannot_resolve_action)
}
startActivity(intent)
true
} catch (e: ActivityNotFoundException) {
false
}
fun shareText(context: Context, text: String, type: String = "text/plain") {
@@ -138,8 +138,12 @@ private fun getRawBytes(result: Result): ByteArray? {
for (seg in segments as Iterable<ByteArray>) {
bytes += seg
}
// byte segments can never be shorter than the text.
// Zxing cuts off content prefixes like "WIFI:"
// If the byte segments are shorter than the converted string, the
// content of the QR Code has been encoded with different encoding
// modes (e.g. some parts in alphanumeric, some in byte encoding).
// This is because Zxing only records byte segments for byte encoded
// parts. Please note the byte segments can actually be longer than
// the string because Zxing cuts off prefixes like "WIFI:".
return if (bytes.size >= result.text.length) bytes else null
}
@@ -93,7 +93,7 @@ class BarcodeFragment : Fragment() {
)
imageView.setImageBitmap(barcodeBitmap)
imageView.post {
// make sure to invoke this after ScalingImageView.onLayout()
// Make sure to invoke this after ScalingImageView.onLayout().
imageView.minWidth /= 2f
}
@@ -148,7 +148,7 @@ class BarcodeFragment : Fragment() {
.show()
}
// dialogs do not have a parent view
// Dialogs do not have a parent view.
@SuppressLint("InflateParams")
private fun askForFileNameAndSave(fileType: FileType) {
val ac = activity ?: return
@@ -224,7 +224,7 @@ class HistoryFragment : Fragment() {
true
}
R.id.export_history -> {
askToExportToFile(context)
askToExportToFile()
true
}
else -> super.onOptionsItemSelected(item)
@@ -265,7 +265,7 @@ class HistoryFragment : Fragment() {
View.GONE
}
cursor?.let { cursor ->
// close previous cursor
// Close previous cursor.
scansAdapter?.also { it.changeCursor(null) }
scansAdapter = ScansAdapter(ac, cursor)
listView.adapter = scansAdapter
@@ -298,7 +298,7 @@ class HistoryFragment : Fragment() {
DecodeFragment.newInstance(scan)
)
} catch (e: IllegalArgumentException) {
// ignore, can never happen
// Ignore, can never happen.
}
}
@@ -307,7 +307,7 @@ class HistoryFragment : Fragment() {
return cursor?.getString(cursor.getColumnIndex(Database.SCANS_NAME))
}
// dialogs don't have a parent layout
// Dialogs don't have a parent layout.
@SuppressLint("InflateParams")
private fun askForName(context: Context, id: Long, text: String?) {
val view = LayoutInflater.from(context).inflate(
@@ -360,11 +360,11 @@ class HistoryFragment : Fragment() {
.show()
}
private fun askToExportToFile(context: Context) {
private fun askToExportToFile() {
scope.launch {
val ac = activity ?: return@launch
progressView.useVisibility {
if (!hasWritePermission(ac) { askToExportToFile(context) }) {
if (!hasWritePermission(ac) { askToExportToFile() }) {
return@useVisibility
}
val options = context.resources.getStringArray(
@@ -98,6 +98,6 @@ private fun Activity.restartApp() {
}
startActivity(intent)
finish()
// restart to begin with an unmodified Locale to follow system settings
// Restart to begin with an unmodified Locale to follow system settings.
Runtime.getRuntime().exit(0)
}
@@ -72,7 +72,7 @@ data class Mapping(
}
fun map(points: Array<ResultPoint?>): List<Point> =
// because ZXing apparently returns null in this array sometimes
// Because ZXing apparently returns null in this array sometimes.
points.filterNotNull().map { map(it) }
private fun rotate(point: Point) = when (frameOrientation) {
@@ -7,7 +7,7 @@ import android.preference.PreferenceManager
class Preferences {
lateinit var preferences: SharedPreferences
var cropHandleX = -2 // -2 means set default roi
var cropHandleX = -2 // -2 means set default roi.
set(value) {
apply(CROP_HANDLE_X, value)
field = value
@@ -34,29 +34,29 @@ class Preferences {
}
var autoRotate = false
set(value) {
// immediately save this setting before it shouldn't change
// on the fly while scanning
// Immediately save this setting before it shouldn't change
// on the fly while scanning.
commit(AUTO_ROTATE, value)
field = value
}
var tryHarder = false
set(value) {
// immediately save this setting because it's only ever read
// before the camera is opened
// Immediately save this setting because it's only ever read
// before the camera is opened.
commit(TRY_HARDER, value)
field = value
}
var bulkMode = false
set(value) {
// immediately save this setting because it's only ever read
// before the camera is opened
// Immediately save this setting because it's only ever read
// before the camera is opened.
commit(BULK_MODE, value)
field = value
}
var showToastInBulkMode = true
set(value) {
// immediately save this setting because it's only ever read
// before the camera is opened
// Immediately save this setting because it's only ever read
// before the camera is opened.
commit(SHOW_TOAST_IN_BULK_MODE, value)
field = value
}
@@ -100,6 +100,11 @@ class Preferences {
apply(CLOSE_AUTOMATICALLY, value)
field = value
}
var defaultSearchUrl = ""
set(value) {
apply(DEFAULT_SEARCH_URL, value)
field = value
}
var openWithUrl: String = ""
set(value) {
apply(OPEN_WITH_URL, value)
@@ -127,8 +132,8 @@ class Preferences {
}
var forceCompat: Boolean = false
set(value) {
// since the app may be about to crash when forceCompat is set,
// it's necessary to `commit()` this synchronously
// Since the app may be about to crash when forceCompat is set,
// it's necessary to `commit()` this synchronously.
commit(FORCE_COMPAT, value)
field = value
}
@@ -177,6 +182,9 @@ class Preferences {
CLOSE_AUTOMATICALLY,
closeAutomatically
)
preferences.getString(DEFAULT_SEARCH_URL, defaultSearchUrl)?.also {
defaultSearchUrl = it
}
preferences.getString(OPEN_WITH_URL, openWithUrl)?.also {
openWithUrl = it
}
@@ -233,6 +241,7 @@ class Preferences {
const val SHOW_META_DATA = "show_meta_data"
const val SHOW_HEX_DUMP = "show_hex_dump"
const val CLOSE_AUTOMATICALLY = "close_automatically"
const val DEFAULT_SEARCH_URL = "default_search_url"
const val OPEN_WITH_URL = "open_with_url"
const val SEND_SCAN_URL = "send_scan_url"
const val SEND_SCAN_TYPE = "send_scan_type"
@@ -60,11 +60,11 @@ class Preprocessor(
outWidth = (roiWidth * SCALE_FACTOR).roundToInt()
outHeight = (roiHeight * SCALE_FACTOR).roundToInt()
// make sure the dimensions are always a multiple of 4
// Make sure the dimensions are always a multiple of 4.
outWidth -= outWidth % 4
outHeight -= outHeight % 4
// make sure the dimensions are always greater than 4
// Make sure the dimensions are always greater than 4.
outWidth = max(4, outWidth)
outHeight = max(4, outHeight)
} else {
@@ -130,7 +130,7 @@ class Preprocessor(
rotateScript._inWidth = t.x
rotateScript._inHeight = t.y
rotateScript.forEach_rotate90(
rotatedAlloc, // ignored in kernel, just to satisfy forEach
rotatedAlloc, // Ignored in kernel, just to satisfy forEach.
rotatedAlloc
)
rotatedAlloc?.copyTo(frame)
@@ -20,8 +20,8 @@ val systemBarListViewScrollListener = object : AbsListView.OnScrollListener {
visibleItemCount: Int,
totalItemCount: Int
) {
// give Android some time to settle down before running this,
// not putting it on the queue makes it only work sometimes
// Give Android some time to settle down before running this,
// not putting it on the queue makes it only work sometimes.
view.post {
val scrolled = firstVisibleItem > 0 ||
(totalItemCount > 0 && firstChildScrolled(view))
@@ -59,7 +59,7 @@ private fun lastChildOutOfView(listView: AbsListView): Boolean {
fun initSystemBars(activity: AppCompatActivity) {
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
// keeps the soft keyboard from repositioning the layout
// Keeps the soft keyboard from repositioning the layout.
val window = activity.window
window.setSoftInputMode(
WindowManager.LayoutParams.SOFT_INPUT_ADJUST_RESIZE
@@ -109,11 +109,11 @@ fun colorSystemAndToolBars(
}
activity.supportActionBar?.setBackgroundDrawable(
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
// avoid allocation on Honeycomb and better
// Avoid allocation on Honeycomb and better.
actionBarBackground.color = topColor
actionBarBackground
} else {
// ColorDrawable.setColor() doesn't exist pre Honeycomb
// ColorDrawable.setColor() doesn't exist pre Honeycomb.
ColorDrawable(topColor)
}
)
@@ -29,10 +29,10 @@ fun View.doOnApplyWindowInsets(f: (View, Rect) -> Unit) {
f(v, insetsWithToolbar(insets))
insets
}
// it's important to explicitly request the insets (again) in
// It's important to explicitly request the insets (again) in
// case the view was created in Fragment.onCreateView() because
// setOnApplyWindowInsetsListener() won't fire when the view
// isn't attached
// isn't attached.
requestApplyInsetsWhenAttached()
}
}
@@ -23,8 +23,8 @@ class ConfinedScrollView : ScrollView {
) {
super.onLayout(changed, left, top, right, bottom)
if (changed) {
// give Android some time to settle down before running this,
// not putting it on the queue makes it only work sometimes
// Give Android some time to settle down before running this,
// not putting it on the queue makes it only work sometimes.
post {
getChildAt(0)?.also { child ->
scrollable = height < child.height + paddingTop + paddingBottom
@@ -228,7 +228,7 @@ class DetectorView : View {
height - handleYRadius - paddingBottom - fabHeight
)
if (handlePos.x == -2) {
setHandleToDefaultRoi();
setHandleToDefaultRoi()
}
if (handleActive) {
updateClipRect()
@@ -258,7 +258,7 @@ class DetectorView : View {
if (minDist < 1) {
return
}
// canvas.clipRect() doesn't work reliably below KITKAT
// canvas.clipRect() doesn't work reliably below KITKAT.
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT) {
val radius = min(minDist / 2, cornerRadius).toFloat()
canvas.save()
@@ -113,7 +113,13 @@ class Zxing(possibleResultPoint: ResultPointCallback? = null) {
val bitmap = BinaryBitmap(HybridBinarizer(source))
return try {
multiFormatReader.decode(bitmap, hints)
} catch (e: ReaderException) {
} catch (e: Exception) {
// Usually it's bad practice to blindly catch *all* exceptions
// because this can hide problems we want to know about. But
// since ZXing has some errors (like all software) and I don't
// want this app to break in the hands of my users, which won't
// see the stack trace anyway, it's better to just catch all
// exceptions here and live on.
null
} finally {
multiFormatReader.reset()
+4 -2
View File
@@ -1,7 +1,7 @@
<resources>
<string name="no_camera_no_fun">এই অ্যাপ ক্যামেরা অনুমতি ছাড়া কোনো কাজের না। বিদায়।</string>
<string name="camera_error">ক্যামেরা পাওয়া যা্ছে না, পরে চেষ্টা করো</string>
<string name="scan_code">সংকেত থেকে পাঠোদ্ধার করো</string>
<string name="camera_error">ক্যামেরা পাওয়া যা্ছে না, পরে চেষ্টা করো</string>
<string name="scan_code">সংকেতে পাঠোদ্ধার</string>
<string name="compose_barcode">বারকোড বানাও</string>
<string name="decode_barcode">বারকোডের পাঠোদ্ধার</string>
<string name="content">তথ্য</string>
@@ -77,6 +77,8 @@
<string name="show_hex_dump_summary">পড়া তথ্যের ষড় সংকেত দেখাও</string>
<string name="close_automatically">অনুলিপি/ভাগ করার পরে পিছনে যাও</string>
<string name="close_automatically_summary">তথ্য অনুলিপি/ভাগ করার পরে স্বয়ংক্রিয়ভাবে পিছনে যাও।</string>
<string name="default_search_engine">Open unknown data in</string>
<string name="always_ask">Always ask</string>
<string name="open_with_url">অজানা ইউআরএল খুলো</string>
<string name="send_category">অন্যকে পাঠাও</string>
<string name="send_scan_url">প্রতিটি পাঠোদ্ধার ইউআরএল-এ পাঠাও</string>
+2
View File
@@ -78,6 +78,8 @@
<string name="show_hex_dump_summary">Zobrazí hex dump naskenovaného obsahu.</string>
<string name="close_automatically">Vrátit se po zkopírování/sdílení</string>
<string name="close_automatically_summary">Po zkopírovaní či sdílení se automaticky vrátí na skenovací obrazovku.</string>
<string name="default_search_engine">Open unknown data in</string>
<string name="always_ask">Always ask</string>
<string name="open_with_url">Otevřít neznámá data pomocí URL</string>
<string name="send_category">Přesměrování</string>
<string name="send_scan_url">Posílat každý sken na URL</string>
+2
View File
@@ -77,6 +77,8 @@
<string name="show_hex_dump_summary">Zeigt einen Hexdump des eingelesenen Inhalts an.</string>
<string name="close_automatically">Automatisch zurückkehren</string>
<string name="close_automatically_summary">Nach dem Kopieren/Teilen automatisch zum Scanbildschirm zurückkehren.</string>
<string name="default_search_engine">Unbekannte Daten öffnen mit</string>
<string name="always_ask">Immer fragen</string>
<string name="open_with_url">URL zum Öffnen unbekannter Daten</string>
<string name="send_category">Weiterleitung</string>
<string name="send_scan_url">URL die für jeden Scan aufgerufen werden soll</string>
+2
View File
@@ -77,6 +77,8 @@
<string name="show_hex_dump_summary">Mostrar un dump hexadecimal del contenido escaneado.</string>
<string name="close_automatically">Retroceder luego de Copiar/Compartir</string>
<string name="close_automatically_summary">Regresar automáticamente a la pantalla de escaneo luego de copiar o compartir el contenido leído.</string>
<string name="default_search_engine">Open unknown data in</string>
<string name="always_ask">Always ask</string>
<string name="open_with_url">Abrir datos desconocidos con la URL</string>
<string name="send_category">Reenvío</string>
<string name="send_scan_url">Enviar todo escaneo a la URL</string>
+2
View File
@@ -77,6 +77,8 @@
<string name="show_hex_dump_summary">Affiche un dump hexadécimal du contenu scanné.</string>
<string name="close_automatically">Revenir après une copie/partage</string>
<string name="close_automatically_summary">Revient automatiquement sur l\'écran de scan après avoir copié ou partagé le contenu lu.</string>
<string name="default_search_engine">Open unknown data in</string>
<string name="always_ask">Always ask</string>
<string name="open_with_url">Ouvrir des données inconnues avec lURL</string>
<string name="send_category">Transfert</string>
<string name="send_scan_url">Envoyer chaque scan vers une URL</string>
+2
View File
@@ -77,6 +77,8 @@
<string name="show_hex_dump_summary">A beolvasott tartalom hexakiírásának megjelenítése.</string>
<string name="close_automatically">Ugrás vissza másolás vagy megosztás után</string>
<string name="close_automatically_summary">Automatikus visszatérés a beolvasási képernyőre a beolvasott tartalom másolása vagy megosztása után.</string>
<string name="default_search_engine">Open unknown data in</string>
<string name="always_ask">Always ask</string>
<string name="open_with_url">Ismeretlen adat megnyitása URL-lel</string>
<string name="send_category">Továbbítás</string>
<string name="send_scan_url">Összes beolvasás küldése egy URL-re</string>
+2
View File
@@ -76,6 +76,8 @@
<string name="show_hex_dump_summary">Tampilkan hex dump dari konten hasil pemindaian.</string>
<string name="close_automatically">Go back after Copy/Share</string>
<string name="close_automatically_summary">Automatically return to the scan screen after copying or sharing the read contents.</string>
<string name="default_search_engine">Open unknown data in</string>
<string name="always_ask">Always ask</string>
<string name="open_with_url">Buka data tak dikenal dengan URL</string>
<string name="send_category">Penerusan</string>
<string name="send_scan_url">Kirim setiap pindaian ke URL</string>
+2
View File
@@ -77,6 +77,8 @@
<string name="show_hex_dump_summary">Mostra un dump esadecimale dei contenuti scansionati.</string>
<string name="close_automatically">Go back after Copy/Share</string>
<string name="close_automatically_summary">Automatically return to the scan screen after copying or sharing the read contents.</string>
<string name="default_search_engine">Open unknown data in</string>
<string name="always_ask">Always ask</string>
<string name="open_with_url">Apri dati sconosciuti con URL</string>
<string name="send_category">Inoltro</string>
<string name="send_scan_url">Invia ogni scansione ad un URL</string>
+2
View File
@@ -77,6 +77,8 @@
<string name="show_hex_dump_summary">スキャンされたコンテンツの16進数データを確認できるようにします。</string>
<string name="close_automatically">コピー/共有後に戻る</string>
<string name="close_automatically_summary">コンテンツをコピー/共有した後、自動的にスキャン画面に戻るようにします。</string>
<string name="default_search_engine">Open unknown data in</string>
<string name="always_ask">Always ask</string>
<string name="open_with_url">未知のデータを次のURLから開く</string>
<string name="send_category">転送</string>
<string name="send_scan_url">スキャンしたデータを次のURLから開く</string>
+2
View File
@@ -79,6 +79,8 @@
<string name="show_hex_dump_summary">სკანირებული შტრიხ-კოდის კონტენტის თექვსმეტობითი dump-ის ჩვენება.</string>
<string name="close_automatically">Go back after Copy/Share</string>
<string name="close_automatically_summary">Automatically return to the scan screen after copying or sharing the read contents.</string>
<string name="default_search_engine">Open unknown data in</string>
<string name="always_ask">Always ask</string>
<string name="open_with_url">უცნობი მონაცემების ამ ბმულის საშუალებით გახსნა</string>
<string name="send_category">გადაგზავნა</string>
<string name="send_scan_url">ყოველი სკანირებული შტრიხ-კოდის ბმულის საშუალებით გახსნა</string>
+108 -106
View File
@@ -1,136 +1,138 @@
<resources>
<string name="no_camera_no_fun">Deze app kan niet werken zonder cameratoegang. Tot ziens.</string>
<string name="camera_error">Kan camera niet openen; probeer het opnieuw.</string>
<string name="camera_error">De camera kan niet worden geopend. Probeer het opnieuw.</string>
<string name="scan_code">Scan een code</string>
<string name="compose_barcode">Scan een barcode</string>
<string name="decode_barcode">Barcode decoderen</string>
<string name="content">Inhoud</string>
<string name="binary_data">(binaire data)</string>
<plurals name="barcode_info">
<item quantity="one">%2$d character, %1$s</item>
<item quantity="other">%2$d characters, %1$s</item>
<item quantity="one">%2$d teken, %1$s</item>
<item quantity="other">%2$d tekens, %1$s</item>
</plurals>
<string name="error_correction_level">Error correction level</string>
<string name="error_correction_level_l" formatted="false">Low (~7&#37; correction)</string>
<string name="error_correction_level_m" formatted="false">Medium (~15&#37; correction)</string>
<string name="error_correction_level_q" formatted="false">Quartile (~25&#37; correction)</string>
<string name="error_correction_level_h" formatted="false">High (~30&#37; correction)</string>
<string name="issue_number">Issue number</string>
<string name="orientation">Orientation</string>
<string name="other_meta_data">Metadata</string>
<string name="pdf417_extra_metadata">PDF417 metadata</string>
<string name="possible_country">Possible country of manufacture</string>
<string name="suggested_price">Suggested price</string>
<string name="upc_ean_extension">UPC EAN extension</string>
<string name="toggle_flash">Flitslicht schakelen</string>
<string name="error_correction_level">Foutcorrectieniveau</string>
<string name="error_correction_level_l" formatted="false">Laag (~7&#37; correction)</string>
<string name="error_correction_level_m" formatted="false">Gemiddeld (~15&#37; correction)</string>
<string name="error_correction_level_q" formatted="false">Hoger (~25&#37; correction)</string>
<string name="error_correction_level_h" formatted="false">Hoog (~30&#37; correction)</string>
<string name="issue_number">Getal toekennen</string>
<string name="orientation">Oriëntatie</string>
<string name="other_meta_data">Metagegevens</string>
<string name="pdf417_extra_metadata">PDF417-metagegevens</string>
<string name="possible_country">Mogelijk land van herkomst</string>
<string name="suggested_price">Adviesprijs</string>
<string name="upc_ean_extension">UPC EAN-extensie</string>
<string name="toggle_flash">Flits aan/uit</string>
<string name="share">Delen</string>
<string name="share_as">Share as?</string>
<string name="share_as">Delen als?</string>
<string name="copy_to_clipboard">Kopiëren naar klembord</string>
<string name="copied_to_clipboard">Kopieer de inhoud naar het klembord</string>
<string name="copy_password">Copy password into clipboard</string>
<string name="copied_password_to_clipboard">Password copied to clipboard</string>
<string name="copied_to_clipboard">De inhoud is gekopieerd naar het klembord</string>
<string name="copy_password">Wachtwoord kopiëren naar klembord</string>
<string name="copied_password_to_clipboard">Het wachtwoord is gekopieerd naar het klembord</string>
<string name="open_url">URL openen</string>
<string name="cannot_resolve_action">Er is geen app aangetroffen die dit kan openen</string>
<string name="pick_search_engine">Een zoekmachine kiezen</string>
<string name="pick_search_engine">Zoekmachine kiezen</string>
<string name="format">Formaat</string>
<string name="size">Grootte, in pixels</string>
<string name="width_by_height">%1$d×%2$d</string>
<string name="input_content_here">Voer hier de inhoud in</string>
<string name="encode">CODEREN</string>
<string name="error_no_content">Inhoud ontbreekt</string>
<string name="error_encoding_barcode">Barcode kan niet gegenereerd worden</string>
<string name="error_no_content">De inhoud ontbreekt</string>
<string name="error_encoding_barcode">De barcode kan niet worden gegenereerd</string>
<string name="view_barcode">Barcode bekijken</string>
<string name="info">Informatie</string>
<string name="switch_camera">Camera wisselen</string>
<string name="bulk_mode">Scan continuously</string>
<string name="bulk_mode_summary">Always start scanning continuously.</string>
<string name="switch_camera">Andere camera</string>
<string name="bulk_mode">Continu scannen</string>
<string name="bulk_mode_summary">Blijf continu scannen.</string>
<string name="history">Geschiedenis</string>
<string name="preferences">Voorkeuren</string>
<string name="scan_category">Scan</string>
<string name="content_category">Content</string>
<string name="locale_category">Language</string>
<string name="custom_locale">Custom language</string>
<string name="follow_system_settings">Follow system settings</string>
<string name="show_crop_handle">Show cropping limiter</string>
<string name="show_crop_handle_summary">Restrict scanning to a customizable region.</string>
<string name="zoom_by_swiping">Zoom camera by swiping up/down</string>
<string name="zoom_by_swiping_summary">Swipe up or down in camera screen to control the camera zoom.</string>
<string name="auto_rotate">Recognize 1D barcodes vertically</string>
<string name="auto_rotate_summary">Automatically rotate the camera frame to recognize vertical 1D barcodes. Depending on the device, this may affect performance.</string>
<string name="try_harder">Optimize reader for accuracy, not speed</string>
<string name="try_harder_summary">Enable this option for very hard to read codes. Will affect performance.</string>
<string name="show_toast_in_bulk_mode">Show data in continuous mode</string>
<string name="show_toast_in_bulk_mode_summary">Briefly show the scanned data when scanning continuously.</string>
<string name="vibrate">Vibrate on detection</string>
<string name="vibrate_summary">Enable this if you want your device to vibrate when a code is recognized.</string>
<string name="use_history">Scan-geschiedenis behouden</string>
<string name="use_history_summary">Save recognized codes on your device.</string>
<string name="ignore_consecutive_duplicates">Do not save consecutive duplicates</string>
<string name="ignore_consecutive_duplicates_summary">Do not save consecutive duplicates in the scan history.</string>
<string name="open_immediately">Skip inspection and open contents immediately</string>
<string name="open_immediately_summary">Skip inspection and open contents immediately. May open harmful content if enabled.</string>
<string name="copy_immediately">Automatically copy contents into clipboard</string>
<string name="copy_immediately_summary">Automatically copy scanned contents into clipboard. Please note that other apps may snoop on your clipboard in the background.</string>
<string name="show_meta_data">Show metadata</string>
<string name="show_meta_data_summary">Show additional data about the scanned barcoded.</string>
<string name="show_hex_dump">Show hex dump</string>
<string name="show_hex_dump_summary">Show a hex dump of the scanned contents.</string>
<string name="close_automatically">Go back after Copy/Share</string>
<string name="close_automatically_summary">Automatically return to the scan screen after copying or sharing the read contents.</string>
<string name="really_remove_scan">Scan echt verwijderen?</string>
<string name="really_remove_all_scans">Echt alle scans verwijderen?</string>
<string name="really_remove_selected_scans">Really remove selected scans?</string>
<string name="preferences">Instellingen</string>
<string name="scan_category">Scannen</string>
<string name="content_category">Inhoud</string>
<string name="locale_category">Taal</string>
<string name="custom_locale">Andere taal</string>
<string name="follow_system_settings">Systeeminstellingen gebruiken</string>
<string name="show_crop_handle">Bijsnijdhulpmiddel tonen</string>
<string name="show_crop_handle_summary">Beperk scannen tot een aanpasbaar gebied.</string>
<string name="zoom_by_swiping">Camera zoomen door omhoog/omlaag te vegen</string>
<string name="zoom_by_swiping_summary">Veeg omhoog of omlaag op het camerascherm om in en uit te zoomen.</string>
<string name="auto_rotate">1D-barcodes verticaal scannen</string>
<string name="auto_rotate_summary">Draai de camera automatisch 1D-barcodes verticaal te scannen. Let op: dit kan van invloed zijn op de prestaties.</string>
<string name="try_harder">Scanner optimaliseren voor juistheid i.p.v. snelheid</string>
<string name="try_harder_summary">Schakel deze optie in voor moeilijk afleesbare codes. Let op: de prestaties leiden hieronder.</string>
<string name="show_toast_in_bulk_mode">Data tonen in continumodus</string>
<string name="show_toast_in_bulk_mode_summary">Toon de gescande data in continumodus.</string>
<string name="vibrate">Trillen na herkennen</string>
<string name="vibrate_summary">Schakel deze optie in als je wilt dat je apparaat trilt na het herkennen van een barcode.</string>
<string name="use_history">Scangeschiedenis bewaren</string>
<string name="use_history_summary">Bewaar herkende codes op je apparaat.</string>
<string name="ignore_consecutive_duplicates">Opeenvolgende duplicaten niet bewaren</string>
<string name="ignore_consecutive_duplicates_summary">Bewaar opeenvolgende duplicaten niet in de scangeschiedenis.</string>
<string name="open_immediately">Inspectie overslaan en inhoud direct tonen</string>
<string name="open_immediately_summary">Sla de inspectie over en open de inhoud direct. Let op: sommige inhoud kan schadelijk zijn.</string>
<string name="copy_immediately">Inhoud automatisch kopiëren naar klembord</string>
<string name="copy_immediately_summary">Kopieer de gescande inhoud automatisch naar het klembord. Let op: andere apps kunnen mogelijk meelezen op de achtergrond.</string>
<string name="show_meta_data">Metagegevens tonen</string>
<string name="show_meta_data_summary">Toon aanvullende gegevens over de gescande barcode.</string>
<string name="show_hex_dump">Hexdump tonen</string>
<string name="show_hex_dump_summary">Toon een hexdump van de gescande inhoud.</string>
<string name="close_automatically">Terugkeren na kopiëren/delen</string>
<string name="close_automatically_summary">Keer automatisch terug naar naar het scanscherm na het kopiëren/delen van een item.</string>
<string name="really_remove_scan">Weet je zeker dat je de scan wilt verwijderen?</string>
<string name="really_remove_all_scans">Weet je zeker dat je de scans wilt verwijderen?</string>
<string name="really_remove_selected_scans">Weet je zeker dat je de selectie wilt verwijderen?</string>
<string name="clear_history">Geschiedenis wissen</string>
<string name="copy_scan">Copy scan</string>
<string name="edit_scan">Edit label</string>
<string name="remove_scan">Remove scan</string>
<string name="enter_name">Enter a name to describe the scan</string>
<string name="enter_name_hint">Name of the scan</string>
<string name="no_barcode_found">Geen barcode gevonden</string>
<string name="copy_scan">Scan kopiëren</string>
<string name="edit_scan">Label aanpassen</string>
<string name="remove_scan">Scan verwijderen</string>
<string name="enter_name">Geef de scan een naam</string>
<string name="enter_name_hint">Naam</string>
<string name="no_barcode_found">Geen barcode aangetroffen</string>
<string name="separator_line_break">Nieuwe regel</string>
<string name="separator_ruler">Horizontale streep</string>
<string name="save_as_file_name">Als bestand opslaan?</string>
<string name="file_name">Naam van het bestand</string>
<string name="error_file_exists">Bestand bestaat al</string>
<string name="connect_to_wifi">Met WiFi verbinden</string>
<string name="wifi_config_failed">Kon WiFi niet configureren</string>
<string name="wifi_added">WiFi toegevoegd</string>
<string name="save_as_file_name">Opslaan als bestand?</string>
<string name="file_name">Bestandsnaam</string>
<string name="error_file_exists">Het bestand bestaat al</string>
<string name="connect_to_wifi">Verbinden met wifi-netwerk</string>
<string name="wifi_config_failed">Het wifi-netwerk kan niet worden ingesteld</string>
<string name="wifi_added">Het wifi-netwerk toegevoegd</string>
<string name="sms_send">SMS versturen</string>
<string name="sms_error">Kon SMS niet versturen</string>
<string name="sms_error">De sms kan niet worden verstuurd</string>
<string name="tel_dial">Nummer bellen</string>
<string name="tel_error">Kon nummer niet bellen</string>
<string name="mail_send">Mail versturen</string>
<string name="mail_error">Kon mail niet versturen</string>
<string name="vcard_add">Aan contacten toevoegen</string>
<string name="vcard_failed">Kon niet aan contacten toevoegen</string>
<string name="vevent_add">Aan kalender toevoegen</string>
<string name="tel_error">Het nummer kan niet worden gebeld</string>
<string name="mail_send">E-mail versturen</string>
<string name="mail_error">De e-mail kan niet worden verstuurd</string>
<string name="vcard_add">Toevoegen aan contactpersoon</string>
<string name="vcard_failed">Het toevoegen is mislukt</string>
<string name="vevent_add">Toevoegen aan kalender</string>
<string name="otpauth_add">2FA toevoegen</string>
<string name="search_web">Het net doorzoeken</string>
<string name="search_scan">Search scan</string>
<string name="export_to_file">Naar bestand exporteren</string>
<string name="export_as">Export as?</string>
<string name="export_csv_comma">CSV file with commas</string>
<string name="export_csv_semicolon">CSV file with semicolons</string>
<string name="export_json">JSON file</string>
<string name="export_database">SQLite database</string>
<string name="error_saving_file">Kon bestand niet opslaan</string>
<string name="open_with_url">Niet herkende data met URL openen</string>
<string name="send_category">Forwarding</string>
<string name="send_scan_url">Send every scan to URL</string>
<string name="send_scan_type">Type of request for every scan</string>
<string name="send_type_get_add_content">GET and simply add content</string>
<string name="send_type_get_query_string">GET with compelete query string</string>
<string name="search_web">Zoeken op internet</string>
<string name="search_scan">Scan zoeken</string>
<string name="export_to_file">Exporteren naar bestand</string>
<string name="export_as">Exporteren als?</string>
<string name="export_csv_comma">Kommagescheiden csv-bestand</string>
<string name="export_csv_semicolon">Puntkommagescheiden csv-bestand</string>
<string name="export_json">JSON-bestand</string>
<string name="export_database">SQLite-databank</string>
<string name="error_saving_file">Het bestand kan niet worden opgeslagen</string>
<string name="default_search_engine">Open unknown data in</string>
<string name="always_ask">Always ask</string>
<string name="open_with_url">Niet-herkende data met url openen</string>
<string name="send_category">Doorsturen</string>
<string name="send_scan_url">Elke scan doorsturen naar url</string>
<string name="send_scan_type">Soort verzoek van elke scan</string>
<string name="send_type_get_add_content">GET met toegevoegde inhoud</string>
<string name="send_type_get_query_string">GET met volledige opvraging</string>
<string name="send_type_post_form">POST application/x-www-form-urlencoded</string>
<string name="send_type_post_json">POST application/json</string>
<string name="test_url">Test URL</string>
<string name="pick_list_separator">Hoe de lijstonderdelen te separeren?</string>
<string name="saved_in_downloads">In downloads opgeslagen</string>
<string name="vevent_failed">Kon niet aan kalender toevoegen</string>
<string name="rotate_image_cw">Rotate image clockwise</string>
<string name="pick_file">Pick image file</string>
<string name="pick_code_to_scan">Pick code to scan</string>
<string name="shortcut_decode">Scan a barcode</string>
<string name="shortcut_encode">Create a barcode</string>
<string name="shortcut_preferences">Settings</string>
<string name="background_request_failed">Background request failed</string>
<string name="test_url">URL testen</string>
<string name="pick_list_separator">Hoe moeten lijstonderdelen worden gescheiden?</string>
<string name="saved_in_downloads">Opgeslagen in downloadmap</string>
<string name="vevent_failed">Toevoegen mislukt</string>
<string name="rotate_image_cw">Afbeelding rechtsom draaien</string>
<string name="pick_file">Kies een afbeeldingsbestand</string>
<string name="pick_code_to_scan">Kies de te scannen code</string>
<string name="shortcut_decode">Barcode scannen</string>
<string name="shortcut_encode">Barcode genereren</string>
<string name="shortcut_preferences">Instellingen</string>
<string name="background_request_failed">Het achtergrondverzoek is mislukt</string>
</resources>
+2
View File
@@ -91,6 +91,8 @@
<string name="export_database">Eksportuj do bazy danych SQLite</string>
<string name="ignore_consecutive_duplicates">Nie zapisuj kolejnych duplikatów</string>
<string name="ignore_consecutive_duplicates_summary">Do not save consecutive duplicates in the scan history.</string>
<string name="default_search_engine">Open unknown data in</string>
<string name="always_ask">Always ask</string>
<string name="open_with_url">Otwieraj nieznane dane za pomocą adresu URL</string>
<string name="send_category">Forwarding</string>
<string name="send_scan_url">Send every scan to URL</string>
@@ -77,6 +77,8 @@
<string name="show_hex_dump_summary">Show a hex dump of the scanned contents.</string>
<string name="close_automatically">Go back after Copy/Share</string>
<string name="close_automatically_summary">Automatically return to the scan screen after copying or sharing the read contents.</string>
<string name="default_search_engine">Open unknown data in</string>
<string name="always_ask">Always ask</string>
<string name="open_with_url">Abrir dados desconhecidos com URL</string>
<string name="send_category">Forwarding</string>
<string name="send_scan_url">Send every scan to URL</string>
@@ -79,6 +79,8 @@
<string name="show_hex_dump_summary">Показывать шестнадцатеричный дамп содержимого отсканированного штрих-кода.</string>
<string name="close_automatically">Возвращаться после копирования/обмена</string>
<string name="close_automatically_summary">Автоматически возвращаться к экрану сканирования после копирования или передачу через функцию «Поделиться» считанного содержимого.</string>
<string name="default_search_engine">Open unknown data in</string>
<string name="always_ask">Always ask</string>
<string name="open_with_url">Открывать неизвестные данные с помощью URL</string>
<string name="send_category">Отправка</string>
<string name="send_scan_url">Отправлять каждый отсканированный штрих-код на URL</string>
+2
View File
@@ -77,6 +77,8 @@
<string name="show_hex_dump_summary">Taranan içeriklerin hex yığınını göster.</string>
<string name="close_automatically">Go back after Copy/Share</string>
<string name="close_automatically_summary">Automatically return to the scan screen after copying or sharing the read contents.</string>
<string name="default_search_engine">Open unknown data in</string>
<string name="always_ask">Always ask</string>
<string name="open_with_url">URL\'si olan bilinmeyen veriyi aç</string>
<string name="send_category">Yönlendirme</string>
<string name="send_scan_url">Her taramayı URL\'ye gönder</string>
+2
View File
@@ -78,6 +78,8 @@
<string name="show_hex_dump_summary">Показувати шістнадцятковий дамп відсканованого вмісту.</string>
<string name="close_automatically">Go back after Copy/Share</string>
<string name="close_automatically_summary">Automatically return to the scan screen after copying or sharing the read contents.</string>
<string name="default_search_engine">Open unknown data in</string>
<string name="always_ask">Always ask</string>
<string name="open_with_url">Відкривати невідомі дані за допомогою URL</string>
<string name="send_category">Пересилання</string>
<string name="send_scan_url">Надсилати кожне сканування на URL</string>
+16 -14
View File
@@ -10,10 +10,10 @@
<item quantity="other">%2$d 字符, %1$s</item>
</plurals>
<string name="error_correction_level">纠错级别</string>
<string name="error_correction_level_l" formatted="false">Low (~7&#37; correction)</string>
<string name="error_correction_level_m" formatted="false">Medium (~15&#37; correction)</string>
<string name="error_correction_level_l" formatted="false"> (~7&#37; correction)</string>
<string name="error_correction_level_m" formatted="false"> (~15&#37; correction)</string>
<string name="error_correction_level_q" formatted="false">Quartile (~25&#37; correction)</string>
<string name="error_correction_level_h" formatted="false">High (~30&#37; correction)</string>
<string name="error_correction_level_h" formatted="false"> (~30&#37; correction)</string>
<string name="issue_number">发行编号</string>
<string name="orientation">方向</string>
<string name="other_meta_data">元数据</string>
@@ -23,7 +23,7 @@
<string name="upc_ean_extension">UPC EAN 扩展</string>
<string name="toggle_flash">开关闪光灯</string>
<string name="share">分享</string>
<string name="share_as">Share as?</string>
<string name="share_as">以何种方式分享?</string>
<string name="copy_to_clipboard">复制到剪贴板</string>
<string name="copied_to_clipboard">已复制到剪贴板</string>
<string name="copy_password">复制密码到剪贴板</string>
@@ -42,14 +42,14 @@
<string name="info">关于</string>
<string name="switch_camera">切换摄像头</string>
<string name="bulk_mode">连续扫描</string>
<string name="bulk_mode_summary">Always start scanning continuously.</string>
<string name="bulk_mode_summary">始终开启连续扫描</string>
<string name="history">历史</string>
<string name="preferences">首选项</string>
<string name="scan_category">扫描</string>
<string name="content_category">内容</string>
<string name="locale_category">Language</string>
<string name="custom_locale">Custom language</string>
<string name="follow_system_settings">Follow system settings</string>
<string name="locale_category">语言</string>
<string name="custom_locale">设定语言</string>
<string name="follow_system_settings">跟随系统设置</string>
<string name="show_crop_handle">限制扫描区域</string>
<string name="show_crop_handle_summary">把扫描区域限制在选定范围内</string>
<string name="zoom_by_swiping">上下滑动缩放</string>
@@ -57,9 +57,9 @@
<string name="auto_rotate">识别竖直的1D条形码</string>
<string name="auto_rotate_summary">自动旋转相机以识别竖直的1D条形码(可能会影响一些设备的扫描性能)</string>
<string name="try_harder">提高扫描精度</string>
<string name="try_harder_summary">扫描很难识别的条形码时可启用该选项,会降低扫描速度</string>
<string name="show_toast_in_bulk_mode">Show data in continuous mode</string>
<string name="show_toast_in_bulk_mode_summary">Briefly show the scanned data when scanning continuously.</string>
<string name="try_harder_summary">扫描很难识别的条形码时可启用该选项,会降低扫描速度</string>
<string name="show_toast_in_bulk_mode">在连续扫描模式中显示数据</string>
<string name="show_toast_in_bulk_mode_summary">连续扫描时简要显示扫描数据。</string>
<string name="vibrate">振动提示</string>
<string name="vibrate_summary">扫描完成时振动提示</string>
<string name="use_history">保存扫描历史</string>
@@ -74,8 +74,10 @@
<string name="show_meta_data_summary">显示已扫描条形码的额外数据</string>
<string name="show_hex_dump">显示16进制数据</string>
<string name="show_hex_dump_summary">显示已扫描条形码的16进制数据</string>
<string name="close_automatically">Go back after Copy/Share</string>
<string name="close_automatically_summary">Automatically return to the scan screen after copying or sharing the read contents.</string>
<string name="close_automatically">复制/分享后自动返回</string>
<string name="close_automatically_summary">复制或分享读取的内容后自动返回扫描主界面。</string>
<string name="default_search_engine">Open unknown data in</string>
<string name="always_ask">Always ask</string>
<string name="open_with_url">使用URL打开未知数据</string>
<string name="send_category">转发</string>
<string name="send_scan_url">将每个扫描结果发送到URL</string>
@@ -84,7 +86,7 @@
<string name="send_type_get_query_string">GET 完整查询数据</string>
<string name="send_type_post_form">POST application/x-www-form-urlencoded</string>
<string name="send_type_post_json">POST application/json</string>
<string name="test_url">Test URL</string>
<string name="test_url">测试 URL</string>
<string name="really_remove_scan">确定删除记录?</string>
<string name="really_remove_all_scans">确定删除全部记录?</string>
<string name="really_remove_selected_scans">确定删除所选记录?</string>
+119 -116
View File
@@ -1,135 +1,138 @@
<resources>
<string name="no_camera_no_fun">沒有相機權限的話,這個程式根本什麽都做不了。再見</string>
<string name="no_camera_no_fun">沒有相機權限的話,這個程式根本什麽都做不了。 再見!</string>
<string name="camera_error">不能開啓相機,請重試</string>
<string name="scan_code">掃描條碼</string>
<string name="compose_barcode">製作條碼</string>
<string name="decode_barcode">解讀條碼</string>
<string name="content">内容</string>
<string name="binary_data">(2進制碼)</string>
<string name="binary_data">(2 進制碼)</string>
<plurals name="barcode_info">
<item quantity="other">%2$d 個字符, %1$s</item>
<item quantity="one">%2$d 個字符 %1$s</item>
<item quantity="other">%2$d 個字符, %1$s</item>
</plurals>
<string name="error_correction_level">Error correction level</string>
<string name="error_correction_level_l" formatted="false">Low (~7&#37; correction)</string>
<string name="error_correction_level_m" formatted="false">Medium (~15&#37; correction)</string>
<string name="error_correction_level">糾錯等級</string>
<string name="error_correction_level_l" formatted="false"> (~7&#37; correction)</string>
<string name="error_correction_level_m" formatted="false"> (~15&#37; correction)</string>
<string name="error_correction_level_q" formatted="false">Quartile (~25&#37; correction)</string>
<string name="error_correction_level_h" formatted="false">High (~30&#37; correction)</string>
<string name="issue_number">Issue number</string>
<string name="orientation">Orientation</string>
<string name="error_correction_level_h" formatted="false"> (~30&#37; correction)</string>
<string name="issue_number">發行編號</string>
<string name="orientation">方向</string>
<string name="other_meta_data">Metadata</string>
<string name="pdf417_extra_metadata">PDF417 metadata</string>
<string name="possible_country">Possible country of manufacture</string>
<string name="suggested_price">Suggested price</string>
<string name="upc_ean_extension">UPC EAN extension</string>
<string name="toggle_flash">閃光燈</string>
<string name="possible_country">可能製作地點</string>
<string name="suggested_price">建議價格</string>
<string name="upc_ean_extension">UPC EAN 擴充</string>
<string name="toggle_flash">開關閃光燈</string>
<string name="share">分享</string>
<string name="share_as">Share as?</string>
<string name="copy_to_clipboard">複製</string>
<string name="copied_to_clipboard">複製</string>
<string name="copy_password">Copy password into clipboard</string>
<string name="copied_password_to_clipboard">Password copied to clipboard</string>
<string name="open_url"></string>
<string name="cannot_resolve_action">無應用程式可以開</string>
<string name="pick_search_engine">選擇搜尋引擎</string>
<string name="share_as">以何種方式分享?</string>
<string name="copy_to_clipboard">複製到剪貼簿</string>
<string name="copied_to_clipboard">複製到剪貼簿</string>
<string name="copy_password">複製密碼到剪貼簿</string>
<string name="copied_password_to_clipboard">已複製密碼到剪貼簿</string>
<string name="open_url">啟連結</string>
<string name="cannot_resolve_action">沒有相關程式可以開啟它</string>
<string name="pick_search_engine">選擇一個搜尋引擎</string>
<string name="format">格式</string>
<string name="size">大小(pixels)</string>
<string name="size">圖片尺寸</string>
<string name="width_by_height">%1$d×%2$d</string>
<string name="input_content_here">此輸入</string>
<string name="encode">製作條</string>
<string name="error_no_content">找不到内</string>
<string name="error_encoding_barcode">條碼製作失敗</string>
<string name="input_content_here">這裡輸入內容</string>
<string name="encode"></string>
<string name="error_no_content">缺少內</string>
<string name="error_encoding_barcode">無法產生條碼</string>
<string name="view_barcode">檢視條碼</string>
<string name="info">資訊</string>
<string name="info">關於</string>
<string name="switch_camera">切換相機</string>
<string name="bulk_mode">Scan continuously</string>
<string name="bulk_mode_summary">Always start scanning continuously.</string>
<string name="history">歷史</string>
<string name="show_crop_handle">Show cropping limiter</string>
<string name="show_crop_handle_summary">Restrict scanning to a customizable region.</string>
<string name="zoom_by_swiping">Zoom camera by swiping up/down</string>
<string name="zoom_by_swiping_summary">Swipe up or down in camera screen to control the camera zoom.</string>
<string name="auto_rotate">Recognize 1D barcodes vertically</string>
<string name="auto_rotate_summary">Automatically rotate the camera frame to recognize vertical 1D barcodes. Depending on the device, this may affect performance.</string>
<string name="try_harder">Optimize reader for accuracy, not speed</string>
<string name="try_harder_summary">Enable this option for very hard to read codes. Will affect performance.</string>
<string name="show_toast_in_bulk_mode">Show data in continuous mode</string>
<string name="show_toast_in_bulk_mode_summary">Briefly show the scanned data when scanning continuously.</string>
<string name="vibrate">Vibrate on detection</string>
<string name="vibrate_summary">Enable this if you want your device to vibrate when a code is recognized.</string>
<string name="use_history">儲存掃描歷史</string>
<string name="use_history_summary">Save recognized codes on your device.</string>
<string name="ignore_consecutive_duplicates">Do not save consecutive duplicates</string>
<string name="ignore_consecutive_duplicates_summary">Do not save consecutive duplicates in the scan history.</string>
<string name="open_immediately">Skip inspection and open contents immediately</string>
<string name="open_immediately_summary">Skip inspection and open contents immediately. May open harmful content if enabled.</string>
<string name="copy_immediately">Automatically copy contents into clipboard</string>
<string name="copy_immediately_summary">Automatically copy scanned contents into clipboard. Please note that other apps may snoop on your clipboard in the background.</string>
<string name="show_meta_data">Show metadata</string>
<string name="show_meta_data_summary">Show additional data about the scanned barcoded.</string>
<string name="show_hex_dump">Show hex dump</string>
<string name="show_hex_dump_summary">Show a hex dump of the scanned contents.</string>
<string name="close_automatically">Go back after Copy/Share</string>
<string name="close_automatically_summary">Automatically return to the scan screen after copying or sharing the read contents.</string>
<string name="really_remove_scan">真的要移除掃描記錄?</string>
<string name="really_remove_all_scans">真的要移除所有掃描記錄?</string>
<string name="really_remove_selected_scans">Really remove selected scans?</string>
<string name="clear_history">清除記錄</string>
<string name="copy_scan">Copy scan</string>
<string name="edit_scan">Edit label</string>
<string name="remove_scan">Remove scan</string>
<string name="enter_name">Enter a name to describe the scan</string>
<string name="enter_name_hint">Name of the scan</string>
<string name="no_barcode_found">找不到條碼</string>
<string name="pick_list_separator">如何分開列表項目?</string>
<string name="separator_line_break">Line break</string>
<string name="separator_ruler">直尺</string>
<string name="save_as_file_name">儲存成檔案?</string>
<string name="file_name">檔案名稱</string>
<string name="error_saving_file">不能儲存檔案</string>
<string name="error_file_exists">檔案已存在</string>
<string name="connect_to_wifi">連接至 WiFi</string>
<string name="wifi_config_failed">WiFi連接設定失敗</string>
<string name="wifi_added">成功添加WiFi</string>
<string name="sms_send">傳送SMS</string>
<string name="sms_error">不能傳送SMS</string>
<string name="tel_dial">撥號</string>
<string name="tel_error">不能撥號</string>
<string name="mail_send">發送電郵</string>
<string name="mail_error">不能發送電郵</string>
<string name="vcard_add">添加至聯絡人</string>
<string name="vcard_failed">不能添加至聯絡人</string>
<string name="vevent_add">添加至行事曆</string>
<string name="vevent_failed">不能添加至行事曆</string>
<string name="preferences">Preferences</string>
<string name="scan_category">Scan</string>
<string name="content_category">Content</string>
<string name="locale_category">Language</string>
<string name="custom_locale">Custom language</string>
<string name="follow_system_settings">Follow system settings</string>
<string name="open_with_url">Open unknown data with URL</string>
<string name="send_category">Forwarding</string>
<string name="send_scan_url">Send every scan to URL</string>
<string name="send_scan_type">Type of request for every scan</string>
<string name="send_type_get_add_content">GET and simply add content</string>
<string name="send_type_get_query_string">GET with compelete query string</string>
<string name="bulk_mode">連續掃描</string>
<string name="bulk_mode_summary">始終開啟連續掃描</string>
<string name="history">歷史記錄</string>
<string name="preferences">偏好設定</string>
<string name="scan_category">掃描</string>
<string name="content_category">內容</string>
<string name="locale_category">語言</string>
<string name="custom_locale">設定語言</string>
<string name="follow_system_settings">跟隨系統設定</string>
<string name="show_crop_handle">限制掃描區域</string>
<string name="show_crop_handle_summary">把掃描區域限制在選定範圍內</string>
<string name="zoom_by_swiping">上下滑動縮放</string>
<string name="zoom_by_swiping_summary">通過上下滑動在掃描界面控制相機縮放</string>
<string name="auto_rotate">識別豎直的 1D 條碼</string>
<string name="auto_rotate_summary">自動旋轉相機以識別豎直的 1D 條碼(可能會影響一些設備的掃描性能)</string>
<string name="try_harder">提高掃描準確度</string>
<string name="try_harder_summary">掃描很難識別的條碼時可啟用此選項,但會降低掃描速度</string>
<string name="show_toast_in_bulk_mode">在連續掃描模式中顯示資料</string>
<string name="show_toast_in_bulk_mode_summary">連續掃描時簡要顯示掃描資料。</string>
<string name="vibrate">振動提示</string>
<string name="vibrate_summary">掃描完成時振動提示</string>
<string name="use_history">儲存掃描記錄</string>
<string name="use_history_summary">在本機儲存掃描記錄</string>
<string name="ignore_consecutive_duplicates">不儲存重複歷史記錄</string>
<string name="ignore_consecutive_duplicates_summary">在掃描歷史中不儲存重複項目</string>
<string name="open_immediately">立即開啟</string>
<string name="open_immediately_summary">跳過檢查並立即開啟內容。 如果啟用,可能會開啟有害內容。</string>
<string name="copy_immediately">自動複製掃描結果到剪貼簿</string>
<string name="copy_immediately_summary">自動將掃描的內容複製到剪貼簿。 請注意,其他 APP 可能會在背景監控剪貼簿。</string>
<string name="show_meta_data">顯示 Metadata</string>
<string name="show_meta_data_summary">顯示已掃描條碼的額外資訊</string>
<string name="show_hex_dump">顯示 Hex dump</string>
<string name="show_hex_dump_summary">顯示已掃描條碼的 Hex dump</string>
<string name="close_automatically">複製/分享後自動返回</string>
<string name="close_automatically_summary">複製或分享讀取的內容後自動返回掃描主要界面。</string>
<string name="default_search_engine">Open unknown data in</string>
<string name="always_ask">Always ask</string>
<string name="open_with_url">使用 URL 開啟未知資料</string>
<string name="send_category">轉發</string>
<string name="send_scan_url">將每個掃描結果傳送到 URL</string>
<string name="send_scan_type">每次掃描的請求類型</string>
<string name="send_type_get_add_content">GET 簡單附加資料</string>
<string name="send_type_get_query_string">GET 完整查詢資料</string>
<string name="send_type_post_form">POST application/x-www-form-urlencoded</string>
<string name="send_type_post_json">POST application/json</string>
<string name="test_url">Test URL</string>
<string name="otpauth_add">Add 2FA</string>
<string name="search_web">Search the web</string>
<string name="search_scan">Search scan</string>
<string name="export_to_file">Export to file</string>
<string name="export_as">Export as?</string>
<string name="export_csv_comma">CSV file with commas</string>
<string name="export_csv_semicolon">CSV file with semicolons</string>
<string name="export_json">JSON file</string>
<string name="export_database">SQLite database</string>
<string name="saved_in_downloads">Saved in downloads</string>
<string name="rotate_image_cw">Rotate image clockwise</string>
<string name="pick_file">Pick image file</string>
<string name="pick_code_to_scan">Pick code to scan</string>
<string name="shortcut_decode">Scan a barcode</string>
<string name="shortcut_encode">Create a barcode</string>
<string name="shortcut_preferences">Settings</string>
<string name="background_request_failed">Background request failed</string>
<string name="test_url">測試 URL</string>
<string name="really_remove_scan">確定刪除記錄?</string>
<string name="really_remove_all_scans">確定刪除全部掃描記錄?</string>
<string name="really_remove_selected_scans">確定刪除所選掃描記錄?</string>
<string name="clear_history">清空記錄</string>
<string name="copy_scan">複製掃描記錄</string>
<string name="edit_scan">編輯名稱</string>
<string name="remove_scan">刪除所選記錄</string>
<string name="enter_name">輸入名稱</string>
<string name="enter_name_hint">掃描描述</string>
<string name="no_barcode_found">未找到條碼</string>
<string name="pick_list_separator">如何分隔清單項目?</string>
<string name="separator_line_break">換行符</string>
<string name="separator_ruler">分割線</string>
<string name="save_as_file_name">儲存為檔案?</string>
<string name="file_name">檔案名稱</string>
<string name="error_saving_file">無法儲存檔案</string>
<string name="error_file_exists">檔案已存在</string>
<string name="connect_to_wifi">連線到 WiFi</string>
<string name="wifi_config_failed">無法配置 WiFi</string>
<string name="wifi_added">WiFi 已加入</string>
<string name="sms_send">發送簡訊</string>
<string name="sms_error">無法發送簡訊</string>
<string name="tel_dial">撥打號碼</string>
<string name="tel_error">無法撥打此號碼</string>
<string name="mail_send">發送郵件</string>
<string name="mail_error">無法發送郵件</string>
<string name="vcard_add">加入到通訊錄</string>
<string name="vcard_failed">無法加入到通訊錄</string>
<string name="vevent_add">加入到日歷</string>
<string name="vevent_failed">無法加入到日歷</string>
<string name="otpauth_add">加入雙重驗證(2FA)</string>
<string name="search_web">在網路上搜尋</string>
<string name="search_scan">搜尋掃描記錄</string>
<string name="export_to_file">匯出為檔案</string>
<string name="export_as">另存為?</string>
<string name="export_csv_comma">逗號分隔的 CSV</string>
<string name="export_csv_semicolon">分號分隔的 CSV</string>
<string name="export_json">JSON</string>
<string name="export_database">匯出 SQLite 資料庫</string>
<string name="saved_in_downloads">已儲存到下載目錄</string>
<string name="rotate_image_cw">旋轉圖片</string>
<string name="pick_file">選擇圖片檔案</string>
<string name="pick_code_to_scan">選擇掃描編碼</string>
<string name="shortcut_decode">掃描條碼</string>
<string name="shortcut_encode">建立條碼</string>
<string name="shortcut_preferences">設定</string>
<string name="background_request_failed">背景請求失敗</string>
</resources>
@@ -1,5 +1,6 @@
<resources>
<string-array name="search_engines_names">
<item>@string/always_ask</item>
<item>Google</item>
<item>DuckDuckGo</item>
<item>Qwant</item>
@@ -10,6 +11,7 @@
<item>OpenPetFoodFacts.org</item>
</string-array>
<string-array name="search_engines_values">
<item></item>
<item>https://www.google.com/search?q=</item>
<item>https://duckduckgo.com/?q=</item>
<item>https://www.qwant.com/?q=</item>
+2
View File
@@ -77,6 +77,8 @@
<string name="show_hex_dump_summary">Show a hex dump of the scanned contents.</string>
<string name="close_automatically">Go back after Copy/Share</string>
<string name="close_automatically_summary">Automatically return to the scan screen after copying or sharing the read contents.</string>
<string name="default_search_engine">Open unknown data in</string>
<string name="always_ask">Always ask</string>
<string name="open_with_url">Open unknown data with URL</string>
<string name="send_category">Forwarding</string>
<string name="send_scan_url">Send every scan to URL</string>
+6
View File
@@ -86,6 +86,12 @@
android:key="close_automatically"
android:title="@string/close_automatically"
android:summary="@string/close_automatically_summary"/>
<ListPreference
android:key="default_search_url"
android:title="@string/default_search_engine"
android:entries="@array/search_engines_names"
android:entryValues="@array/search_engines_values"
android:defaultValue=""/>
<de.markusfisch.android.binaryeye.preference.UrlPreference
android:key="open_with_url"
android:title="@string/open_with_url"/>
+4 -4
View File
@@ -1,15 +1,15 @@
buildscript {
ext {
kotlin_version = '1.4.10'
tools_version = '4.1.1'
build_tools_version = '29.0.3'
tools_version = '4.2.0'
build_tools_version = '30.0.2'
sdk_version = 30
support_version = '25.3.1'
}
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
@@ -21,7 +21,7 @@ buildscript {
allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://jitpack.io' }
}
@@ -0,0 +1,5 @@
* Add a setting to show/hide scanned data when scanning continuously
* Only show the first 50 characters when scanning continuously
* Share binary data as hex dump
* Update Russian language
@@ -0,0 +1,7 @@
* Use cropping limiter by default for new installations
* Truncate all toasts with strings from the outside
* Add Bangla translation
* Add missing Japanese locale
* Update Hungarian translation
* Update Russian app description
+1 -1
View File
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-6.5-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-6.7.1-all.zip