├── .gitignore ├── CONTRIBUTORS.md ├── LICENSE ├── brevent └── src │ └── main │ └── res │ ├── values-es-v26 │ └── strings.xml │ ├── values-es │ ├── ops.xml │ └── strings.xml │ ├── values-pl-v26 │ └── strings.xml │ ├── values-pl │ ├── ops.xml │ └── strings.xml │ ├── values-pt-rBR-v26 │ └── strings.xml │ ├── values-pt-rBR │ ├── ops.xml │ └── strings.xml │ ├── values-ru-v26 │ └── strings.xml │ ├── values-ru │ ├── ops.xml │ └── strings.xml │ ├── values-v26 │ └── strings.xml │ ├── values-zh-rCN-v26 │ └── strings.xml │ ├── values-zh-rCN │ ├── ops.xml │ └── strings.xml │ ├── values-zh-rTW-v26 │ └── strings.xml │ ├── values-zh-rTW │ ├── ops.xml │ └── strings.xml │ └── values │ ├── ops.xml │ └── strings.xml └── payment └── src └── main └── res ├── values-es └── strings.xml ├── values-pl └── strings.xml ├── values-pt-rBR └── strings.xml ├── values-ru └── strings.xml ├── values-zh-rCN └── strings.xml ├── values-zh-rTW └── strings.xml └── values └── strings.xml /.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | 3 | /*.apk 4 | /ant.properties 5 | /local.properties 6 | 7 | *.iml 8 | /.idea 9 | /.gradle 10 | 11 | .DS_Store 12 | /*.mapping.txt 13 | 14 | /*/.gitignore 15 | /*-*/ 16 | /*.gradle 17 | /*/*.gradle 18 | /*/build 19 | 20 | /README.md 21 | /DEVELOP.md 22 | /brevent-server.txt 23 | 24 | /donation/src/main/AndroidManifest.xml 25 | /donation/src/main/aidl 26 | /donation/src/main/java 27 | /donation/src/main/res/layout* 28 | 29 | /brevent/proguard-rules.pro 30 | /brevent/fabric.properties 31 | /brevent/src/main/AndroidManifest.xml 32 | /brevent/src/main/java 33 | /brevent/src/main/jni 34 | /brevent/src/main/libs 35 | /brevent/src/main/obj 36 | /brevent/src/main/res/.gitignore 37 | /brevent/src/main/res/xml* 38 | /brevent/src/main/res/drawable* 39 | /brevent/src/main/res/mipmap* 40 | /brevent/src/main/res/raw* 41 | /brevent/src/main/res/menu* 42 | /brevent/src/main/res/layout* 43 | /brevent/src/main/res/values*/op.xml 44 | /brevent/src/main/res/values*/op_cm.xml 45 | 46 | /brevent/src/main/res/values/dimens.xml 47 | /brevent/src/main/res/values/ic_*revent_background.xml 48 | /brevent/src/main/res/values*/*donottranslate.xml 49 | 50 | -------------------------------------------------------------------------------- /CONTRIBUTORS.md: -------------------------------------------------------------------------------- 1 | # Author 2 | - Liu DongMiao 3 | 4 | # Translator 5 | 6 | ## English 7 | - `DKOUT`: Limber Law 8 | - `Aviraxp`: Wang Han 9 | - `liyufan`: Li Yufan 10 | - `timeakesmarky`: Késmárky Tímea 11 | 12 | ## Spanish (es) 13 | - `Samuel` (via email) 14 | 15 | ## Polish (pl) 16 | - `bla-ke`: Daria Szatan 17 | 18 | ## Brazilian Portuguese (pt-rBR) 19 | - `Feliph` (via email) 20 | 21 | ## Simplified Chinese (zh-rCN) 22 | - WanderMax (only punctuation) 23 | - `南宫雪珊`: vvb2060 24 | 25 | ## Traditional Chinese (zh-rTW) 26 | - `孟武.尼德霍格.龍` (via email) 27 | - `david082321`: david082321 28 | - `pan93412` : pan93412 29 | 30 | ## Russian (ru) 31 | - `tommynok`: tommynok 32 | 33 | # Code 34 | - sffxzzp 35 | - vvb2060 36 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 2 | Version 2, December 2004 3 | 4 | Copyright (C) 2004 Sam Hocevar 5 | 6 | Everyone is permitted to copy and distribute verbatim or modified 7 | copies of this license document, and changing it is allowed as long 8 | as the name is changed. 9 | 10 | DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE 11 | TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 12 | 13 | 0. You just DO WHAT THE FUCK YOU WANT TO. 14 | 15 | -------------------------------------------------------------------------------- /brevent/src/main/res/values-es-v26/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | No desconecte \"Depuración por USB\", no cambie la \"configuración de USB\" 5 | 6 | 7 | -------------------------------------------------------------------------------- /brevent/src/main/res/values-es/ops.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | (%1$s) %2$s 5 | 6 | Permitir 7 | Ignorar 8 | Denegar 9 | Por defecto 10 | Foreground 11 | Preguntar 12 | Desconocido (%d) 13 | Permission 14 | Granted 15 | Refused 16 | 17 | App ops 18 | Copy code 19 | Code copied: %s 20 | 21 | Permitido %s 22 | Rechazado %s 23 | N/A 24 | 25 | @string/ops_mode_allow 26 | @string/ops_mode_ignore 27 | Reiniciar 28 | Tiempo 29 | Nombre 30 | Grupo 31 | Código 32 | Modo 33 | 34 | Todo 35 | Apply template 36 | 37 | 38 | -------------------------------------------------------------------------------- /brevent/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Brevent 5 | Nrevent 6 | 7 | Welcome 8 | When you quit Android apps, the Activity has two states: stopped or destroyed.\n\nBrevent recognizes the states of apps in this way, preventing apps in Brevent list from running for a long time. 9 | When you tap Back to quit apps, if the Activity is destroyed, apps and depending services won\'t run anymore; tap Home or Overview, or just put apps into the background, the Activity is stopped, apps and depending services will keep running; swipe off apps from the Recents screen, apps will be force-stopped. Whenever apps are being run without activity, Brevent will force-stop them.\n\nApps in Brevent list can be set with \"allow sync\" option to receive notifications or execute jobs and syncs. Brevent won\'t standby \"allow sync\" apps, and Brevent won\'t force-stop \"allow sync\" apps with notifications or running in the background. 10 | 11 | Permissions 12 | What do you need to do? \nJust a simple command via ADB with your PC. 13 | Brevent won\'t work if Android-powered device reboots. Since Android 8, Brevent won\'t work if you turn off \"USB Debugging\" or change USB options. 14 | 15 | Security 16 | Brevent does not need root or modify system files, there is no residue after uninstallation. 17 | Brevent uses plenty of Android\'s hidden APIs. Some third-party ROMs may modify these APIs, so there would be some issues when using.\n\nDO NOT use Brevent on work devices, NOR BREVENT work apps, frequently used apps, important apps. 18 | 19 | Enjoy 20 | Enjoy Brevent, and if you find any issues, please feel free to feedback with logs. 21 | The default Brevent method is \"Standby, then force-stop\". Standby (since Android 6.0, unsupported on some devices) apps can\'t access network, nor execute jobs and syncs.\n\nBrevent wouldn\'t force-stop safe apps. In addition, Brevent server brevent apps centrally and delays the processes by 3 to 60 seconds according to the event level. 22 | 23 | Inicie Brevent 24 | 25 | Por favor, inicie servidor Brevent (%s) 26 | El servidor Brevent no responde (%s) 27 | 1. Turn on \"Developer options\", enable \"USB debugging\" %1$s\n\n2. Connect to PC via USB %2$s\n\n3. Visit brevent.sh using Chrome on your PC\n\nOr\n\nExecute in PC\'s command line \"%3$s\" 28 | 1. Turn on \"Developer options\", enable \"USB debugging\" %1$s\n\n2. Connect to PC via USB %2$s\n\n3. Visit brevent.sh using Chrome on your PC 29 | Your device support \"Wireless debugging\".\n\n1. Turn on \"Developer options\", enable \"Wireless debugging\" %1$s\n\n2. tap \"Wireless debugging Port\" 30 | It seems your devices is rooted. You can turn on network ADB manually, or try tap \"Root\" button in Brevent.\n\nRoot is unnecessary for Brevent, and requires payment. 31 | Network ADB is turned on, please tap \"ADB\" to start Brevent Server. 32 | Root is unnecessary for Brevent, and requires payment. 33 | Desarrollo 34 | Copiar comando 35 | Comando copiado: %s 36 | (Habilitado) 37 | (USB conectado) 38 | Brevent server started successfully. Please tap app icons to choose, then brevent them. 39 | Brevent server is not started. Brevent is in read-only mode. 40 | Read-only mode 41 | 42 | Apps de usuario 43 | Apps de sistema 44 | Apps Framework 45 | OS Apps 46 | 47 | Leyendo estado de los procesos, espere un momento . . . 48 | Leyendo aplicaciones, espere un momento . . . 49 | Generando Logs, espere un momento . . . 50 | Iniciando servicio Brevent, espere un momento . . . 51 | Comprobando servicio Brevent, espere un momento. . . 52 | 53 | Persistent 54 | Foreground 55 | Running 56 | Standby 57 | Ignored 58 | Disabled 59 | Stopped 60 | Uninstalled 61 | (No iniciado) 62 | (Sin ejecución) 63 | (última vez: %1$s, total: %2$s) 64 | running %s 65 | %d principal 66 | %d en uso 67 | %d cached service 68 | %d cached 69 | %d 70 | %d en servicio 71 | %d cached service 72 | total %d 73 | 74 |  en proceso 75 |  procesos 76 | 77 | 78 | Brevent 79 | Unbrevent 80 | Importante 81 | Invertir 82 | Brevented %d apps 83 | Unbrevented %d apps 84 | Deshacer 85 | Deshecho 86 | 87 | API %1$d (%2$s) 88 | Copiar nombre del paquete 89 | Información de la aplicación 90 | Abrir 91 | Información de servidor Brevent 92 | Permitir sincronización 93 | Set aggressive 94 | No auto aggressive 95 | Unset 96 | Nombre del paquete copiado: %s 97 | Disable 98 | Enable 99 | Instant enable 100 | Market 101 | Uninstall (keep data) 102 | Uninstall 103 | Uninsatall (keep data) will remove package, but keep the data and cache directories around.\n\nAre you confirm? 104 | Uninstall would remove the data and cache directories.\n\nAre you confirm? 105 | 106 | %s (Método de entrada) 107 | %s (Aplicación de alarma) 108 | %s (Aplicación de SMS) 109 | %s (Aplicación de inicio) 110 | %s (Persistente) 111 | %s (Proceso Android) 112 | %s (Aplicación de teléfono) 113 | %s (Aplicación de asistencia) 114 | %s (WebView) 115 | %s (Accesibilidad) 116 | %s (Administrador del dispositivo) 117 | %s (FCM) 118 | %s (Sin Standby) 119 | %s (Agente de confianza) 120 | %s (GMS) 121 | %s (Fondo de pantalla) 122 | %s (Detector de notificaciones) 123 | System 124 | Telephony 125 | Bluetooth 126 | NFC 127 | Secure Element 128 | Network Stack 129 | Shell 130 | UID %1$d 131 | 132 | Buscar 133 | Ordenar por: 134 | Aplicación 135 | Install time 136 | Actualización 137 | Último uso 138 | Tiempo de uso 139 | APK Size (Pro) 140 | Average memory use (Pro) 141 | Maximum memory use(Pro) 142 | Contact 143 | Ajustes 144 | Template 145 | Guía 146 | Battery 147 | Exec command 148 | Start Brevent 149 | 150 | Feel free to send feedback.\n\nEmail: brevent@jianyu.io\n\nIf you have a GitHub account, please create an issue; you can view opened issues too.%s 151 | \n\nFor private messages, email us. 152 | GitHub 153 | Email 154 | Logs 155 | 156 | General 157 | Enable Brevent 158 | Brevent only apply to apps in Brevent list 159 | Método Brevent 160 | Standby, luego forzar detener 161 | Standby, no fuerza detener 162 | Sólo forzar parada, no Standby 163 | Standby when you exit apps (tap \"Back\"), or background apps timed out; force-stop when reach inactive timeout, or swipe apps away from recents screen\n\nAlways force-stop ran apps without activity 164 | Standby when you exit apps (tap \"Back\"), or background apps timed out\n\nAlways force-stop ran apps without activity 165 | Force-stop when reach inactive timeout, or swipe apps away from recents screen\n\nAlways force-stop ran apps without activity 166 | Tiempo de espera de las aplicaciones en 2° plano 167 | Las aplicaciones en segundo plano serán detenidas por Brevent. Actualmente: %s\n\nBrevent muestra el tiempo inactivo para las aplicaciones en segundo plano dinámicamente. 168 | 1 minuto 169 | 5 minutos 170 | 15 minutos 171 | 30 minutos 172 | 1 hora 173 | 3 horas 174 | 6 horas 175 | Mucho tiempo 176 | Inactive timeout 177 | Force-stop when apps have been inactive for %1$s 178 | 179 | Advanced features 180 | Language 181 | Auto 182 | Theme 183 | Show core apps 184 | All apps have the same signature with framework 185 | WTF, all apps are framework apps 186 | Show all apps 187 | Including system and core apps which cannot be launched nor upgraded 188 | 189 | Optimized Features 190 | Optimize Wechat 191 | Add to Battery Optimization whitelist, make it receive message as far as possible 192 | Optimize music player 193 | Won\'t be brevented while playing with notification, won\'t be force-stopped while pausing with notification\n\nNot works on some ROMs. May cause some samsung devices reboot 194 | Auto aggressive 195 | If app is ran with notifications as service, set it aggressive 196 | Show OS apps 197 | Android OS apps cannot be brevented 198 | 199 | Mostrar pago 200 | 201 | 202 | Gracias por pagar %s Brefoil en Play Store. 203 | Gracias por pagar %s Brefoil. 204 | Gracias por su valiosa contribución a Brevent. 205 | Gracias por pagar %1$s Brefoil en Play Store, %2$s Brefoil. 206 | Gracias por pagar %s Brefoil en Play Store y por su valiosa contribución a Brevent. 207 | Gracias por pagar %s Brefoil, y por su valiosa contribución a Brevent. 208 | Gracias por pagar %1$s Brefoil en Play Store, %2$s Brefoil, y por su valiosa contribución a Brevent. 209 | App ops 210 | Be careful, may cause apps crash 211 | Disable Apps 212 | Disabled apps must be enabled to use 213 | 214 | Experimental 215 | Dynamic GMS (Experimental) 216 | Enable and disable brevented GMS (Google Play services) dynamically 217 | Suspend (Experimental) 218 | Using suspend instead of Disable 219 | 220 | OCD options 221 | Auto update 222 | Update Brevent list when apps are installed or uninstalled 223 | Force stop check 224 | Notify if force-stop is too frequent 225 | Keep widgets 226 | Don\'t force-stop widgets to make them work 227 | Keep safe 228 | Don\'t force-stop safe processes 229 | 230 | Acerca de: 231 | System status 232 | Standby: %1$s\nStopped state: %2$s\nAuto update: %3$s\nAuto brevent: %4$s\nApp ops: %5$s\nDisable Apps: %6$s\nSuspend Apps: %7$s 233 | Standby: %1$s\n(Read-only mode) 234 | supported 235 | unsupported 236 | Opciones de desarrollador 237 | Depuración USB activada 238 | 239 | Traductor 240 | Samuel 241 | Licencias 242 | 243 | Brevent sólo está disponible para su propietario. 244 | Brevent no está disponible con el clon de aplicación. 245 | Brevent cannot work well on modified devices.\n\nFor stock ROM, please \"Feedback\" - \"Logs\". 246 | (Cannot create brevent.sh: %s) 247 | No permission to access Brevent server.\n\nTop apps: %1$s. 248 | No event log, Brevent server cannot work automatically.\n\nPlease try later, then contact Rom provider. 249 | No event log since %1$s, Brevent server cannot work automatically.\n\nPlease restart Brevent server, then contact Rom provider. 250 | Restart Brevent 251 | Servidor Brevent se está actualizando. Por favor, inténtelo de nuevo más tarde ... 252 | No se pueden guardar registros Log. Por favor, inténtelo de nuevo más tarde. 253 | No se puede iniciar servidor Brevent. 254 | Since Android 8, Brevent server would stop working whenever \"USB Debugging\" turns off.\n\nDon\'t turn off \"USB debugging\", don\'t change USB options. 255 | Brevent server has no sufficient permissions, some features are unavailable. 256 | @string/unsupported_granted 257 | @string/unsupported_granted 258 | Invalid location for Brevent, please reinstall. 259 | You have brevented some important apps: %1$s.\n\nDo you wan to unbrevent them? 260 | You have brevented apps cannot be launched: %1$s.\n\nDo you want to unbrevent them? 261 | Required by: %1$s. 262 | Apps are marked as GMS App. 263 | Apps are allowed to receive messages via sync, broadcast, and FCM (Firebase Cloud Messaging). 264 | Apps are allowed to receive messages via sync or broadcast. 265 | Apps are in aggressive mode. Normally, brevented apps can run for several seconds for dependency check; in aggressive mode, background apps would be force-stopped directly. 266 | Apps won\'t be set as aggressive automatically. 267 | Apps are disabled, must be enabled to use. 268 | Apps are running temporarily, would be disabled later. 269 | Brevent won\'t force-stop connected VPN apps. 270 | Brevent won\'t force-stop playing apps. 271 | Brevent won\'t force-stop paused apps with notifications. 272 | Apps are in Battery Optimization whitelist, won\'t be standby. 273 | Safe apps. You shouldn\'t regard them as running. 274 | Apps are on standby, would be force-stopped when reach \"inactive timeout\" or swiped away from recents screen. 275 | Apps are running with foreground service, won\'t be brevented. 276 | \"Allow sync\" apps are running in background, won\'t be brevented. 277 | Apps would be standby when reach \"background apps timeout\", be force-stopped when reach \"inactive timeout\" or swiped away from recents screen. 278 | If apps are launched, would be standby in short time, be force-stopped when reach \"inactive timeout\" or swiped away from recents screen. Otherwise, would be force-stopped in short time. 279 | Apps are in brevent list. 280 | Apps are added as widget. 281 | , 282 | 283 | Brevent server is working 284 | Please turn on \"Developer options\", via tap \"Build Number\" 7 times 285 | Brevent server cannot read events 286 | 287 | Iniciando servidor Brevent ... 288 | Servidor Brevent no se ha iniciado. 289 | 290 | Require to pay %s 291 | Pay now 292 | Not now (%1$d) 293 | Not now 294 | 295 | Brevented \"%1$s\" 296 | Unbrevented \"%1$s\" 297 | Fail to unbrevent \"%1$s\", please launch Brevent 298 | Set \"%1$s\" as aggressive 299 | Tap to unset. 300 | Unset \"%1$s\" 301 | Fail to unset \"%1$s\", please launch Brevent 302 | Recommend to unbrevent \"%1$s\" 303 | Brevented %1$d times in %2$s, tap to unbrevent. 304 | Recommend to disable \"%1$s\" 305 | Brevented %1$d times in %2$s, tap to disable. 306 | Disabled \"%1$s\" 307 | Fail to disable \"%1$s\", please launch Brevent 308 | 309 | Brevent server 310 | Auto unbrevent 311 | 312 | Reset 313 | Stop 314 | 315 | Restart Brevent server 316 | Uninstall static libraries 317 | %1$s\n# Error: output too large 318 | Exec command only supports simple shell script, use it at your risk. 319 | 320 | Brevent Disabled API 321 | Enable and disable apps via Brevent server 322 | 323 | 324 | 1 Brefoil 325 | 2 Brefoil 326 | 3 Brefoil 327 | 4 Brefoil 328 | 5 Brefoil 329 | 330 | 331 | Free 332 | @string/payment 333 | Unlimited 334 | @string/payment 335 | Professional 336 | Enjoy Android with Brevent 337 | Contributor 338 | Enjoy Brevent in Android 339 | 340 | Feizhi 341 | 342 | Pixel 343 | AOSP 344 | Play 345 | Nankai 346 | Amoled 347 | 348 | Mark GMS app 349 | Unmark GMS app 350 | Add Instant app 351 | 352 | You have paid %d Brefoil. Pay more to turn on experimental features. 353 | You have paid %d Brefoil. It\'s unnecessary to pay more. 354 | Pay more 355 | Cancel 356 | 357 | Cannot cache play payment, please check network 358 | Cannot cache play payment, please try later 359 | 360 | There is a updated version \"%s\". 361 | You have installed the latest version. 362 | You have installed a beta version. 363 | Update 364 | 365 | Terms & Privacy 366 | You must accept Terms & Privacy to use Brevent. In short, Brevent will collect Anonymous Log Data via Visual Studio App Center. 367 | Accept 368 | Reject 369 | 370 | %1$s (Fallback to \"Pixel\" in Dark theme) 371 | 372 | Sort by \"%1$s" requires payment. Would you like to pay now? 373 | 374 | Device default 375 | 376 | Wireless debugging Port 377 | Please turn off / on Wireless debugging to auto discovery port. 378 | Cannot connect, please check port. 379 | Wireless debugging is unsupported. 380 | Wireless pair 381 | Wireless pairing Port 382 | Six digit code 383 | Please reply the six digit code. 384 | Wireless pairing 385 | Wireless paired 386 | Fail to wireless pair 387 | Please visit brevent.sh using Chrome on your PC to pair. 388 | Please tap \"Developer Options\", navigate to \"Wireless debugging\", then tap \"Pair device with pairing code\", reply Brevent\'s notification with the six digit code. 389 | Enable Notification 390 | 391 | @string/about_detail_en 392 | Charging 393 | Charging slowly 394 | Charging fast 395 | , %s W 396 | , %s until full 397 | . 398 | Battery remain time unknown. 399 | Battery remain time: %s. 400 | Battery remain time less than 1 minute. 401 | Battery Settings 402 | 403 | 404 | -------------------------------------------------------------------------------- /brevent/src/main/res/values-pl-v26/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nie wyłączaj \"Debugowania USB\" oraz nie zmieniaj \"Konfiguracji USB\" 5 | 6 | 7 | -------------------------------------------------------------------------------- /brevent/src/main/res/values-pl/ops.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | (%1$s) %2$s 5 | 6 | Zezwalaj 7 | Ignoruj 8 | Odmawiaj 9 | Domyślnie 10 | Foreground 11 | Pytaj 12 | Nieznane (%d) 13 | Permission 14 | Granted 15 | Refused 16 | 17 | App ops 18 | Copy code 19 | Code copied: %s 20 | 21 | Pozwolono %s 22 | Odrzucono %s 23 | N/A 24 | 25 | @string/ops_mode_allow 26 | @string/ops_mode_ignore 27 | Restartuj 28 | Czas 29 | Nazwa 30 | Grupa 31 | Kod 32 | Tryb 33 | 34 | Wszystko 35 | Apply template 36 | 37 | 38 | -------------------------------------------------------------------------------- /brevent/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Brevent 5 | Nrevent 6 | 7 | Welcome 8 | When you quit Android apps, the Activity has two states: stopped or destroyed.\n\nBrevent recognizes the states of apps in this way, preventing apps in Brevent list from running for a long time. 9 | When you tap Back to quit apps, if the Activity is destroyed, apps and depending services won\'t run anymore; tap Home or Overview, or just put apps into the background, the Activity is stopped, apps and depending services will keep running; swipe off apps from the Recents screen, apps will be force-stopped. Whenever apps are being run without activity, Brevent will force-stop them.\n\nApps in Brevent list can be set with \"allow sync\" option to receive notifications or execute jobs and syncs. Brevent won\'t standby \"allow sync\" apps, and Brevent won\'t force-stop \"allow sync\" apps with notifications or running in the background. 10 | 11 | Permissions 12 | What do you need to do? \nJust a simple command via ADB with your PC. 13 | Brevent won\'t work if Android-powered device reboots. Since Android 8, Brevent won\'t work if you turn off \"USB Debugging\" or change USB options. 14 | 15 | Security 16 | Brevent does not need root or modify system files, there is no residue after uninstallation. 17 | Brevent uses plenty of Android\'s hidden APIs. Some third-party ROMs may modify these APIs, so there would be some issues when using.\n\nDO NOT use Brevent on work devices, NOR BREVENT work apps, frequently used apps, important apps. 18 | 19 | Enjoy 20 | Enjoy Brevent, and if you find any issues, please feel free to feedback with logs. 21 | The default Brevent method is \"Standby, then force-stop\". Standby (since Android 6.0, unsupported on some devices) apps can\'t access network, nor execute jobs and syncs.\n\nBrevent wouldn\'t force-stop safe apps. In addition, Brevent server brevent apps centrally and delays the processes by 3 to 60 seconds according to the event level. 22 | 23 | Uruchom Brevent 24 | 25 | Proszę uruchomić serwer Brevent (%s) 26 | Serwer Brevent nie odpowiada (%s) 27 | 1. Turn on \"Developer options\", enable \"USB debugging\" %1$s\n\n2. Connect to PC via USB %2$s\n\n3. Visit brevent.sh using Chrome on your PC\n\nOr\n\nExecute in PC\'s command line \"%3$s\" 28 | 1. Turn on \"Developer options\", enable \"USB debugging\" %1$s\n\n2. Connect to PC via USB %2$s\n\n3. Visit brevent.sh using Chrome on your PC 29 | Your device support \"Wireless debugging\".\n\n1. Turn on \"Developer options\", enable \"Wireless debugging\" %1$s\n\n2. tap \"Wireless debugging Port\" 30 | It seems your devices is rooted. You can turn on network ADB manually, or try tap \"Root\" button in Brevent.\n\nRoot is unnecessary for Brevent, and requires payment. 31 | Network ADB is turned on, please tap \"ADB\" to start Brevent Server. 32 | Root is unnecessary for Brevent, and requires payment. 33 | Opcje programistyczne 34 | Kopiuj polecenie 35 | Polecenie zostało skopiowane: %s 36 | (Włączony) 37 | (Podłączono USB) 38 | Brevent server started successfully. Please tap app icons to choose, then brevent them. 39 | Brevent server is not started. Brevent is in read-only mode. 40 | Read-only mode 41 | 42 | Aplikacje Użytkownika 43 | Aplikacje Systemowe 44 | Frameworki 45 | OS Apps 46 | 47 | Otrzymywanie statusu procesów, proszę czekać. . . 48 | Zbieranie informacji o aplikacjach, proszę czekać. . . 49 | Otrzymywanie logów, proszę czekać. . . 50 | Uruchamianie serwera Brevent, proszę czekać. . . 51 | Sprawdzanie serwera Brevent, proszę czekać. . . 52 | 53 | Persistent 54 | Foreground 55 | Running 56 | Standby 57 | Ignored 58 | Disabled 59 | Stopped 60 | Uninstalled 61 | (nie działa w tle) 62 | (nigdy nie uruchamiana) 63 | (ostatnio: %1$s, ogółem: %2$s) 64 | running %s 65 | %d główny(ch) 66 | %d usług(i) 67 | %d cached service 68 | %d cached 69 | %d 70 | %d usługa 71 | %d cached service 72 | ogółem %d 73 | 74 |  procesu 75 |  procesów 76 | 77 | 78 | Brevent 79 | Unbrevent 80 | Zaznacz wszystkie 81 | Odwróć wszystkie 82 | Brevented %d apps 83 | Unbrevented %d apps 84 | Cofnij 85 | Cofnięto 86 | 87 | API %1$d (%2$s) 88 | Kopiuj nazwę pakietu 89 | Informacje o aplikacji 90 | Uruchom 91 | Informacje o usłudze 92 | Zezwól na synchronizację 93 | Set aggressive 94 | No auto aggressive 95 | Unset 96 | Skopiowano nazwę pakietu: %s 97 | Disable 98 | Enable 99 | Instant enable 100 | Market 101 | Uninstall (keep data) 102 | Uninstall 103 | Uninsatall (keep data) will remove package, but keep the data and cache directories around.\n\nAre you confirm? 104 | Uninstall would remove the data and cache directories.\n\nAre you confirm? 105 | 106 | %s (Metoda wejścia) 107 | %s (Aplikacja alarmu) 108 | %s (Aplikacja wiadomości SMS) 109 | %s (Aplikacja ekranu głównego) 110 | %s (Stała) 111 | %s (Proces systemu Android) 112 | %s (Aplikacja połączeń) 113 | %s (Aplikacja asystująca) 114 | %s (WebView) 115 | %s (Ustawienia dostępu) 116 | %s (Administrator urządzenia) 117 | %s (FCM) 118 | %s (Bez trybu czuwania) 119 | %s (Agent zaufania) 120 | %s (GMS) 121 | %s (Tapeta) 122 | %s (Odbiornik powiadomień) 123 | System 124 | Telephony 125 | Bluetooth 126 | NFC 127 | Secure Element 128 | Network Stack 129 | Shell 130 | UID %1$d 131 | 132 | Szukaj 133 | Sortuj wg 134 | Aplikacji 135 | Install time 136 | Czasu aktualizacji 137 | Ostatniego czasu użycia 138 | Czasu działania 139 | APK Size (Pro) 140 | Average memory use (Pro) 141 | Maximum memory use (Pro) 142 | Contact 143 | Ustawienia 144 | Template 145 | Poradnik 146 | Battery 147 | Exec command 148 | Start Brevent 149 | 150 | Feel free to contact us.\n\nEmail: brevent@jianyu.io\n\nIf you have a GitHub account, please create an issue; you can view opened issues too.%s 151 | \n\nFor private messages, email us. 152 | GitHub 153 | E-mail 154 | Logi 155 | 156 | Lista Brevent 157 | Enable Brevent 158 | Brevent only apply to apps in Brevent list 159 | Metoda breventowania 160 | Tryb czuwania, a następnie wymuszone zatrzymanie 161 | Tylko tryb czuwania, bez wymuszonego zatrzymania 162 | Tylko wymuszone zatrzymanie, bez trybu czuwania 163 | Standby when you exit apps (tap \"Back\"), or background apps timed out; force-stop when reach inactive timeout, or swipe apps away from recents screen\n\nAlways force-stop ran apps without activity 164 | Standby when you exit apps (tap \"Back\"), or background apps timed out\n\nAlways force-stop ran apps without activity 165 | Force-stop when reach inactive timeout, or swipe apps away from recents screen\n\nAlways force-stop ran apps without activity 166 | Limit czasu aplikacji w tle 167 | Aplikacje w tle zostaną zbreventowane po %s\n\nBrevent dynamicznie pokazuje czas nieaktywności aplikacji 168 | 1 minuta 169 | 5 minut 170 | 15 minut 171 | 30 minut 172 | 1 godzina 173 | 3 godziny 174 | 6 godzin 175 | bardzo długi czas 176 | Inactive timeout 177 | Force-stop when apps have been inactive for %1$s 178 | 179 | Advanced features 180 | Language 181 | Auto 182 | Theme 183 | Show core apps 184 | All apps have the same signature with framework 185 | WTF, all apps are framework apps 186 | Show all apps 187 | Including system and core apps which cannot be launched nor upgraded 188 | 189 | Optimized Features 190 | Optimize Wechat 191 | Add to Battery Optimization whitelist, make it receive message as far as possible 192 | Optimize music player 193 | Won\'t be brevented while playing with notification, won\'t be force-stopped while pausing with notification\n\nNot works on some ROMs. May cause some samsung devices reboot 194 | Auto aggressive 195 | If app is ran with notifications as service, set it aggressive 196 | Show OS apps 197 | Android OS apps cannot be brevented 198 | 199 | Pokaż płatności 200 | 201 | 202 | Dzięki za kupno %s Brefoil w Sklepie Play 203 | Dzięki za kupno %s Brefoil 204 | Dzięki za bezcenny wkład w Brevent 205 | Dzięki za kupno %1$s Brefoil w Sklepie Play, %2$s Brefoil poprzez inne źródło 206 | Dzięki za kupno %s Brefoil w Sklepie Play i bezcenny wkład w rozwój Brevent 207 | Dzięki za kupno %s Brefoil i bezcenny wkład w rozwój Brevent 208 | Dzięki za kupno %1$s Brefoil w Sklepie Play, %2$s Brefoil poprzez inne źródło i bezcenny wkład w rozwój Brevent 209 | App ops 210 | Be careful, may cause apps crash 211 | Disable Apps 212 | Disabled apps must be enabled to use 213 | 214 | Experimental 215 | Dynamic GMS (Experimental) 216 | Enable and disable brevented GMS (Google Play services) dynamically 217 | Suspend (Experimental) 218 | Using suspend instead of Disable 219 | 220 | OCD options 221 | Auto update 222 | Update Brevent list when apps are installed or uninstalled 223 | Force stop check 224 | Notify if force-stop is too frequent 225 | Keep widgets 226 | Don\'t force-stop widgets to make them work 227 | Keep safe 228 | Don\'t force-stop safe processes 229 | 230 | O Brevent 231 | System status 232 | Standby: %1$s\nStopped state: %2$s\nAuto update: %3$s\nAuto brevent: %4$s\nApp ops: %5$s\nDisable Apps: %6$s\nSuspend Apps: %7$s 233 | Standby: %1$s\n(Read-only mode) 234 | supported 235 | unsupported 236 | Opcje programistyczne 237 | \"Debugowanie USB\" jest włączone 238 | 239 | Tłumaczenie 240 | bla_ke 241 | Licencje 242 | 243 | Brevent jest dostępny tylko dla Właściciela. 244 | Brevent nie jest dostępny w aplikacji klonowania. 245 | Brevent cannot work well on modified devices.\n\nFor stock ROM, please \"Feedback\" - \"Logs\". 246 | (Cannot create brevent.sh: %s) 247 | No permission to access Brevent server.\n\nTop apps: %1$s. 248 | No event log, Brevent server cannot work automatically.\n\nPlease try later, then contact Rom provider. 249 | No event log since %1$s, Brevent server cannot work automatically.\n\nPlease restart Brevent server, then contact Rom provider. 250 | Restart Brevent 251 | Serwer Brevent jest aktualizowany. Proszę spróbować później. 252 | Nie można uzyskać logów. Proszę spróbować ponownie później. 253 | Uruchamianie serwera Brevent zakończne niepowodzeniem. 254 | Since Android 8, Brevent server would stop working whenever \"USB Debugging\" turns off.\n\nDon\'t turn off \"USB debugging\", don\'t change USB options. 255 | Brevent server has no sufficient permissions, some features are unavailable. 256 | @string/unsupported_granted 257 | @string/unsupported_granted 258 | Invalid location for Brevent, please reinstall. 259 | You have brevented some important apps: %1$s.\n\nDo you wan to unbrevent them? 260 | You have brevented apps cannot be launched: %1$s.\n\nDo you want to unbrevent them? 261 | Required by: %1$s. 262 | Apps are marked as GMS App. 263 | Apps are allowed to receive messages via sync, broadcast, and FCM (Firebase Cloud Messaging). 264 | Apps are allowed to receive messages via sync or broadcast. 265 | Apps are in aggressive mode. Normally, brevented apps can run for several seconds for dependency check; in aggressive mode, background apps would be force-stopped directly. 266 | Apps won\'t be set as aggressive automatically. 267 | Apps are disabled, must be enabled to use. 268 | Apps are running temporarily, would be disabled later. 269 | Brevent won\'t force-stop connected VPN apps. 270 | Brevent won\'t force-stop playing apps. 271 | Brevent won\'t force-stop paused apps with notifications. 272 | Apps are in Battery Optimization whitelist, won\'t be standby. 273 | Safe apps. You shouldn\'t regard them as running. 274 | Apps are on standby, would be force-stopped when reach \"inactive timeout\" or swiped away from recents screen. 275 | Apps are running with foreground service, won\'t be brevented. 276 | \"Allow sync\" apps are running in background, won\'t be brevented. 277 | Apps would be standby when reach \"background apps timeout\", be force-stopped when reach \"inactive timeout\" or swiped away from recents screen. 278 | If apps are launched, would be standby in short time, be force-stopped when reach \"inactive timeout\" or swiped away from recents screen. Otherwise, would be force-stopped in short time. 279 | Apps are in brevent list. 280 | Apps are added as widget. 281 | , 282 | 283 | Brevent server is working 284 | Please turn on \"Developer options\", via tap \"Build Number\" 7 times 285 | Brevent server cannot read events 286 | 287 | Uruchamianie serwera Brevent 288 | Serwer Brevent nie jest uruchomiony 289 | 290 | Require to pay %s 291 | Pay now 292 | Not now (%1$d) 293 | Not now 294 | 295 | Brevented \"%1$s\" 296 | Unbrevented \"%1$s\" 297 | Fail to unbrevent \"%1$s\", please launch Brevent 298 | Set \"%1$s\" as aggressive 299 | Tap to unset. 300 | Unset \"%1$s\" 301 | Fail to unset \"%1$s\", please launch Brevent 302 | Recommend to unbrevent \"%1$s\" 303 | Brevented %1$d times in %2$s, tap to unbrevent. 304 | Recommend to disable \"%1$s\" 305 | Brevented %1$d times in %2$s, tap to disable. 306 | Disabled \"%1$s\" 307 | Fail to disable \"%1$s\", please launch Brevent 308 | 309 | Brevent server 310 | Auto unbrevent 311 | 312 | Reset 313 | Stop 314 | 315 | Restart Brevent server 316 | Uninstall static libraries 317 | %1$s\n# Error: output too large 318 | Exec command only supports simple shell script, use it at your risk. 319 | 320 | Brevent Disabled API 321 | Enable and disable apps via Brevent server 322 | 323 | 324 | 1 Brefoil 325 | 2 Brefoil 326 | 3 Brefoil 327 | 4 Brefoil 328 | 5 Brefoil 329 | 330 | 331 | Free 332 | @string/payment 333 | Unlimited 334 | @string/payment 335 | Professional 336 | Enjoy Android with Brevent 337 | Contributor 338 | Enjoy Brevent in Android 339 | 340 | Feizhi 341 | 342 | Pixel 343 | AOSP 344 | Play 345 | Nankai 346 | Amoled 347 | 348 | Mark GMS app 349 | Remove GMS app 350 | Add Instant app 351 | 352 | You have paid %d Brefoil. Pay more to turn on experimental features. 353 | You have paid %d Brefoil. It\'s unnecessary to pay more. 354 | Pay more 355 | Cancel 356 | 357 | Cannot cache play payment, please check network 358 | Cannot cache play payment, please try later 359 | 360 | There is a updated version \"%s\". 361 | You have installed the latest version. 362 | You have installed a beta version. 363 | Update 364 | 365 | Terms & Privacy 366 | You must accept Terms & Privacy to use Brevent. In short, Brevent will collect Anonymous Log Data via Visual Studio App Center. 367 | Accept 368 | Reject 369 | 370 | %1$s (Fallback to \"Pixel\" in Dark theme) 371 | 372 | Sort by \"%1$s" requires payment. Would you like to pay now? 373 | 374 | Device default 375 | 376 | Wireless debugging Port 377 | Please turn off / on Wireless debugging to auto discovery port. 378 | Cannot connect, please check port. 379 | Wireless debugging is unsupported. 380 | Wireless pair 381 | Wireless pairing Port 382 | Six digit code 383 | Please reply the six digit code. 384 | Wireless pairing 385 | Wireless paired 386 | Fail to wireless pair 387 | Please visit brevent.sh using Chrome on your PC to pair. 388 | Please tap \"Developer Options\", navigate to \"Wireless debugging\", then tap \"Pair device with pairing code\", reply Brevent\'s notification with the six digit code. 389 | Enable Notification 390 | 391 | @string/about_detail_en 392 | Charging 393 | Charging slowly 394 | Charging fast 395 | , %s W 396 | , %s until full 397 | . 398 | Battery remain time unknown. 399 | Battery remain time: %s. 400 | Battery remain time less than 1 minute. 401 | Battery Settings 402 | 403 | 404 | -------------------------------------------------------------------------------- /brevent/src/main/res/values-pt-rBR-v26/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Não desligue a \"Depuração USB\", não altere as opções de USB 5 | 6 | 7 | -------------------------------------------------------------------------------- /brevent/src/main/res/values-pt-rBR/ops.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | (%1$s) %2$s 5 | 6 | Permitir 7 | Ignorar 8 | Negar 9 | Padrão 10 | Foreground 11 | Perguntar 12 | Desconhecido (%d) 13 | Permission 14 | Granted 15 | Refused 16 | 17 | Opções do app 18 | Copy code 19 | Code copied: %s 20 | 21 | Permitido %s 22 | Rejeitado %s 23 | N/A 24 | 25 | @string/ops_mode_allow 26 | @string/ops_mode_ignore 27 | Redefinir 28 | Tempo 29 | Nome 30 | Grupo 31 | Código 32 | Modo 33 | 34 | Todos 35 | Apply template 36 | 37 | 38 | -------------------------------------------------------------------------------- /brevent/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Brevent 5 | Nrevent 6 | 7 | Boas-Vindas 8 | When you quit Android apps, the Activity has two states: stopped or destroyed.\n\nBrevent recognizes the states of apps in this way, preventing apps in Brevent list from running for a long time. 9 | When you tap Back to quit apps, if the Activity is destroyed, apps and depending services won\'t run anymore; tap Home or Overview, or just put apps into the background, the Activity is stopped, apps and depending services will keep running; swipe off apps from the Recents screen, apps will be force-stopped. Whenever apps are being run without activity, Brevent will force-stop them.\n\nApps in Brevent list can be set with \"allow sync\" option to receive notifications or execute jobs and syncs. Brevent won\'t standby \"allow sync\" apps, and Brevent won\'t force-stop \"allow sync\" apps with notifications or running in the background. 10 | 11 | Permissões 12 | O que você precisa fazer? \nApenas um simples comando via ADB com seu PC. 13 | Brevent não funcionará se o dispositivo Android conectado for reiniciado. Desde o Android 8, Brevent não funcionará se você desligar a \"Depuração USB\" ou alterar as opções de USB. 14 | 15 | Segurança 16 | Brevent não necessita de root ou modificar arquivos do sistema, nenhum resíduo é deixado após a desinstalação. 17 | Brevent usa muitas das APIs ocultas do Android. Algumas ROMs de terceiros podem modificar estas APIs, logo poderá haver alguns problemas quanto ao uso.\n\nNÃO use Brevent em dispositivos de trabalho, NEM BREVINA apps de trabalho, apps frequentemente usados, apps importantes. 18 | 19 | Aproveite 20 | Aproveite o Brevent e, se encontrar algum problema, sinta-se à vontade para enviar feedback com os logs. 21 | O método Brevent padrão é \"Em espera, depois forçar parada\". Em espera (desde Android 6.0, sem suporte em alguns dispositivos) apps não\podem acessar rede, nem executar trabalhos ou sincronizações.\n\nBrevent não\vai forçar parada de apps seguros. Além disso, o servidor Brevent reduz os aplicativos centralmente e atrasa os processos em 3 a 60 segundos, de acordo com o nível do evento. 22 | 23 | Iniciar Brevent 24 | 25 | Inicie o servidor Brevent (%s) 26 | O servidor Brevent não responde (%s) 27 | 1. Turn on \"Developer options\", enable \"USB debugging\" %1$s\n\n2. Connect to PC via USB %2$s\n\n3. Visit brevent.sh using Chrome on your PC\n\nOr\n\nExecute in PC\'s command line \"%3$s\" 28 | 1. Turn on \"Developer options\", enable \"USB debugging\" %1$s\n\n2. Connect to PC via USB %2$s\n\n3. Visit brevent.sh using Chrome on your PC 29 | Your device support \"Wireless debugging\".\n\n1. Turn on \"Developer options\", enable \"Wireless debugging\" %1$s\n\n2. tap \"Wireless debugging Port\" 30 | Parece que seus dispositivos tem Super úsuario (Root). Você pode ativar o ADB da rede manualmente ou tentar tocar em \"Root\" botão no Brevent.\n\nRoot é desnecessário para a Brevent e requer pagamento. 31 | O ADB de rede está ativado, toque em \"ADB\" iniciar o servidor Brevent. 32 | Root é desnecessário para o Brevent e requer pagamento. 33 | Desenvolvedor 34 | Copiar comando 35 | Comando copiado: %s 36 | (Ativado) 37 | (USB conectado) 38 | servidor Brevent iniciado com sucesso. Toque nos ícones do aplicativo para escolher e depois faça um brevinamento neles. 39 | O servidor Brevent não foi iniciado. Brevent está no modo somente leitura. 40 | Modo somente leitura 41 | 42 | Apps de Usuário 43 | Apps de Sistema 44 | Apps de Núcleo 45 | OS Apps 46 | 47 | Recuperando status dos processos. . . 48 | Recuperando apps. . . 49 | Recuperando registros. . . 50 | Iniciando servidor Brevent. . . 51 | Verificando servidor Brevent. . . 52 | 53 | Persistente 54 | Primeiro plano 55 | Executando 56 | Ociosos 57 | Ignorados 58 | Desativados 59 | Encerrados 60 | Desinstalado 61 | (não executando) 62 | (nunca lançado) 63 | (último: %1$s, total: %2$s) 64 | executando %s 65 | %d principal 66 | %d serviço 67 | %d cached service 68 | %d sem cache 69 | %d 70 | %d serviço 71 | %d serviço em cache 72 | total %d 73 | 74 |  processo 75 |  processos 76 | 77 | 78 | Brevenir 79 | Desbrevenir 80 | Importante 81 | Inverso 82 | Brevenidos %d apps 83 | Desbrevenidos %d apps 84 | Desfazer 85 | Desfeito 86 | 87 | API %1$d (%2$s) 88 | Copiar nome do pacote 89 | Informação do app 90 | Lançar 91 | Informação do servidor Brevent 92 | Permitir sincronização 93 | Definir agressivo 94 | Desativado agressivo automaticamente 95 | Desativar 96 | Copiado nome do pacote: %s 97 | Desativar 98 | Ativar 99 | Ativação instantânea 100 | Loja 101 | Desinstalar (manter dados) 102 | Desinstalar 103 | Desinstalar (manter dados) removerá o pacote, mas mantenha os diretórios de dados e cache no local.\n\nVocê está confirmando 104 | Desinstalar removeria os diretórios de dados e cache.\n\nVocê está confirmando? 105 | 106 | %s (Método de entrada) 107 | %s (App de alarme) 108 | %s (App de SMS) 109 | %s (App de início) 110 | %s (Persistente) 111 | %s (Processo do Android) 112 | %s (App de telefone) 113 | %s (App de assistência) 114 | %s (WebView) 115 | %s (Acessibilidade) 116 | %s (Administrador do dispositivo) 117 | %s (FCM) 118 | %s (sem Ocioso) 119 | %s (Agente de confiança) 120 | %s (GMS) 121 | %s (Plano de fundo) 122 | %s (Ouvidor de notificação) 123 | Sistema 124 | Telefonia 125 | Bluetooth 126 | NFC 127 | Elemento seguro 128 | Pilha de rede 129 | Shell 130 | UID %1$d 131 | 132 | Pesquisar 133 | Ordenar por 134 | App 135 | Hora de instalação 136 | Hora de atualização 137 | Última vez usado 138 | Tempo de uso 139 | Tamanho do APK (Pro) 140 | Uso médio de memória (Pro) 141 | Uso máximo de memória (Pro) 142 | Contact 143 | Definições 144 | Modelo 145 | Guia 146 | Battery 147 | Executar comando 148 | Iniciar Brevent 149 | 150 | Feel free to contact us.\n\nEmail: brevent@jianyu.io\n\nIf you have a GitHub account, please create an issue; you can view opened issues too.%s 151 | \n\nFor private messages, email us. 152 | GitHub 153 | E-mail 154 | Registros 155 | 156 | Lista de brevenção 157 | Ativar Brevent 158 | O Brevent se aplica apenas a aplicativos na lista Brevent 159 | Método de brevenção 160 | Ocioso, em seguida forçar-parada 161 | Apenas Ocioso, sem forçar-parada 162 | Apenas forçar-parada, sem Ocioso 163 | Em espera quando você sai dos apps (toque \"Voltar\"), ou aplicativos em segundo plano atingiram o tempo limite; forçar parada ao atingir o tempo limite inativo ou limpar apps da tela recentes\n\nSempre forçar a parada de aplicativos executados sem atividade 164 | Em espera quando você sai dos aplicativos (toque \"Voltar\"), ou aplicativos em segundo plano atingiram o tempo limite\n\nSempre forçar a parada de aplicativos executados sem atividade 165 | Forçar parada ao atingir o tempo limite inativo ou limpar apps da tela recentes\n\nSempre forçar a parada de aplicativos executados sem atividade 166 | Tempo limite de apps em segundo plano 167 | Apps em segundo plano serão brevenidos após %s\n\nBrevent mostra o tempo inativo para apps em segundo plano dinamicamente 168 | 1 minuto 169 | 5 minutos 170 | 15 minutos 171 | 30 minutos 172 | 1 hora 173 | 3 horas 174 | 6 horas 175 | muito longo 176 | Tempo limite inativo 177 | Forçar parada quando os apps estiverem inativos por %1$s 178 | 179 | Recursos avançados 180 | Língua 181 | Auto 182 | Tema 183 | Mostrar apps principais núcleo 184 | Todos os aplicativos têm a mesma assinatura com o framework 185 | OPA, todos os aplicativos são aplicativos de estrutura 186 | Mostrar todos os apps 187 | Incluindo apps principais (núcleo) e do sistema que não podem ser iniciados nem alterados 188 | 189 | Recursos otimizados 190 | Otimize Wechat 191 | Adicione à lista branca de otimização de bateria, faça com que ela receba a mensagem o máximo 192 | Otimize o player de música 193 | Não\vai ser brevenido enquanto toca a notificação, não\vai ser interrompido à força ao pausar com notificação\n\nNão funciona em algumas ROMs. Pode causar a reinicialização de alguns dispositivos Samsung 194 | Auto agressivo 195 | Se o aplicativo for executado com notificações como serviço, defina-o como agressivo 196 | Mostrar aplicativos do SO 197 | Os aplicativos do sistema operacional Android não podem ser brevenidos 198 | 199 | Mostrar pagamento 200 | 201 | 202 | Obrigado por pagar %s Brefoil via Play Store 203 | Obrigado por pagar %s Brefoil 204 | Obrigado pela inestimável contribuição no Brevent 205 | Obrigado por pagar %1$s Brefoil via Play Store, %2$s Brefoil via não Play Store 206 | Obrigado por pagar %s Brefoil via Play Store, e inestimável contribuição no Brevent 207 | Obrigado por pagar %s Brefoil, e inestimável contribuição no Brevent 208 | Obrigado por pagar %1$s Brefoil via Play Store, %2$s Brefoil via não Play Store, e inestimável contribuição no Brevent 209 | App ops 210 | Tenha cuidado, pois pode causar falha nos aplicativos 211 | Desativar Apps 212 | Aplicativos desativados devem estar ativados para usar 213 | 214 | Experimental 215 | Dinâmico GMS (Experimental) 216 | Habilitar e desabilitar o GMS brevenição (Google Play services) dinamicamente 217 | Suspender (Experimental) 218 | Usando suspender em vez de Desativar 219 | 220 | OCD opções 221 | Auto atualizar 222 | Atualizar lista Brevent quando os aplicativos são instalados ou desinstalados 223 | Forçar verificação de parada 224 | Notificar se a parada forçada é muito frequente 225 | Manter widgets 226 | Não\irá interromper widgets para fazê-los funcionar 227 | Manter protegido 228 | Não\irá interromper processos protegidos 229 | 230 | Sobre 231 | Status do sistema 232 | Modo de espera: %1$s\nEstado parado: %2$s\nAtualização automática: %3$s\nAuto brevent: %4$s\nApp ops: %5$s\nDesativar Apps: %6$s\nSuspender apps: %7$s 233 | Modo de espera: %1$s\n(Modo somente leitura) 234 | suportado 235 | não suportado 236 | Opções do desenvolvedor 237 | \"Depuração USB\" está ligada 238 | 239 | Tradutor 240 | Feliph, Maawu 241 | Licenças 242 | 243 | Brevent está apenas disponível para Proprietário. 244 | Brevent está indisponível no Clone de app. 245 | Brevent pode não funcionar bem em dispositivos modificados.\n\nPara estoque ROM, por favor \"Feedback\" - \"Logs\". 246 | (Não é possível criar brevent.sh: %s) 247 | Sem permissão para acessar o servidor Brevent.\n\nPrincípais apps: %1$s. 248 | Nenhum evento de registro, o servidor Brevent não pode funcionar automaticamente.\n\nTente mais tarde, em seguida contate o provedor da Rom. 249 | Nenhum registro de evento desde %1$s, o servidor Brevent não pode funcionar automaticamente.\n\nReinicie o servidor Brevent, em seguida contate o provedor da Rom. 250 | Reiniciar Brevent 251 | O servidor Brevent está atualizando. Tente novamente mais tarde. 252 | Não foi possível obter registros. Tente novamente mais tarde. 253 | Falha ao iniciar o servidor Brevent. 254 | Desde o Android 8, o servidor Brevent deixará de funcionar sempre que a \"Depuração USB\" for desligada.\n\nNão desligue a \"Depuração USB\", não altere as opções de USB. 255 | O servidor Brevent não tem permissões suficientes, alguns recursos estão indisponíveis. 256 | @string/unsupported_granted 257 | @string/unsupported_granted 258 | Localização inválida para Brevent, reinstale. 259 | Você breveniu alguns apps importantes: %1$s.\n\nDesbreveni-los? 260 | Você Breveniu apps que não pode ser iniciado: %1$s.\n\nDeseja desbrevenir eles? 261 | Solicitado por: %1$s. 262 | Os apps estão marcados como GMS App. 263 | Os apps têm permissão para receber mensagens por sincronização, transmissão e FCM (Firebase Cloud Messaging). 264 | Os apps têm permissão para receber mensagens por sincronização ou transmissão. 265 | Os apps estão no modo agressivo. Normalmente, aplicativos brevented podem ser executados por vários segundos para verificação de dependência; no modo agressivo, os aplicativos em segundo plano seriam interrompidos à força diretamente. 266 | Apps não\vão ser definido como agressivo automaticamente. 267 | Os aplicativos estão desabilitados, devem estar habilitados para uso. 268 | Os apps estão sendo executados temporariamente e serão desativados mais tarde. 269 | Brevent não\vai forçar parada de apps VPN conectados. 270 | Brevent não\vai forçar parada de apps rodando. 271 | Brevent não\vai forçar parada de apps pausados ​​com notificações. 272 | Os apps estão na lista branca de otimização de bateria, não\vão estar em espera. 273 | Apps protegidos.Você não\deveria considerá-los em execução. 274 | Os apps estão em modo de espera e são interrompidos quando o chegar no \"tempo limite inativo\" ou limpe apps da tela de recentes. 275 | Os apps estão sendo executados com o serviço em primeiro plano, não\serão brevenidos. 276 | \"Permitir sinc\" apps estão sendo executados em segundo plano, não\serão brevenidos. 277 | Os apps ficam em espera quando chegam no \"tempo limite dos aplicativos em segundo plano\", e forçado a parar quando chegar \"tempo limite inativo\" ou limpe apps da tela recentes. 278 | Se os apps forem iniciados, ficarão em espera em pouco tempo, serão interrompidos quando chegar \"tempo limite inativo\" ou limpe apps da tela recentes. Caso contrário, seria interrompido à força em pouco tempo. 279 | Apps estão na lista brevent. 280 | Apps são adicionados como widget. 281 | , 282 | 283 | Servidor Brevent está funcionando 284 | Please turn on \"Developer options\", via tap \"Build Number\" 7 times 285 | O servidor Brevent não pode ler o eventos 286 | 287 | Iniciando servidor Brevent 288 | Servidor Brevent não iniciado 289 | 290 | Requer pagamento %s 291 | Pague agora 292 | Não agora (%1$d) 293 | Não agora 294 | 295 | Brevenido \"%1$s\" 296 | Desbrevenido \"%1$s\" 297 | Falha ao desbrevenir \"%1$s\", por facor inicie Brevent 298 | Definir \"%1$s\" como agressivo 299 | Toque para desativar. 300 | Desativar \"%1$s\" 301 | Falha ao Desativar \"%1$s\", por favor inicie Brevent 302 | Recomendado desbrevenir \"%1$s\" 303 | Brevenido %1$d vezes em %2$s, toque para Desbrevenir. 304 | Recomendado desativar \"%1$s\" 305 | Brevenido %1$d vezes em %2$s, toque para desativar. 306 | Desativado \"%1$s\" 307 | Falha ao desativar \"%1$s\", por favor inicie Brevent 308 | 309 | Servidor Brevent 310 | Auto Desbrevenir 311 | 312 | Redefinir 313 | Encerrar 314 | 315 | Reiniciar servidor Brevent 316 | Uninstall static libraries 317 | %1$s\n# Erro: saída muito grande 318 | Executar comando apenas suporta script de shell simples, use-o por sua conta e risco. 319 | 320 | API Brevent Desativada 321 | Ativar e desativar apps via servidor Brevent 322 | 323 | 324 | 1 Brefoil 325 | 2 Brefoil 326 | 3 Brefoil 327 | 4 Brefoil 328 | 5 Brefoil 329 | 330 | 331 | Grátis 332 | @string/payment 333 | Ilimitado 334 | @string/payment 335 | Professional 336 | Aproveite o Android com Brevent 337 | Contribuidor 338 | Aproveite o Brevent no Android 339 | 340 | Feizhi 341 | 342 | Pixel 343 | AOSP 344 | Play 345 | Nankai 346 | Amoled 347 | 348 | Marcar aplicativo GMS 349 | Desmarcar aplicativo GMS 350 | Add instant apps 351 | 352 | Você pagou %d Brefoil. Pague mais para ligar recursos experimentais. 353 | Você pagou %d Brefoil. Isso\é desnecessário pagar mais. 354 | Pague mais 355 | Cancelar 356 | 357 | Não é possível armazenar em cache o pagamento pela loja. Verifique a rede 358 | Não é possível armazenar em cache o pagamento loja.Tente depois 359 | 360 | Há uma versão mais recente disponível \"%s\". 361 | Você tem instalado a versão mais recente. 362 | Você tem instalado uma versão beta. 363 | Atualizar 364 | 365 | Termos & Privacidade 366 | You must accept Terms & Conditions and Privacy Policy to use Brevent. In short, Brevent will collect anonymous log data via Visual Studio App Center. 367 | Aceite 368 | Reject 369 | 370 | %1$s (Retroceder para \"Pixel\" no Tema escuro) 371 | 372 | Ordenar por \"%1$s" requer pagamento. Deseja pagar agora? 373 | 374 | Padrão do dispositivo 375 | 376 | Wireless debugging Port 377 | Please turn off / on Wireless debugging to auto discovery port. 378 | Cannot connect, please check port. 379 | Wireless debugging is unsupported. 380 | Wireless pair 381 | Wireless pairing Port 382 | Six digit code 383 | Please reply the six digit code. 384 | Wireless pairing 385 | Wireless paired 386 | Fail to wireless pair 387 | Please visit brevent.sh using Chrome on your PC to pair. 388 | Please tap \"Developer Options\", navigate to \"Wireless debugging\", then tap \"Pair device with pairing code\", reply Brevent\'s notification with the six digit code. 389 | Enable Notification 390 | 391 | @string/about_detail_en 392 | Charging 393 | Charging slowly 394 | Charging fast 395 | , %s W 396 | , %s until full 397 | . 398 | Battery remain time unknown. 399 | Battery remain time: %s. 400 | Battery remain time less than 1 minute. 401 | Battery Settings 402 | 403 | 404 | -------------------------------------------------------------------------------- /brevent/src/main/res/values-ru-v26/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Не выключайте \"Отладку по USB\", не меняйте параметры USB. 5 | 6 | -------------------------------------------------------------------------------- /brevent/src/main/res/values-ru/ops.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | (%1$s) %2$s 5 | 6 | Разрешить 7 | Игнорировать 8 | Запретить 9 | По умолчанию 10 | Передний план 11 | Запрос 12 | Неизвестно (%d) 13 | Разрешения 14 | Разрешено 15 | Отказано 16 | 17 | App ops 18 | Копировать код 19 | Код скопирован: %s 20 | 21 | Разрешено %s 22 | Отказано %s 23 | Н/Д 24 | 25 | @string/ops_mode_allow 26 | @string/ops_mode_ignore 27 | Сброс 28 | Время 29 | Имя 30 | Група 31 | Код 32 | Режим 33 | 34 | Все 35 | Применить шаблон 36 | 37 | -------------------------------------------------------------------------------- /brevent/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Brevent 5 | Nrevent 6 | 7 | Добро пожаловать 8 | When you quit Android apps, the Activity has two states: stopped or destroyed.\n\nBrevent recognizes the states of apps in this way, preventing apps in Brevent list from running for a long time. 9 | When you tap Back to quit apps, if the Activity is destroyed, apps and depending services won\'t run anymore; tap Home or Overview, or just put apps into the background, the Activity is stopped, apps and depending services will keep running; swipe off apps from the Recents screen, apps will be force-stopped. Whenever apps are being run without activity, Brevent will force-stop them.\n\nApps in Brevent list can be set with \"allow sync\" option to receive notifications or execute jobs and syncs. Brevent won\'t standby \"allow sync\" apps, and Brevent won\'t force-stop \"allow sync\" apps with notifications or running in the background. 10 | 11 | Разрешения 12 | Что нужно сделать? \nВведите простую команду через ADB на вашем ПК. 13 | Brevent не будет работать после перезагрузки вашего Android устройства. Начиная с Android 8, Brevent не будет работать, если вы отключите \"Отладку по USB\" или измените параметры USB. 14 | 15 | Безопасность 16 | Brevent не требуется root доступ или возможность изменять системные файлы, после удаления не остается никаких остатков. 17 | Brevent использует множество скрытых API Android. Некоторые прошивки могут изменять эти API-интерфейсы, поэтому при использовании Brevent с такими прошивками могут возникнуть некоторые проблемы. \n\nНЕ ИСПОЛЬЗУЙТЕ Brevent на рабочих устройствах и НЕ БЛОКИРУЙТЕ рабочие, часто используемые или важные приложения. 18 | 19 | Наслаждайтесь 20 | Наслаждайтесь Brevent. В случае обнаружения каких-либо проблем, пожалуйста, отправьте отзыв с логами. 21 | По умолчанию для блокировки Brevent использует метод \"Режим ожидания, затем принудительная остановка\". В режиме ожидания ( не поддерживается на некоторых устройствах, начиная с Android 6.0) приложения не могут получить доступ к сети, выполнять задания или синхронизацию.\n\nBrevent не будет принудительно останавливать безопасные приложения. Кроме того, сервер Brevent централизованно блокирует приложения и задерживает процессы на 3–60 секунд в зависимости от уровня события. 22 | 23 | Запустить Brevent 24 | 25 | Пожалуйста, запустите сервер Brevent (%s) 26 | Сервер Brevent не отвечает (%s) 27 | 1. Включите \"Для разработчиков\", включите \"Отладку по USB\" %1$s\n\n2. Подключитесь к ПК через USB %2$s\n\n3. Посетите brevent.sh с помощью Chrome на вашем ПК\n\nИли\n\nВыполните в командной строке ПК \"%3$s\" 28 | 1. Включите \"Для разработчиков\", включите \"Отладку по USB\" %1$s\n\n2. Подключитесь к ПК через USB %2$s\n\n3. Посетите brevent.sh с помощью Chrome на вашем ПК 29 | Ваше устройство поддерживает \"Беспроводную отладку\".\n\n1. Включите \"Для разработчиков\", включите \"Беспроводную отладку\" %1$s\n\n2. нажмите \"Порт беспроводной отладки\" 30 | Кажется, что ваше устройство рутировано. Вы можете включить сеть ADB вручную или попробовать нажать кнопку \"Root\" в Brevent.\n\nRoot не требуется для Brevent и требует оплаты. 31 | Сеть ADB включена, нажмите \"ADB\", чтобы запустить Brevent сервер. 32 | Для Brevent root не нужен и требует оплаты. 33 | Для разработчиков 34 | Скопировать команду 35 | Команда скопирована: %s 36 | (Включено) 37 | (USB подключен) 38 | Сервер Brevent успешно запущен. Пожалуйста, нажимайте на иконки приложений для их блокировки. 39 | Сервер Brevent не запущен. Brevent находится в режиме только чтение. 40 | Режим только чтение 41 | 42 | Приложения пользователя 43 | Системные приложения 44 | Core Apps 45 | Приложения ОС 46 | 47 | Получение состояния процесса... 48 | Получение списка приложений... 49 | Получение логов... 50 | Запуск сервера Brevent... 51 | Проверка сервера Brevent... 52 | 53 | Постоянные 54 | Службы переднего плана 55 | Работающие 56 | В режиме ожидания 57 | Игнорируемые 58 | Отключены 59 | Остановлены 60 | Удаленные 61 | (не работающие) 62 | (никогда не запускалось) 63 | (последний: %1$s, всего: %2$s) 64 | работает %s 65 | %d top 66 | %d service 67 | %d cached service 68 | %d cached 69 | %d 70 | %d service 71 | %d cached service 72 | всего %d 73 | 74 |  process 75 |  processes 76 | 77 | 78 | Заблокировать 79 | Разблокировать 80 | Важные 81 | Обратный порядок 82 | Заблокировано %d приложений 83 | Разблокировано %d приложений 84 | Отмена 85 | Отменено 86 | 87 | API %1$d (%2$s) 88 | Скопировать имя пакета 89 | О приложении 90 | Запустить 91 | Информация о сервере Brevent 92 | Разрешить синхронизацию 93 | Установить агрессивный 94 | Не агрессивный 95 | Не установлен 96 | Скопировано имя пакета: %s 97 | Отключить 98 | Включить 99 | Мгновенное включение 100 | Маркет 101 | Удаление (сохранить данные) 102 | Удаление 103 | Удаление (сохранить данные) приведет к удалению пакета, но сохранит каталоги данных и кэша.\n\nВы подтверждаете? 104 | При удалении будут удалены каталоги данных и кэша.\n\nВы подтверждаете? 105 | 106 | %s (Метод ввода) 107 | %s (Будильник) 108 | %s (Приложение SMS ) 109 | %s (Лончер) 110 | %s (Постоянное) 111 | %s (Android процесс) 112 | %s (Приложение для звонков) 113 | %s (Вспомогательное приложение) 114 | %s (WebView) 115 | %s (Специальные возможности) 116 | %s (Администраторы устройства) 117 | %s (FCM) 118 | %s (Без режима ожидания) 119 | %s (Trust agent) 120 | %s (GMS) 121 | %s (Обои) 122 | %s (Слушатель уведомлений) 123 | Система 124 | Телефония 125 | Bluetooth 126 | NFC 127 | Secure Element 128 | Сетевой стек 129 | Оболочка 130 | UID %1$d 131 | 132 | Поиск 133 | Сортировка по 134 | Имя приложения 135 | Время установки 136 | Время обновления 137 | Последнее использование 138 | Время использования 139 | Размер АРК (Pro) 140 | Среднее использование памяти (Pro) 141 | Максимальное использование памяти (Pro) 142 | Контакты 143 | Настройки 144 | Шаблон 145 | Справка 146 | Батарея 147 | Выполнение команд 148 | Запуск Brevent 149 | 150 | Не стесняйтесь обращаться к нам.\n\nEmail: brevent@jianyu.io\n\nЕсли у вас есть аккаунт GitHub, создайте вопрос по проблеме; вы также можете просматривать уже открытые вопросы по проблеме.%s 151 | \n\nДля личных сообщений напишите нам на email. 152 | GitHub 153 | Email 154 | Логи 155 | 156 | Список блокировки 157 | Включить Brevent 158 | Brevent применяется только к приложениям из списка блокировки. 159 | Метод блокировки 160 | Режим ожидания, затем принудительная остановка 161 | Только режим ожидания, без принудительной остановки 162 | Только принудительная остановка, без режима ожидания 163 | Переход в режим ожидания при выходе из приложений (нажатие \"Назад\") или истечении тайм-аута фоновых приложений; принудительная остановка, когда приложения достигают тайм-аута неактивности, или при смахивани приложения с экрана недавних\n\nВсегда принудительно останавливать работающие приложения без активности 164 | Переход в ждущий режим при выходе из приложений (нажатие \"Назад\") или истечении тайм-аута фоновых приложений\n\nВсегда принудительно останавливать работающие приложения без активности 165 | Принудительно останавливать, когда приложения достигают тайм-аута неактивности, или после смахивание приложения с экрана недавних\n\nВсегда принудительно останавливать работающие приложения без активности 166 | Тайм-аут фоновых приложений 167 | Фоновые приложения будут блокированы через %s\n\nBrevent динамически покажет время неактивности для фоновых приложений 168 | 1 минута 169 | 5 минут 170 | 15 минут 171 | 30 минут 172 | 1 ч. 173 | 3 ч. 174 | 6 ч. 175 | очень долго 176 | Тайм-аут неактивности 177 | Принудительно останавливать приложения, которые были неактивны в течение %1$s 178 | 179 | Расширенные возможности 180 | Язык 181 | Авто 182 | Тема 183 | Показывать core apps 184 | Все приложения с той же подписью, что и Android Framework. 185 | WTF, все приложения - это фреймворк приложения 186 | Показывать все приложения 187 | Включая системные и core apps, которые нельзя запустить или обновить 188 | 189 | Функции оптимизации 190 | Оптимизировать Wechat 191 | Добавить в белый список экономии заряда батареи, для безпрепятственного получения сообщений 192 | Оптимизировать музыкальный плеер 193 | Не будет блокироваться при воспроизведении с уведомлением, не будет принудительно остановлен, если стоит на паузе с уведомлением.\n\nНе работает на некоторых прошивках. Может вызвать перезагрузку некоторых устройств Samsung 194 | Авто агрессивный 195 | Если приложение с уведомлениями работает как служба, установите для него агрессивный режим. 196 | Показывать приложения ОС 197 | Приложения ОС Android нельзя блокировать 198 | 199 | Показывать оплату 200 | 201 | 202 | Спасибо за покупку %s Brefoil через Play Store 203 | Спасибо за покупку %1s Brefoil 204 | Спасибо за бесценный вклад в Brevent 205 | Спасибо за покупку %1$s Brefoil через Play Store, %2$s Brefoil не через Play Store 206 | Спасибо за покупку %s Brefoil через Play Store и за бесценный вклад в Brevent 207 | Спасибо за покупку %s Brefoil и за бесценный вклад в Brevent 208 | Спасибо за покупку %1$s Brefoil через Play Store, %2$s Brefoil не через Play Store и за бесценный вклад в Brevent 209 | App ops 210 | Будьте осторожны, это может привести к сбою приложений 211 | Отключить приложения 212 | Отключенные приложения должны быть включены для использования 213 | 214 | Экспериментальные 215 | Динамический GMS (экспериментально) 216 | Динамическое включение и отключение встроенных GMS (сервисов Google Play) 217 | Приостановка (экспериментально) 218 | Использование приостановки вместо отключения 219 | 220 | Варианты OCD 221 | Автообновление 222 | Обновлять список Brevent при установке или удалении приложений 223 | Проверка принудительной остановки 224 | Уведомлять, если принудительная остановка выполняется слишком часто 225 | Сохранять виджеты 226 | Не останавливайте виджеты принудительно, если хотите, чтобы они работали 227 | Сохранять безопасные 228 | Не останавливать принудительно безопасные процессы 229 | 230 | О приложении 231 | Состояние системы 232 | Ожидание: %1$s\nОстановленное состояние: %2$s\nАвтобновлениe: %3$s\nАвтоблокировка: %4$s\nApp ops: %5$s\nОтключение приложений: %6$s\nПриостановка: %7$s 233 | Ожидание: %1$s\n(режим только для чтения) 234 | поддерживается 235 | не поддерживается 236 | Для разработчиков 237 | \"Отладка по USB\" включена 238 | 239 | Перевод 240 | tommynok 241 | Лицензии 242 | 243 | Brevent доступен только для владельца. 244 | Brevent недоступен в клоне приложения. 245 | Brevent не может хорошо работать на модифицированных устройствах.\n\nДля стоковой прошивки, пожалуйста, \"Обратная связь\" - \"Логи\". 246 | (Невозможно создать brevent.sh: %s) 247 | Нет разрешения на доступ к серверу Brevent.\n\nTop apps: %1$s. 248 | Нет лога событий, сервер Brevent не может работать автоматически.\n\nПопробуйте позже или обратитесь к поставщику прошивки. 249 | Нет лога событий с %1$s, сервер Brevent не может работать автоматически.\n\nПопробуйте позже или обратитесь к поставщику прошивки. 250 | Перезапуск Brevent 251 | Сервер Brevent обновляется. Пожалуйста, повторите попытку позже. 252 | Не удается получить логи. Пожалуйста, повторите попытку позже. 253 | Не удалось запустить сервер Brevent. 254 | Начиная с Android 8, сервер Brevent перестанет работать всякий раз, когда будет отключена \"Отладка по USB\".\n\nНе выключайте \"Отладку по USB\", не меняйте параметры USB. 255 | Сервер Brevent не имеет достаточных разрешений; некоторые функции недоступны. 256 | @string/unsupported_granted 257 | @string/unsupported_granted 258 | Неверное расположение для Brevent; пожалуйста, переустановите. 259 | Вы заблокировали важные приложения: %1$s.\n\nВы хотите их разблокировать? 260 | Вы заблокировали приложения, которые невозможно запустить: %1$s.\n\nВы хотите их разблокировать? 261 | Требуется для: %1$s. 262 | Приложения отмечены как GMS приложения. 263 | Приложениям разрешено получать сообщения через синхронизацию, широковещательную рассылку и FCM (Firebase Cloud Messaging). 264 | Приложениям разрешено получать сообщения через синхронизацию или широковещательную рассылку. 265 | Приложения находятся в агрессивном режиме. Обычно заблокированые приложения могут работать в течение нескольких секунд для проверки зависимости; в агрессивном режиме фоновые приложения будут напрямую принудительно остановлены. 266 | Приложения не будут автоматически настроены как агрессивные. 267 | Приложения отключены, для использования их необходимо включить. 268 | Приложения работают временно, будут отключены позже. 269 | Brevent не будет принудительно останавливать подключенные VPN приложения. 270 | Brevent не будет принудительно останавливать играющие приложения. 271 | Brevent не будет принудительно останавливать приложения с уведомлениями, которые поставлены на паузу. 272 | Приложения находящиеся в белом списке оптимизации батареи, не будут переводиться в режим ожидания. 273 | Безопасные приложения. Не считайте их работающими. 274 | Приложения находящиеся в режиме ожидания, будут принудительно остановлены, когда они достигнут \"тайм-аута неактивности\", или будут удалены из \"Недавних\". 275 | Приложения работающие с сервисом переднего плана, не будут блокироваться. 276 | Работающие в фоновом режиме приложения из списка \"Разрешить синхронизацию\" не будут блокироваться. 277 | Приложения будут переведены в режим ожидания, когда они достигнут \"тайм-аута фоновых приложений\", будут принудительно остановлены, когда они достигнут \"тайм-аута неактивности\, или будут удалены из экрана \"Недавних\". 278 | Если приложения запущены, они будут переведены в режим ожидания через короткое время и будут принудительно остановлены, когда достигнут \"тайм-аута неактивности\", или будут удалены с экрана недавних. В противном случае они будут принудительно остановлены в ближайшее время. 279 | Приложения находятся в списке блокировки. 280 | Приложения добавлены как виджет. 281 | , 282 | 283 | Сервер Brevent работает 284 | Включите \"Параметры разработчика\", 7 раз нажав \"Номер сборки\" в настройках устройства. 285 | Сервер Brevent не может читать события 286 | 287 | Запуск сервера Brevent 288 | Сервер Brevent не запущен 289 | 290 | Требуется оплата %s 291 | Заплатить сейчас 292 | Не сейчас (%1$d) 293 | Не сейчас 294 | 295 | Заблокировано "%1$s" 296 | Разблокировано "%1$s" 297 | Не удалось разблокировать "%1$s", запустите Brevent. 298 | Установить "%1$s" как агрессивный 299 | Нажмите для отмены. 300 | Отмена "%1$s" 301 | Сбой отмены "%1$s", запустите Brevent 302 | Рекомендуется разблокировка \"%1$s\" 303 | Заблокировано %1$d раз за %2$s, нажмите чтоб разблокировать. 304 | Рекомендуется отключить "%1$s" 305 | Заблокировано %1$d раз в %2$s, нажмите, чтоб отключить. 306 | Отключено "%1$s" 307 | Сбой отключения "%1$s", запустите Brevent 308 | 309 | Сервер Brevent 310 | Автоматическая разблокировка 311 | 312 | Сброс 313 | Стоп 314 | Обновить адаптивный портал 315 | Перезагрузка сервера Brevent 316 | Удалить статические библиотеки 317 | %1$s\n# Вывод слишком большой 318 | Функция \"Выполнение команд\" поддерживает только простые shell скрипты, используйте на свой страх и риск. 319 | 320 | Brevent Disabled API 321 | Включение и отключение приложений через сервер Brevent 322 | 323 | 324 | 1 Brefoil 325 | 2 Brefoil 326 | 3 Brefoil 327 | 4 Brefoil 328 | 5 Brefoil 329 | 330 | 331 | Бесплатная версия 332 | @string/payment 333 | Без ограничений 334 | @string/payment 335 | Pro версия 336 | Наслаждайтесь Android с Brevent 337 | Участник проекта 338 | Наслаждайтесь Brevent с Android 339 | 340 | Feizhi 341 | 342 | Pixel 343 | AOSP 344 | Play 345 | Nankai 346 | Amoled 347 | 348 | Отметить GMS приложение 349 | Снять отметку с приложения GMS 350 | Добавить приложение с мгновенным запуском 351 | 352 | Вы оплатили %d Brefoil. Оплатите больше, чтобы включить экспериментальные функции. 353 | Вы оплатили %d Brefoil. Больше оплата не требуется. 354 | Заплатить больше 355 | Отмена 356 | 357 | Не удается кэшировать платеж для воспроизведения, проверьте сеть 358 | Не удается кэшировать платеж для воспроизведения, попробуйте позже 359 | 360 | Доступна новая версия "%s". 361 | У вас установлена последняя версия. 362 | У вас установлена бета-версия. 363 | Обновление 364 | 365 | Условия и конфиденциальность 366 | Вы должны принять \"Условия и положения\" и \"Политику конфиденциальности\", чтобы использовать Brevent. Коротко - Brevent будет собирать анонимные данные через Visual Studio App Center. 367 | Принять 368 | Отклонить 369 | 370 | %1$s (Возврат к "Pixel" в темной теме) 371 | 372 | Сортировка по "%1$s" требует оплаты. Вы хотите заплатить сейчас? 373 | 374 | Устройство по умолчанию 375 | 376 | Порт беспроводной отладки 377 | Пожалуйста, выключите/включите беспроводную отладку до автоматического обнаружения порта. 378 | Не удается подключиться, проверьте порт. 379 | Беспроводная отладка не поддерживается. 380 | Беспроводное сопряжение 381 | Порт беспроводного сопряжения 382 | Шестизначный код 383 | Пожалуйста, ответьте шестизначным кодом. 384 | Беспроводное сопряжение 385 | Сопряжено 386 | Сбой беспроводного сопряжения 387 | Посетите brevent.sh с помощью Chrome на вашем ПК для сопряжения. 388 | Нажмите \"Для разработчиков\", перейдите к \"Беспроводная отладка\", затем нажмите \"Сопряжение устройства с кодом сопряжения\", ответьте на уведомление Brevent шестизначным кодом. 389 | Enable Notification 390 | 391 | @string/about_detail_en 392 | Зарядка 393 | Медленная зарядка 394 | Быстрая зарядка 395 | , %s W 396 | , %s до полной 397 | . 398 | Время работы от батареи 399 | Время работы от батареи: %s. 400 | Время работы от батареи менее 1 минуты. 401 | Настройки батареи 402 | 403 | 404 | -------------------------------------------------------------------------------- /brevent/src/main/res/values-v26/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Don\'t turn off \"USB debugging\", don\'t change USB options 5 | 6 | 7 | -------------------------------------------------------------------------------- /brevent/src/main/res/values-zh-rCN-v26/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 不要停用“USB 调试”,不要更改 USB 选项 5 | 6 | 7 | -------------------------------------------------------------------------------- /brevent/src/main/res/values-zh-rCN/ops.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | (%1$s)%2$s 5 | 6 | 允许 7 | 忽略 8 | 拒绝 9 | 默认 10 | 前台 11 | 询问 12 | 未知(%d) 13 | 默认权限 14 | 已授权 15 | 无授权 16 | 17 | 应用操作 18 | 复制代码 19 | 代码已复制:%s 20 | 21 | %s允许 22 | %s拒绝 23 | N/A 24 | 25 | @string/ops_mode_allow 26 | @string/ops_mode_ignore 27 | 还原 28 | 时间 29 | 名称 30 | 分组 31 | 代码 32 | 状态 33 | 34 | 全选 35 | 应用模板 36 | 37 | 38 | -------------------------------------------------------------------------------- /brevent/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 黑阈 5 | 白域 6 | 7 | 欢迎 8 | Android 系统离开应用后界面(Activity)有两种状态,停止或者销毁。\n\n黑阈通过这种方式识别应用状态,防止“黑阈清单”内应用长期运行。 9 | 当您点按“返回”按钮退出应用时,如果界面已销毁,应用及其所包含的服务不再运行;当您点按“主页”或“概览”按钮,或者通过其它方式把应用放到后台时,界面只是停止,后台应用及其所包含的服务可以继续运行;当您从概览屏幕(recents screen)划掉应用时,黑阈将强行停止它。无论何时应用被运行,只要没有打开界面,黑阈都将强行停止它。\n\n“黑阈清单”内应用也可以接收通知或执行同步,只要设置为“允许同步”就好。“允许同步”应用不会被待机;有通知或在后台运行时,不会被强行停止。 10 | 11 | 权限 12 | 黑阈需要您每次开机以后,以“USB 调试”模式执行一个指令启动黑阈服务,让黑阈间接持有管理其它应用的权限。 13 | “USB 调试”模式权限很高,Android 8 以下设备重启就失效;在 Android 8 及以上则更严格,关闭“USB 调试”或更改 USB 选项就失效。 14 | 15 | 安全 16 | 黑阈不需要 root 或修改系统文件,卸载后没有残留。 17 | 黑阈使用大量 Android 隐藏 API,部分厂商可能改变这些 API 行为,使用黑阈可能会对应用甚至设备造成不良影响。\n\n不要在工作设备上使用黑阈,也不要黑阈工作应用、常用应用和重要应用。 18 | 19 | 使用 20 | 请尽情享受黑阈,发现任何问题,欢迎带上日志提交反馈。 21 | 默认黑阈方法为“待机,然后强行停止”。应用待机(App Standby,Android 6.0 引入,部分设备不支持)后不能联网、执行任务(Job)与同步。\n\n黑阈不强行停止安全应用。此外,黑阈集中处理,根据事件级别延后 3 到 60 秒不等。 22 | 23 | 进入黑阈 24 | 请启动黑阈服务(%s) 25 | 黑阈服务没有响应(%s) 26 | 1. 打开“开发者选项”,启用“USB调试”%1$s\n\n2. 使用 USB 连接到电脑%2$s\n\n3. 电脑使用 Chrome 访问 brevent.sh\n\n或者\n\n在命令行中执行“%3$s” 27 | 1. 打开“开发者选项”,启用“USB调试”%1$s\n\n2. 使用 USB 连接到电脑%2$s\n\n3. 电脑使用 Chrome 访问 brevent.sh 28 | 您的设备支持无线调试。\n\n1. 打开“开发者选项”,启用“无线调试”%1$s\n\n2. 点按“无线调试端口”\n\n或者在“开发者选项”中启用“USB调试”,使用 USB 连接到电脑,然后电脑使用 Chrome 访问 brevent.sh 29 | 您的设备看起来已 Root。您可自行开启网络调试,或者直接点按 Root。\n\n黑阈不需要也不提倡 Root,并且需要支付。\n\n如果无法开机自启,请自查任何系统限制。 30 | 网络调试已开启,请点按 ADB 启动黑阈服务。\n\n网络调试有风险,不要随意授权。 31 | 黑阈不需要也不提倡 Root,并且需要支付。 32 | 开发者选项 33 | 复制指令 34 | 指令已复制:%s 35 | (已启用) 36 | (已连接) 37 | 黑阈服务已启动。请点按图标选择一些应用,然后使用右上角的按钮黑阈它们。 38 | 黑阈服务并未启动,当前处于只读模式。 39 | 只读模式 40 | 41 | 用户应用 42 | 系统应用 43 | 框架应用 44 | 操作系统 45 | 46 | 正在获取进程状态,请稍候…… 47 | 正在获取应用信息,请稍候…… 48 | 正在获取日志,请稍候…… 49 | 正在启动黑阈服务,请稍候…… 50 | 正在检查黑阈服务,请稍候…… 51 | 52 | 永久应用 53 | 前台使用 54 | 正在运行 55 | 已经待机 56 | 无需处理 57 | 已经停用 58 | 没有运行 59 | 已经卸载 60 | (没有运行) 61 | (从未打开) 62 | (至 %1$s 共 %2$s) 63 | 运行 %s 64 | %d 个前台 65 | %d 个服务 66 | %d 个缓存服务 67 | %d 个缓存 68 | %d 个 69 | %d 个服务 70 | %d 个缓存服务 71 | 共 %d 个 72 | 73 | 进程 74 | 75 | 76 | 加入黑阈 77 | 不再黑阈 78 | 重要 79 | 反选 80 | 成功黑阈 %d 个应用 81 | 不再黑阈 %d 个应用 82 | 撤消 83 | 已撤消 84 | 85 | API %1$d(%2$s) 86 | 复制包名 87 | 应用信息 88 | 打开 89 | 黑阈服务信息 90 | 允许同步 91 | 设置激进 92 | 不要自动激进 93 | 取消额外设置 94 | 包名已复制:%s 95 | 停用 96 | 启用 97 | 临时启用 98 | 商店详情 99 | 卸载(保留数据) 100 | 卸载 101 | 卸载(保留数据)以后,再次安装可以直接使用当前数据。\n\n此操作无法撤回,真的要继续么? 102 | 卸载以后,将清除所有数据。\n\n此操作无法撤回,真的要继续么? 103 | 104 | %s(输入法) 105 | %s(闹钟应用) 106 | %s(短信应用) 107 | %s(主屏幕应用) 108 | %s(永久进程) 109 | %s(Android 进程) 110 | %s(电话应用) 111 | %s(辅助应用) 112 | %s(Webview 实现) 113 | %s(无障碍应用) 114 | %s(设备管理器) 115 | %s(FCM) 116 | %s(无法待机) 117 | %s(可信代理) 118 | %s(GMS) 119 | %s(壁纸) 120 | %s(通知侦听器) 121 | 系统 122 | 电话 123 | 蓝牙 124 | NFC 125 | 安全元素 126 | 网络堆栈 127 | Shell 128 | UID %1$d 129 | 130 | 搜索 131 | 排序方式 132 | 名称 133 | 安装时间 134 | 更新时间 135 | 上次使用时间 136 | 使用时长 137 | APK 大小(专业版) 138 | 平均内存使用量 (专业版) 139 | 最高内存使用量 (专业版) 140 | 联系 141 | 设置 142 | 模板 143 | 向导 144 | 电池信息 145 | 执行指令 146 | 启动黑阈 147 | 148 | 有任何问题,请随时与我们联系。\n\n邮箱:brevent@jianyu.io\n电话:TEL-JIANYUIO\n\n如果您有 GitHub 帐号,可以直接创建一个问题;您也可以查看其他朋友已经创建的问题。%s 149 | \n\n如果您的反馈包含私人信息,请发送邮件或拨打电话。 150 | GitHub 151 | 邮件 152 | 日志 153 | 154 | 黑阈清单 155 | 启用黑阈 156 | 黑阈仅处理黑阈清单内应用 157 | 黑阈方法 158 | 待机,然后强行停止 159 | 只待机,不强行停止 160 | 只强行停止,不待机 161 | 退出应用(如点按“返回”按钮),或者后台应用超时后先待机;不再活跃超时,或者从概览屏幕划掉后强行停止\n\n针对被运行但没有打开界面的应用,一律强行停止 162 | 退出应用(如点按“返回”按钮),或者后台应用超时后待机\n\n针对被运行但没有打开界面的应用,一律强行停止 163 | 不再活跃超时,或者从概览屏幕划掉后强行停止\n\n针对被运行但没有打开界面的应用,一律强行停止 164 | 后台应用超时 165 | 离开后台应用 %1$s 后\n\n后台应用是指您打开过但未退出的应用,主界面动态显示离开时间 166 | 1 分钟 167 | 5 分钟 168 | 15 分钟 169 | 30 分钟 170 | 1 小时 171 | 3 小时 172 | 6 小时 173 | 很久 174 | 不再活跃超时 175 | 应用不再活跃 %1$s 后强行停止 176 | 177 | 高级功能 178 | 语言 179 | 跟随系统 180 | 主题 181 | 显示框架应用 182 | 所有与系统框架签名相同的应用 183 | 卧槽,所有应用都是框架应用 184 | 显示所有应用 185 | 包括无法打开也没有更新的系统应用和框架应用 186 | 187 | 优化功能 188 | 优化微信 189 | 加入电池优化白名单,让其尽可能接收消息 190 | 优化音乐类应用 191 | 播放且有通知时不黑阈,暂停且有通知时不强行停止\n\n部分 ROM 无法生效。可能导致三星设备重启 192 | 自动激进 193 | 如果应用以服务方式被运行且有通知,将被设置激进 194 | 显示操作系统应用 195 | 操作系统应用无法黑阈 196 | 197 | 显示支付 198 | 根据 Play 政策,Play 版必须使用 Play 支付 199 | 如果已经支付,请按流程确认 200 | 感谢您通过 Play 商店支付 %s 二向箔 201 | 感谢您支付 %s 二向箔 202 | 感谢您为黑阈所做的特别贡献 203 | 感谢您通过 Play 商店支付 %1$s 二向箔,非 Play 支付 %2$s 二向箔 204 | 感谢您通过 Play 商店支付 %s 二向箔,以及为黑阈所做的特别贡献 205 | 感谢您支付 %s 二向箔,以及为黑阈所做的特别贡献 206 | 感谢您通过 Play 商店支付 %1$s 二向箔,非 Play 支付 %2$s 二向箔,以及为黑阈所做的特别贡献 207 | 应用操作 208 | 可能导致应用无法正常使用 209 | 停用应用 210 | 停用以后,必须先启用才能继续使用 211 | 212 | 实验性 213 | 动态 GMS(实验性) 214 | 黑阈 GMS(Google Play 服务)以后,动态停用和启用 215 | 暂停(实验性) 216 | 使用 暂停 代替 停用 217 | 218 | 强迫症选项 219 | 自动更新 220 | 应用安装或卸载之后,更新黑阈清单 221 | 强行停止检查 222 | 当强行停止过于频繁时,发出通知 223 | 优化微件 224 | 避免强行停止微件,从而保证微件可用 225 | 无需处理 226 | 避免强行停止安全进程 227 | 228 | 关于 229 | 系统状态 230 | 待机:%1$s\n停止状态:%2$s\n自动更新:%3$s\n自动黑阈:%4$s\n应用操作:%5$s\n停用应用:%6$s\n暂停应用:%7$s\n\n支持状态由设备决定,与支付无关 231 | 待机:%1$s\n(只读模式) 232 | 支持 233 | 不支持 234 | 开发者选项 235 | 已启用“USB 调试” 236 | 237 | 翻译 238 | 南宫雪珊 239 | 软件许可 240 | 241 | 只有机主可以使用黑阈。 242 | 黑阈不支持“应用分身”。 243 | 环境异常,黑阈可能无法正常工作。\n\n如果是官方原版系统,请黑阈内“反馈” - “日志”报告问题。\n\n如果系统已经修改但黑阈看起来正常,您可继续支付至 5 二向箔关闭部分安全提示。 244 | (无法生成指令文件:%s) 245 | 没有权限访问黑阈服务。\n\n前台应用:%1$s。 246 | 没有事件日志,黑阈无法自动工作。\n\n请稍后重试,或者联系 ROM 提供商。 247 | 自 %1$s 起没有事件日志,黑阈不再自动工作。\n\n请重启黑阈服务,或者联系 ROM 提供商。 248 | 重启黑阈 249 | 黑阈服务正在升级,请稍候重试。 250 | 无法获取日志,请稍候重试。 251 | 无法启动黑阈服务。 252 | Android 8 起,“USB 调试”停用后黑阈就失效。\n\n不要停用“USB 调试”,不要更改 USB 选项。 253 | 黑阈服务权限不足,部分功能暂不可用。请检查“开发者选项”中与“安全”或“权限”相关的设置。\n\n小米请在“开发者选项”中开启“USB 调试(安全设置)”,OPPO 请在“开发者选项”中开启“禁止权限监控”。 254 | 黑阈服务权限不足,部分功能暂不可用。请在“开发者选项”中开启“USB 调试(安全设置)”。 255 | 黑阈服务权限不足,部分功能暂不可用。请在“开发者选项”中开启“禁止权限监控”。 256 | 请不要把黑阈安装在系统目录或外置存储。 257 | 您已黑阈重要应用:%1$s。\n\n是否不再黑阈? 258 | 您已黑阈无法打开的应用:%1$s。\n\n是否不再黑阈? 259 | 被以下应用依赖:%1$s。 260 | 应用属于 GMS 应用。主动打开该应用会动态开启与停用 GMS。 261 | 允许应用通过同步、广播及 FCM(Firebase Cloud Messaging)接收消息。 262 | 允许应用通过同步或广播接收消息。 263 | 应用处于激进模式。正常情况下,黑阈清单应用可以运行几秒钟,然后黑阈决定是否强行停止它;激进模式下,一旦被运行,黑阈会立即强行停止它。 264 | 应用不会自动被设置为激进模式。 265 | 应用已被停用。使用之前,请先启用。 266 | 应用临时启用,稍候将会停用。 267 | 黑阈不会强行停止已连接的 VPN 应用。 268 | 黑阈不会强行停止正在播放的应用。 269 | 黑阈不会强行停止暂停播放且有通知的应用。 270 | 应用处于电池优化白名单,不会被待机。 271 | 安全应用。如果应用一直是这个状态,您也就不再需要黑阈。 272 | 应用已待机,达到“不再活跃超时”或从概览屏幕划掉后被强行停止。 273 | 应用有前台服务,不会被黑阈。 274 | “允许同步”应用在后台运行,不会被黑阈。 275 | 应用达到“后台应用超时”后被待机,达到“不再活跃超时”或从概览屏幕划掉后被强行停止。 276 | 如果主动打开过,应用将很快被待机,达到“不再活跃超时”或从概览屏幕划掉后被强行停止;如果没有主动打开过,应用将很快被强行停止。 277 | 应用在黑阈清单。黑阈不会处理不在黑阈清单的应用。 278 | 应用已添加微件。 279 | 280 | 281 | 黑阈服务运行正常 282 | 请手动开启“开发者选项”,一般是点按 7 次“版本号” 283 | 黑阈服务无法读取事件日志 284 | 285 | 正在启动黑阈服务 286 | 黑阈服务没有启动 287 | 288 | 需要支付 %s 289 | 现在支付 290 | 暂不支付(%1$d) 291 | 暂不支付 292 | 293 | 已黑阈“%1$s” 294 | 取消黑阈“%1$s” 295 | 取消黑阈“%1$s”失败,烦请进入黑阈处理 296 | 已将“%1$s”设置激进 297 | 点按即可取消激进。 298 | 取消激进“%1$s” 299 | 取消激进“%1$s”失败,烦请进入黑阈处理 300 | 建议取消黑阈“%1$s” 301 | 在 %2$s 内黑阈 %1$d 次,点按取消黑阈。 302 | 建议停用“%1$s” 303 | 在 %2$s 内黑阈 %1$d 次,点按停用。 304 | 已停用“%1$s” 305 | 停用“%1$s”失败,烦请进入黑阈处理 306 | 307 | 黑阈服务 308 | 取消黑阈 309 | 310 | 重置 311 | 停止 312 | 更新网络检查 313 | 重启黑阈服务 314 | 卸载静态库 315 | %1$s\n# 输出过多,仅展示部分内容 316 | 执行指令可能会对应用甚至设备造成不良影响。如有疑问,请立即停止。 317 | 318 | 黑阈停用 API 319 | 使用黑阈服务启用或停用应用 320 | 321 | 322 | 1 二向箔 323 | 2 二向箔 324 | 3 二向箔 325 | 4 二向箔 326 | 5 二向箔 327 | 328 | 329 | 免费版 330 | 使用黑阈,享受 Android 331 | 无限版 332 | 使用黑阈,享受 Android 333 | 专业版 334 | 使用黑阈,探索 Android(VIP) 335 | 特别贡献版 336 | 希望有一天不再需要黑阈(SVIP) 337 | 338 | 飞智小游版 339 | 340 | Pixel 341 | 原生 342 | Play 343 | 南开 344 | 省电 345 | 346 | 标识 GMS 应用 347 | 取消 GMS 应用 348 | 添加临时应用 349 | 350 | @string/warning_wechat_3 351 | @string/warning_wechat_5 352 | 继续支付 353 | 不再支付 354 | 355 | 无法缓存 Play 支付数据,请检查网络 356 | 无法缓存 Play 支付数据,请稍候重试 357 | 358 | 发现新版本“%s”。 359 | 您已安装最新版本。 360 | 您正在使用测试版本。 361 | 更新 362 | 363 | 条款与隐私政策 364 | 使用黑阈前请确认《条款与隐私政策》。简单来说,黑阈会通过 Visual Studio App Center 收集匿名使用日志。 365 | 同意 366 | 拒绝 367 | 368 | %1$s(系统为深色主题,实际使用 Pixel) 369 | 370 | 排序方式“%1$s”需要支付。是否现在支付? 371 | 372 | 设备默认 373 | 374 | 无线调试端口 375 | 请切换无线调试以自动发现端口。 376 | 无法连接,请确认网络及调试端口。 377 | 暂不支持无线调试。 378 | 无线配对 379 | 无线配对端口 380 | 六位配对码 381 | 请回复六位配对码。 382 | 正在无线配对 383 | 无线配对成功 384 | 无线配对失败 385 | 请在电脑上使用 Chrome 访问 brevent.sh 完成配对。 386 | 请点按“开发者选项”,进入“无线调试”,然后点按“使用配对码配对设备”,在弹出的黑阈通知中回复六位配对码。\n\n点按“开发者选项”以后,如果没有出现通知或者通知无法回复,请使用分屏模式。 387 | 允许通知 388 | 389 | @string/about_detail_zh 390 | 正在充电 391 | 正在慢速充电 392 | 正在快速充电 393 | ,%s W 394 | ,%s 可充满 395 | 396 | 电池可用时间未知。 397 | 电池可用时间:%s。 398 | 电池可用时间不足 1 分钟。 399 | 电池设置 400 | 401 | 402 | -------------------------------------------------------------------------------- /brevent/src/main/res/values-zh-rTW-v26/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 不要停用「USB 偵錯」功能,也不要變更 USB 選項 4 | 5 | -------------------------------------------------------------------------------- /brevent/src/main/res/values-zh-rTW/ops.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | (%1$s)%2$s 5 | 6 | 允許 7 | 忽略 8 | 拒絕 9 | 預設 10 | 前景 11 | 詢問 12 | 未知(%d) 13 | 預設權限 14 | 已授權 15 | 無授權 16 | 17 | 應用程式操作 18 | 複製操作 19 | 操作已複製: %s 20 | 21 | %s允許 22 | %s忽略 23 | N/A 24 | 25 | @string/ops_mode_allow 26 | @string/ops_mode_ignore 27 | 還原 28 | 時間 29 | 名稱 30 | 分組 31 | 代碼 32 | 狀態 33 | 34 | 全選 35 | 套用範本 36 | 37 | 38 | -------------------------------------------------------------------------------- /brevent/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 黑閾 5 | 白域 6 | 7 | 歡迎 8 | Android 系統離開應用程式後界面(Activity)有兩種狀態,停止或者銷毀。\n\n黑閾透過這種方式識別應用程式狀態,防止「黑閾清單」內應用程式長期執行。 9 | 當您按「返回」按鈕退出應用程式時,如果界面已銷毀,應用程式及所包含的服務不再執行;當您按「首頁」或「總覽」按鈕,或者其它方式把應用程式移到背景時,界面只是停止,背景應用程式及所包含的服務可以繼續執行;當您從總覽畫面(recents screen)拉掉應用程式時,黑閾將強制停止它。無論何時應用被執行,只要沒有打開介面,黑閾都將強制停止它。\n\n「黑閾清單」內應用程式也可以接收通知或執行同步,只要設定為「允許同步」就好。「允許同步」應用程式不會被待命;有通知或在背景執行時,不會被強制停止。 10 | 11 | 權限 12 | 黑閾需要在您每次開機以後,以「USB 偵錯」模式執行一個指令開啟黑閾服務,讓黑閾間接的具備管理其它應用程式的權限。 13 | 「USB 偵錯」模式權限很高,Android 8 以下裝置重啟即失效;在 Android 8 及以上則更嚴格,關閉「USB 偵錯」或變更 USB 選項就失效。 14 | 15 | 安全 16 | 黑閾不需要 root 或修改系統檔案,解除安裝後沒有殘留。 17 | 黑閾使用大量 Android 隱藏 API,部分廠商可能改變這些 API 行為,使用黑閾可能會對應用程式甚至裝置造成不良影響。\n\n不要在工作裝置上使用黑閾,也不要黑閾生產用應用程式、常用應用程式和重要應用程式。 18 | 19 | 使用 20 | 請盡情享受黑閾,發現任何問題,歡迎附上日誌傳送報告。 21 | 預設黑閾方法為「待命,然後強制停止」。應用程式待命(App Standby,Android 6.0 引入,部分裝置不支援)後不能連網、執行工作(Job)與同步。\n\n黑閾不強制停止安全應用程式。此外,黑閾集中處理,根據事件級別延後 3 到 60 秒不等。 22 | 23 | 進入黑閾 24 | 請開啟黑閾服務(%s) 25 | 黑閾服務沒有回應(%s) 26 | 1. 開啟「開發人員選項」,啟用「USB 偵錯」%1$s\n\n2. 使用 USB 連線到電腦%2$s\n\n3. 電腦上使用 Chrome 訪問 brevent.sh\n\n或者\n\n在命令提示字元中執行「%3$s」 27 | 1. 開啟「開發人員選項」,啟用「USB 偵錯」%1$s\n\n2. 使用 USB 連線到電腦%2$s\n\n3. 電腦上使用 Chrome 訪問 brevent.sh 28 | 您的裝置支援無線偵錯。\n\n1. 開啟「開發人員選項」,啟用「無線偵錯」%1$s\n\n2. 點按「無線偵錯通訊埠」 29 | 您的裝置看起來已 Root。您可自行開啟網路偵錯,或者直接點按 Root。\n\n黑閾不需要也不提倡 Root,並且需要先支付才能使用 Root 啟動。\n\n如果無法開機自動啟用,請檢查是否有任何系統限制。 30 | 已開啟網路偵錯,請點觸 ADB 啟動黑閾服務。 31 | 黑閾不需要也不提倡 Root,並且需要先支付才能使用 Root 啟動。 32 | 開發人員選項 33 | 複製指令 34 | 指令已複製: %s 35 | (已啟用) 36 | (已連線) 37 | 黑閾服務已開啟。請輕觸圖示選擇一些應用程式,然後使用右上角的按鈕黑閾它們。 38 | 黑閾服務並未開啟,當前處於唯讀模式。 39 | 唯讀模式 40 | 41 | 使用者 42 | 系統 43 | 框架 44 | 作業系統 45 | 46 | 正在取得應用程式的狀態,請稍候… 47 | 正在取得應用程式資訊,請稍候… 48 | 正在取得日誌,請稍候… 49 | 正在開啟黑閾服務,請稍候… 50 | 正在檢查黑閾服務,請稍候… 51 | 52 | 永久程式 53 | 前景使用 54 | 正在執行 55 | 已經待命 56 | 不需處理 57 | 已經停用 58 | 沒有執行 59 | 已經解除安裝 60 | (沒有執行) 61 | (從未開啟) 62 | (至 %1$s 共 %2$s) 63 | 執行 %s 64 | %d 個前景 65 | %d 個服務 66 | %d 個快取服務 67 | %d 個快取 68 | %d 個 69 | %d 個服務 70 | %d 個快取服務 71 | 共 %d 個 72 | 73 | 處理程序 74 | 75 | 76 | 加入黑閾 77 | 不再黑閾 78 | 重要 79 | 反轉選擇 80 | 成功黑閾 %d 個應用程式 81 | 不再黑閾 %d 個應用程式 82 | 還原 83 | 已還原 84 | 85 | API %1$d(%2$s) 86 | 複製軟體包(Package)名稱 87 | 應用程式資訊 88 | 開啟 89 | 黑閾服務資訊 90 | 允許同步 91 | 設為激進模式 92 | 不要自動進入激進模式 93 | 取消額外設定 94 | 軟體包(Package)名稱已複製: %s 95 | 停用 96 | 啟用 97 | 暫時啟用 98 | 商店詳細資訊 99 | 解除安裝(保留資料) 100 | 解除安裝 101 | 解除安裝(保留資料)以後,再次安裝可以直接使用目前資料。\n\n此操作無法撤回,真的要繼續麼? 102 | 解除安裝以後,將清除所有資料。\n\n此操作無法撤回,真的要繼續嗎? 103 | 104 | %s(輸入法) 105 | %s(鬧鐘應用程式) 106 | %s(簡訊應用程式) 107 | %s(主畫面應用程式) 108 | %s(永久處理程序) 109 | %s(Android 處理程序) 110 | %s(電話應用程式) 111 | %s(小幫手應用程式) 112 | %s(WebView 實作) 113 | %s(無障礙設定) 114 | %s(裝置管理員) 115 | %s(FCM) 116 | %s(無法待命) 117 | %s(信任的代理程式) 118 | %s(GMS) 119 | %s(桌布) 120 | %s(通知接聽器) 121 | 系統 122 | 電話 123 | 藍牙 124 | NFC 125 | 安全元素 126 | 網路堆疊 127 | Shell 128 | UID %1$d 129 | 130 | 搜尋 131 | 排序依據 132 | 名稱 133 | 安裝時間 134 | 更新時間 135 | 上次使用時間 136 | 使用時長 137 | APK 大小(專業版) 138 | 平均記憶體用量(專業版) 139 | 最高記憶體用量(專業版) 140 | 聯繫 141 | 設定 142 | 範本 143 | 導覽 144 | 電池信息 145 | 執行指令 146 | 啟動黑閾 147 | 148 | 有任何問題,請隨時與我們聯繫。\n\n電子郵件:brevent@jianyu.io\n\n如果您有 GitHub 帳號,可以直接建立一個問題;您也可以看看其他朋友已經建立的問題。%s 149 | \n\n如果您的回報包含私人資料,請傳送電子郵件。 150 | GitHub 151 | 電子信件 152 | 日誌 153 | 154 | 黑閾清單 155 | 啟用黑閾 156 | 黑閾僅處理黑閾清單內應用程式 157 | 黑閾方法 158 | 待命,然後強制停止 159 | 只待命,不強制停止 160 | 只強制停止,不待命 161 | 退出應用程式(如輕觸「返回」按鈕),或者背景應用程式逾時後先待命;不再活躍逾時,或者從總覽畫面拉掉後強制停止\n\n針對被執行但沒有打開介面的應用程式,一律強制停止 162 | 退出應用程式(如輕觸「返回」按鈕),或者背景應用程式逾時後待命\n\n針對被執行但有打開介面的應用程式,一律強制停止 163 | 不再活躍逾時,或者從總覽畫面拉掉後強制停止\n\n針對被執行但沒有打開介面的應用程式,一律強制停止 164 | 背景應用程式逾時 165 | 離開背景應用程式 %1$s 後\n\n背景應用程式是指您還未結束的應用程式,主介面動態顯示離開時間 166 | 1 分鐘 167 | 5 分鐘 168 | 15 分鐘 169 | 30 分鐘 170 | 1 小時 171 | 3 小時 172 | 6 小時 173 | 很久 174 | 不再活躍逾時 175 | 應用程式不再活躍 %1$s 後強制停止 176 | 177 | 進階功能 178 | 語言 179 | 與系統同步 180 | 主題 181 | 顯示框架應用程式 182 | 所有與系統框架簽名相同的應用程式 183 | 哇靠!所有應用都是框架應用程式 184 | 顯示所有應用程式 185 | 包括無法開啟也沒有更新的系統應用程式和框架應用程式 186 | 187 | 最佳化功能 188 | 最佳化 WeChat 189 | 加入電池效能最佳化白名單,讓其盡可能接收消息 190 | 最佳化音樂應用程式 191 | 播放且有通知時不黑閾,暫停且有通知時不強制停止\n\n部分 ROM 無法生效。可能導致三星裝置重啟 192 | 自動進入激進模式 193 | 如果應用程式以服務方式被執行且有通知,將被設為激進模式 194 | 顯示系統應用程式 195 | 系統應用程式無法黑閾 196 | 197 | 顯示支付 198 | 199 | 200 | 感謝您透過 Play 商店支付 %s 二向箔 201 | 感謝您支付 %s 二向箔 202 | 感謝您為黑閾所做的特別貢獻 203 | 感謝您透過 Play 商店支付 %1$s 二向箔,非 Play 支付 %2$s 二向箔 204 | 感謝您透過 Play 商店支付 %s 二向箔,以及為黑閾所做的特別貢獻 205 | 感謝您支付 %s 二向箔,以及為黑閾所做的特別貢獻 206 | 感謝您透過 Play 商店支付 %1$s 二向箔,非 Play 支付 %2$s 二向箔,以及為黑閾所做的特別貢獻 207 | 應用程式操作 208 | 可能導致應用程式無法正常使用 209 | 停用應用程式 210 | 停用以後,必須先啟用才能繼續使用 211 | 212 | 實驗性 213 | 動態 GMS(實驗性) 214 | 黑閾 GMS(Google Play 服務)以後,動態停用和啟用 215 | 暫停(實驗性) 216 | 使用 暫停 代替 停用 217 | 218 | 強迫症選項 219 | 自動更新 220 | 應用程式安裝或移除之後,更新黑閾清單 221 | 強制停止檢查 222 | 當強制停止過於頻繁時,發出通知 223 | 最佳化小工具 224 | 避免強制停止小工具,從而保證小工具可用 225 | 不需處理 226 | 避免強制停止安全處理程序 227 | 228 | 關於 229 | 系統狀態 230 | 待命:%1$s\n停止狀態:%2$s\n自動更新:%3$s\n自動黑閾:%4$s\n應用程式操作:%5$s\n停用應用程式:%6$s\n暫停應用程式:%7$s 231 | 待命:%1$s\n(唯讀模式) 232 | 支援 233 | 不支援 234 | 開發人員選項 235 | 已啟用「USB 偵錯」 236 | 237 | 翻譯 238 | 孟武.尼德霍格.龍\n維\npan93412 239 | 軟體授權 240 | 241 | 只有擁有者可以使用黑閾。 242 | 黑閾不適用於 App clone。 243 | 環境異常,黑閾可能無法正常工作。\n\n如果是官方原版系統,請在黑閾內「回報」 - 「日誌」報告問題。\n\n如果系統已經修改但黑閾看起來正常,您可繼續支付至 5 二向箔關閉部分安全提示。 244 | (無法產生指令稿:%s) 245 | 沒有權限存取黑閾服務。\n\n前景應用程式:%1$s。 246 | 沒有事件日誌,黑閾無法自動工作。\n\n請稍後重試,或者聯絡 ROM 提供商。 247 | 自 %1$s 起沒有事件日誌,黑閾不再自動工作。\n\n請重啟黑閾服務,或者聯絡 ROM 提供商。 248 | 重啟黑閾 249 | 黑閾服務正在升級,請稍候重試。 250 | 無法取得日誌,請稍候重試。 251 | 無法開啟黑閾服務。 252 | Android 8 起,「USB 偵錯」停用後黑閾就失效。\n\n不要停用「USB 偵錯」,不要變更 USB 選項。 253 | 黑閾服務權限不足,部分功能暫不可用。 254 | @string/unsupported_granted 255 | @string/unsupported_granted 256 | 請不要把黑閾安裝在系統目錄或外部儲存空間。 257 | 您已黑閾重要應用程式:%1$s。\n\n是否不再黑閾? 258 | 您已黑閾無法開啟的應用程式:%1$s。\n\n是否不再黑閾? 259 | 被以下應用程式依賴:%1$s。 260 | 應用程式屬於 GMS 程式。AppsItemAdapter.java 261 | 允許應用程式透過同步、廣播及 FCM(Firebase Cloud Messaging)接收消息。 262 | 允許應用程式透過同步或廣播接收消息。 263 | 應用程式處於激進模式。正常情況下,黑閾清單應用程式可以執行幾秒鐘,然後黑閾決定是否強制停止;激進模式下,一旦被執行,黑閾會立即強制停止。 264 | 應用程式不會被自動設定為激進模式。 265 | 應用程式已被停用。使用之前,請先啟用。 266 | 應用程式暫時啟用,稍候將會停用。 267 | 黑閾不會強制停止已連線的 VPN 應用程式。 268 | 黑閾不會強制停止正在播放的應用程式。 269 | 黑閾不會強制停止暫停播放且有通知的應用程式。 270 | 應用程式處於電池效能最佳化白名單,不會被待命。 271 | 安全應用程式。如果應用程式一直都是這個狀態,您也就不再需要黑閾。 272 | 應用程式已待命,達到「不再活躍逾時」或從總覽畫面拉掉後強制停止。 273 | 應用程式有前景服務,不會被黑閾。 274 | 「允許同步」應用程式在背景執行,不會被黑閾。 275 | 應用程式達到「背景應用程式逾時」後待命,達到「不再活躍逾時」或從總覽畫面拉掉後強制停止。 276 | 如果主動打開過,應用程式將很快被待命,達到「不再活躍逾時」或從總覽畫面拉掉後強制停止;如果沒有主動打開過,應用程式將很快被強制停止。 277 | 應用程式在黑閾清單。黑閾不會處理不在黑閾清單的應用程式。 278 | 應用程式已增加小工具。 279 | 280 | 281 | 黑閾服務執行正常 282 | 請手動開啟「開發人員選項」,一般是點按 7 次「版本號」 283 | 黑閾服務無法讀取事件日誌 284 | 285 | 正在開啟黑閾服務 286 | 黑閾服務沒有開啟 287 | 288 | 需要支付 %s 289 | 現在支付 290 | 暫不支付(%1$d) 291 | 暫不支付 292 | 293 | 已黑閾「%1$s」 294 | 取消黑閾「%1$s」 295 | 取消黑閾「%1$s」失敗,煩請進入黑閾處理 296 | 已將「%1$s」設為激進模式 297 | 輕觸即可取消激進模式。 298 | 取消激進「%1$s」 299 | 取消激進「%1$s」失敗,煩請進入黑閾處理 300 | 建議取消黑閾「%1$s」 301 | 在 %2$s 內黑閾 %1$d 次,輕觸取消黑閾。 302 | 建議停用「%1$s」 303 | 在 %2$s 內黑閾 %1$d 次,輕觸停用。 304 | 停用「%1$s」 305 | 停用「%1$s」失敗,煩請進入黑閾處理 306 | 307 | 黑閾服務 308 | 取消黑閾 309 | 310 | 重設 311 | 停止 312 | 更新網路偵測 313 | 重啟黑閾服務 314 | 解除安裝靜態庫 315 | %1$s\n# 輸出過多,僅展示部分內容 316 | 執行指令可能會對應用程式甚至裝置造成不良影響。如有疑問,請立即終止。 317 | 318 | 黑閾停用 API 319 | 使用黑閾服務啟用或停用應用程式 320 | 321 | 322 | 1 二向箔 323 | 2 二向箔 324 | 3 二向箔 325 | 4 二向箔 326 | 5 二向箔 327 | 328 | 329 | 免費版 330 | 使用黑閾,享受 Android 331 | 無限版 332 | 使用黑閾,享受 Android 333 | 專業版 334 | 使用黑閾,探索 Android(VIP) 335 | 特別貢獻版 336 | 希望有一天不再需要黑閾(SVIP) 337 | 338 | 飛智小遊版 339 | 340 | Pixel 341 | 原生 342 | Play 343 | 南開 344 | 省電 345 | 346 | 標識 GMS 程式 347 | 取消 GMS 程式 348 | 新增暫時程式 349 | 350 | 您已支付 %d 二向箔,繼續支付可以開啟實驗性功能。\n\n實驗性功能穩定之後,取消實驗性標識;如果一直無法穩定,將會直接取消。 351 | 您已支付 %d 二向箔,可能開啟所有功能,不必繼續支付。 352 | 繼續支付 353 | 不再支付 354 | 355 | 無法快取 Play 支付資料,請檢查網路 356 | 無法快取 Play 支付資料,請稍候再試 357 | 358 | 發現新版本「%s」。 359 | 您已安裝最新版本。 360 | 您正在使用測試版本。 361 | 更新 362 | 363 | 條款與隱私政策 364 | 使用黑閾前請確認《條款與隱私政策》。簡單來說,黑閾會通過 Visual Studio App Center 收集匿名使用日誌。 365 | 同意 366 | 拒絕 367 | 368 | %1$s(系統為深色主題,實際使用 Pixel) 369 | 370 | 排序依據「%1$s」需要支付。是否現在支付? 371 | 372 | 裝置預設 373 | 374 | 無線偵錯通訊埠 375 | 請切換無線偵錯以自動發現通訊埠。 376 | 無法連線,請檢查偵錯通訊埠。 377 | 暫不支援無線偵錯。 378 | 無線配對 379 | 無線配對通訊埠 380 | 六位配對碼 381 | 請回复六位配對碼。 382 | 正在無線配對 383 | 無線配對成功 384 | 無線配對失敗 385 | 請在電腦上使用 Chrome 訪問 brevent.sh 完成配對。 386 | 請點按「開發人員選項」,進入「無線偵錯」,然後點按「使用配對碼配對裝置」,在彈出的黑閾通知中回复六位配對碼。 387 | 允許通知 388 | 389 | @string/about_detail_zh 390 | 充電中 391 | 慢速充電中 392 | 快速充電中 393 | ,%s W 394 | ,%s 後充飽 395 | 396 | 電池可用時間未知。 397 | 電池可用時間:%s。 398 | 電池可用時間不足 1 分鐘。 399 | 電池設定 400 | 401 | 402 | -------------------------------------------------------------------------------- /brevent/src/main/res/values/ops.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | (%1$s) %2$s 5 | 6 | Allow 7 | Ignore 8 | Deny 9 | Default 10 | Foreground 11 | Ask 12 | Unknown (%d) 13 | Permission 14 | Granted 15 | Refused 16 | 17 | App ops 18 | Copy code 19 | Code copied: %s 20 | 21 | Allowed %s 22 | Rejected %s 23 | N/A 24 | 25 | @string/ops_mode_allow 26 | @string/ops_mode_ignore 27 | Reset 28 | Time 29 | Name 30 | Group 31 | Code 32 | Mode 33 | 34 | All 35 | Apply template 36 | 37 | 38 | -------------------------------------------------------------------------------- /brevent/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | Brevent 6 | Nrevent 7 | 8 | Welcome 9 | When you quit Android apps, the Activity has two states: stopped or destroyed.\n\nBrevent recognizes the states of apps in this way, preventing apps in Brevent list from running for a long time. 10 | When you tap Back to quit apps, if the Activity is destroyed, apps and depending services won\'t run anymore; tap Home or Overview, or just put apps into the background, the Activity is stopped, apps and depending services will keep running; swipe off apps from the Recents screen, apps will be force-stopped. Whenever apps are being run without activity, Brevent will force-stop them.\n\nApps in Brevent list can be set with \"allow sync\" option to receive notifications or execute jobs and syncs. Brevent won\'t standby \"allow sync\" apps, and Brevent won\'t force-stop \"allow sync\" apps with notifications or running in the background. 11 | 12 | Permissions 13 | What do you need to do? \nJust enter a simple command via ADB on your PC. 14 | Brevent won\'t work if Android-powered device reboots. Since Android 8, Brevent won\'t work if you turn off \"USB Debugging\" or change USB options. 15 | 16 | Security 17 | Brevent does not need root access or the ability to modify system files, there is no residue after uninstallation. 18 | Brevent uses plenty of Android\'s hidden APIs. Some third-party ROMs may modify these APIs, so there would be some issues while using Brevent with these ROMs.\n\nDO NOT use Brevent on work devices OR BREVENT work apps, frequently used apps or important apps. 19 | 20 | Enjoy 21 | Enjoy Brevent, and if you find any issues, please feel free to send feedback with logs. 22 | The default Brevent method is \"Standby, then force-stop\". Standby (since Android 6.0, unsupported on some devices) apps can\'t access network or execute jobs or syncs.\n\nBrevent won\'t force-stop safe apps. In addition, Brevent server brevents apps centrally and delays the processes by 3 to 60 seconds, according to the event level. 23 | 24 | Launch Brevent 25 | 26 | Please start Brevent server (%s) 27 | Brevent server is not responding (%s) 28 | 1. Turn on \"Developer options\", enable \"USB debugging\" %1$s\n\n2. Connect to PC via USB %2$s\n\n3. Visit brevent.sh using Chrome on your PC\n\nOr\n\nExecute in PC\'s command line \"%3$s\" 29 | 1. Turn on \"Developer options\", enable \"USB debugging\" %1$s\n\n2. Connect to PC via USB %2$s\n\n3. Visit brevent.sh using Chrome on your PC 30 | Your device support \"Wireless debugging\".\n\n1. Turn on \"Developer options\", enable \"Wireless debugging\" %1$s\n\n2. tap \"Wireless debugging Port\" 31 | It seems that your device is rooted. You can turn on network ADB manually, or try tapping the \"Root\" button in Brevent.\n\nRoot is unnecessary for Brevent, and requires payment. 32 | Network ADB is turned on, please tap \"ADB\" to start Brevent Server. 33 | Root is unnecessary for Brevent, and requires payment. 34 | Developer 35 | Copy command 36 | Command copied: %s 37 | (Enabled) 38 | (USB connected) 39 | Brevent server started successfully. Please tap app icons to choose, then brevent them. 40 | Brevent server is not started. Brevent is in read-only mode. 41 | Read-only mode 42 | 43 | User Apps 44 | System Apps 45 | Core Apps 46 | OS Apps 47 | 48 | Retrieving process status, just a moment. . . 49 | Retrieving apps, just a moment. . . 50 | Retrieving logs, just a moment. . . 51 | Starting Brevent server, just a moment. . . 52 | Checking Brevent server, just a moment. . . 53 | 54 | Persistent 55 | Foreground 56 | Running 57 | Standby 58 | Ignored 59 | Disabled 60 | Stopped 61 | Uninstalled 62 | (not running) 63 | (never launched) 64 | (last: %1$s, total: %2$s) 65 | running %s 66 | %d top 67 | %d service 68 | %d cached service 69 | %d cached 70 | %d 71 | %d service 72 | %d cached service 73 | total %d 74 | 75 |  process 76 |  processes 77 | 78 | 79 | Brevent 80 | Unbrevent 81 | Important 82 | Inverse 83 | Brevented %d apps 84 | Unbrevented %d apps 85 | Undo 86 | Undone 87 | 88 | API %1$d (%2$s) 89 | Copy package name 90 | Application Info 91 | Launch 92 | Brevent server info 93 | Allow sync 94 | Set aggressive 95 | No aggressive 96 | Unset 97 | Copied package name: %s 98 | Disable 99 | Enable 100 | Instant enable 101 | Market 102 | Uninstall (keep data) 103 | Uninstall 104 | Uninstalling (keep data) will remove the package, but keep the data and cache directories.\n\nDo you confirm? 105 | Uninstalling will remove the data and cache directories.\n\nDo you confirm? 106 | 107 | %s (Input method) 108 | %s (Alarm app) 109 | %s (SMS app) 110 | %s (Home app) 111 | %s (Persistent) 112 | %s (Android process) 113 | %s (Phone app) 114 | %s (Assist app) 115 | %s (WebView) 116 | %s (Accessibility) 117 | %s (Device admin) 118 | %s (FCM) 119 | %s (no Standby) 120 | %s (Trust agent) 121 | %s (GMS) 122 | %s (Wallpaper) 123 | %s (Notification listener) 124 | System 125 | Telephony 126 | Bluetooth 127 | NFC 128 | Secure Element 129 | Network Stack 130 | Shell 131 | UID %1$d 132 | 133 | Search 134 | Sort by 135 | App 136 | Install time 137 | Update time 138 | Last used 139 | Usage time 140 | APK Size (Pro) 141 | Average memory use (Pro) 142 | Maximum memory use (Pro) 143 | Contact 144 | Settings 145 | Template 146 | Guide 147 | Battery 148 | Exec command 149 | Start Brevent 150 | 151 | Feel free to contact us.\n\nEmail: brevent@jianyu.io\n\nIf you have a GitHub account, please create an issue; you can view opened issues too.%s 152 | \n\nFor private messages, email us. 153 | GitHub 154 | Email 155 | Logs 156 | 157 | Brevent list 158 | Enable Brevent 159 | Brevent only applies to apps in Brevent list 160 | Brevent method 161 | Standby, then force-stop 162 | Only standby, no force-stop 163 | Only force-stop, no standby 164 | Standby when you exit apps (tap \"Back\"), or background apps are timed out; force-stop when apps reach inactive timeout, or swipe off apps from the recents screen\n\nAlways force-stop running apps without activity 165 | Standby when you exit apps (tap \"Back\"), or background apps are timed out\n\nAlways force-stop running apps without activity 166 | Force-stop when apps reach inactive timeout, or swipe off apps from the recents screen\n\nAlways force-stop running apps without activity 167 | Background apps timeout 168 | Background apps will be brevented after %s\n\nBrevent shows inactive time for background apps dynamically 169 | 1 minute 170 | 5 minutes 171 | 15 minutes 172 | 30 minutes 173 | 1 hour 174 | 3 hours 175 | 6 hours 176 | very long 177 | Inactive timeout 178 | Force-stop when apps have been inactive for %1$s 179 | 180 | Advanced features 181 | Language 182 | Auto 183 | Theme 184 | Show core apps 185 | All apps that have the same signature as Android Framework 186 | WTF, all apps are framework apps 187 | Show all apps 188 | Including system and core apps which cannot be launched or upgraded 189 | 190 | Optimized features 191 | Optimize Wechat 192 | Add to Battery Optimization whitelist, make it receive messages as far as possible 193 | Optimize music player 194 | Won\'t be brevented while playing with notification, won\'t be force-stopped if paused with notification\n\nDoes not work on some ROMs. May cause some samsung devices to reboot 195 | Auto aggressive 196 | If an app with notifications runs as a service, set it to aggressive. 197 | Show OS apps 198 | Android OS apps cannot be brevented 199 | 200 | Show payment 201 | 202 | 203 | Thanks for paying %s Brefoil via Play Store 204 | Thanks for paying %s Brefoil 205 | Thanks for priceless contribution to Brevent 206 | Thanks for paying %1$s Brefoil via Play Store, %2$s Brefoil via non Play Store 207 | Thanks for paying %s Brefoil via Play Store, and priceless contribution to Brevent 208 | Thanks for paying %s Brefoil, and priceless contribution on Brevent 209 | Thanks for paying %1$s Brefoil via Play Store, %2$s Brefoil via non Play Store, and priceless contribution to Brevent 210 | App ops 211 | Be careful, may cause apps to crash 212 | Disable apps 213 | Disabled apps must be enabled to use 214 | 215 | Experimental 216 | Dynamic GMS (Experimental) 217 | Enable and disable brevented GMS (Google Play services) dynamically 218 | Suspend (Experimental) 219 | Using suspend instead of Disable 220 | 221 | OCD options 222 | Auto update 223 | Update Brevent list when apps are installed or uninstalled 224 | Force stop check 225 | Notify if force-stop is too frequent 226 | Keep widgets 227 | Don\'t force-stop widgets if you want them to work 228 | Keep safe 229 | Don\'t force-stop safe processes 230 | 231 | About 232 | System status 233 | Standby: %1$s\nStopped state: %2$s\nAuto update: %3$s\nAuto brevent: %4$s\nApp ops: %5$s\nDisable Apps: %6$s\nSuspend Apps: %7$s 234 | Standby: %1$s\n(Read-only mode) 235 | supported 236 | unsupported 237 | Developer options 238 | \"USB debugging\" is on 239 | 240 | Translator 241 | DKOUT, Aviraxp, Li Yufan, TacoTheDank, Késmárky Tímea 242 | Licenses 243 | 244 | Brevent is only available for Owner. 245 | Brevent is unavailable in App clone. 246 | Brevent cannot work well on modified devices.\n\nFor stock ROM, please \"Feedback\" - \"Logs\". 247 | (Cannot create brevent.sh: %s) 248 | No permission to access Brevent server.\n\nTop apps: %1$s. 249 | No event log, Brevent server cannot work automatically.\n\nPlease try later, or contact ROM provider. 250 | No event log since %1$s, Brevent server cannot work automatically.\n\nPlease restart Brevent server or contact ROM provider. 251 | Restart Brevent 252 | Brevent server is upgrading. Please try again later. 253 | Cannot get logs. Please try again later. 254 | Failed to start Brevent server. 255 | Since Android 8, Brevent server will stop working whenever \"USB Debugging\" turns off.\n\nDon\'t turn off \"USB debugging\", don\'t change USB options. 256 | Brevent server has no sufficient permissions; some features are unavailable. 257 | @string/unsupported_granted 258 | @string/unsupported_granted 259 | Invalid location for Brevent; please reinstall. 260 | You have brevented important apps: %1$s.\n\nDo you want to unbrevent them? 261 | You have brevented apps which cannot be launched: %1$s.\n\nDo you want to unbrevent them? 262 | Required by: %1$s. 263 | Apps are marked as GMS App. 264 | Apps are allowed to receive messages via sync, broadcast, and FCM (Firebase Cloud Messaging). 265 | Apps are allowed to receive messages via sync or broadcast. 266 | Apps are in aggressive mode. Normally, brevented apps can run for several seconds for dependency check; in aggressive mode, background apps would be force-stopped directly. 267 | Apps won\'t be set as aggressive automatically. 268 | Apps are disabled, must be enabled to use. 269 | Apps are running temporarily, will be disabled later. 270 | Brevent won\'t force-stop connected VPN apps. 271 | Brevent won\'t force-stop playing apps. 272 | Brevent won\'t force-stop paused apps with notifications. 273 | Apps are in Battery Optimization whitelist, won\'t standby. 274 | Safe apps. You shouldn\'t regard them as running. 275 | Apps are on standby, will be force-stopped when they reach \"inactive timeout\" or swiped off from the recents screen. 276 | Apps are running with foreground service, won\'t be brevented. 277 | \"Allow sync\" apps are running in the background, won\'t be brevented. 278 | Apps will be put to standby when they reach \"background apps timeout\", force-stopped when they reach \"inactive timeout\" or swiped off from the recents screen. 279 | If apps are launched, will be put to standby in a short time, force-stopped when they reach \"inactive timeout\" or swiped off from recents screen. Otherwise, will be force-stopped in a short time. 280 | Apps are in brevent list. 281 | Apps are added as widget. 282 | , 283 | 284 | Brevent server is working 285 | Please turn on \"Developer options\", via tap \"Build Number\" 7 times 286 | Brevent server cannot read events 287 | 288 | Starting Brevent server 289 | Brevent server is not started 290 | 291 | Requires to pay %s 292 | Pay now 293 | Not now (%1$d) 294 | Not now 295 | 296 | Brevented \"%1$s\" 297 | Unbrevented \"%1$s\" 298 | Failed to unbrevent \"%1$s\", please launch Brevent 299 | Set \"%1$s\" as aggressive 300 | Tap to unset. 301 | Unset \"%1$s\" 302 | Failed to unset \"%1$s\", please launch Brevent 303 | Recommended to unbrevent \"%1$s\" 304 | Brevented %1$d times in %2$s, tap to unbrevent. 305 | Recommended to disable \"%1$s\" 306 | Brevented %1$d times in %2$s, tap to disable. 307 | Disabled \"%1$s\" 308 | Failed to disable \"%1$s\", please launch Brevent 309 | 310 | Brevent server 311 | @string/brevent_auto_update 312 | @string/brevent_auto_aggressive 313 | Auto unbrevent 314 | 315 | Reset 316 | Stop 317 | Update captive portal 318 | Restart Brevent server 319 | Uninstall static libraries 320 | %1$s\n# Output too large 321 | Exec command only supports simple shell script, use it at your own risk. 322 | 323 | Brevent Disabled API 324 | Enable and disable apps via Brevent server 325 | 326 | 327 | 1 Brefoil 328 | 2 Brefoil 329 | 3 Brefoil 330 | 4 Brefoil 331 | 5 Brefoil 332 | 333 | 334 | Free 335 | @string/payment 336 | Unlimited 337 | @string/payment 338 | Professional 339 | Enjoy Android with Brevent 340 | Contributor 341 | Enjoy Brevent in Android 342 | 343 | Feizhi 344 | 345 | Pixel 346 | AOSP 347 | Play 348 | Nankai 349 | Amoled 350 | 351 | Mark GMS app 352 | Unmark GMS app 353 | Add Instant app 354 | 355 | You have paid %d Brefoil. Pay more to turn on experimental features. 356 | You have paid %d Brefoil. It\'s unnecessary to pay more. 357 | Pay more 358 | Cancel 359 | 360 | Cannot cache play payment, please check network 361 | Cannot cache play payment, please try later 362 | 363 | There is an updated version \"%s\". 364 | You have installed the latest version. 365 | You have installed a beta version. 366 | Update 367 | 368 | Terms & Privacy 369 | You must accept Terms & Conditions and Privacy Policy to use Brevent. In short, Brevent will collect anonymous log data via Visual Studio App Center. 370 | Accept 371 | Reject 372 | 373 | %1$s (Fallback to \"Pixel\" in Dark theme) 374 | 375 | Sort by \"%1$s" requires payment. Would you like to pay now? 376 | 377 | Device default 378 | 379 | Wireless debugging Port 380 | Please turn off / on Wireless debugging to auto discovery port. 381 | Cannot connect, please check port. 382 | Wireless debugging is unsupported. 383 | Wireless pair 384 | Wireless pairing Port 385 | Six digit code 386 | Please reply the six digit code. 387 | Wireless pairing 388 | Wireless paired 389 | Fail to wireless pair 390 | Please visit brevent.sh using Chrome on your PC to pair. 391 | Please tap \"Developer Options\", navigate to \"Wireless debugging\", then tap \"Pair device with pairing code\", reply Brevent\'s notification with the six digit code. 392 | Enable Notification 393 | 394 | @string/about_detail_en 395 | Charging 396 | Charging slowly 397 | Charging fast 398 | , %s W 399 | , %s until full 400 | . 401 | Battery remain time unknown. 402 | Battery remain time: %s. 403 | Battery remain time less than 1 minute. 404 | Battery Settings 405 | 406 | 407 | -------------------------------------------------------------------------------- /payment/src/main/res/values-es/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Siéntete libre de pagar si te gusta. 5 | Payment is unavailable 6 | La función de facturación integrada en la aplicación no está disponible. 7 | Comprobando desde aplicación de facturación integrada … 8 | 9 | 10 | -------------------------------------------------------------------------------- /payment/src/main/res/values-pl/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Nie wahaj się zapłacić za pełną wersję, jeżeli lubisz Brevent 5 | Payment is unavailable 6 | Wbudowane fakturowanie Play nie jest dostępne 7 | Sprawdzanie wbudowanego fakturowania Play… 8 | 9 | 10 | -------------------------------------------------------------------------------- /payment/src/main/res/values-pt-rBR/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Sinta-se livre para pagar se você gostar 5 | Pagamento está indisponível 6 | Pagamento Play no App está indisponível 7 | Verificando Pagamento Play no App… 8 | 9 | 10 | -------------------------------------------------------------------------------- /payment/src/main/res/values-ru/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Не стесняйтесь платить, если хотите 5 | Оплата недоступна 6 | Платежи через Google Play недоступны 7 | Проверка In-app Billing… 8 | 9 | -------------------------------------------------------------------------------- /payment/src/main/res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 如已支付,请先确认 5 | 暂不支持支付 6 | 无法使用 Play 应用内结算 7 | 正在检查 Play 应用内结算… 8 | 9 | 10 | -------------------------------------------------------------------------------- /payment/src/main/res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 如已支付,請先確認 5 | 暫不支援支付 6 | 無法使用 Play 商店內購 7 | 正在檢查 Play 商店內購… 8 | 9 | 10 | -------------------------------------------------------------------------------- /payment/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Feel free to pay if you like 5 | Payment is unavailable 6 | Play In-app Billing is unavailable 7 | Checking Play In-app Billing… 8 | 9 | 10 | --------------------------------------------------------------------------------