Merge branch 'master' of gitlab.com:stax-river/poker-analytics

feature/top10
Laurent 7 years ago
commit 6631a30932
  1. 2
      app/src/main/java/net/pokeranalytics/android/model/realm/Game.kt
  2. 5
      app/src/main/java/net/pokeranalytics/android/ui/fragment/LocationDataFragment.kt
  3. 7
      app/src/main/java/net/pokeranalytics/android/ui/view/RowViewType.kt
  4. 37
      app/src/main/res/layout/row_info.xml
  5. 3
      app/src/main/res/layout/row_title_switch.xml
  6. 11
      app/src/main/res/values-de/strings.xml
  7. 11
      app/src/main/res/values-es/strings.xml
  8. 10
      app/src/main/res/values-fr/strings.xml
  9. 11
      app/src/main/res/values-hi/strings.xml
  10. 11
      app/src/main/res/values-it/strings.xml
  11. 11
      app/src/main/res/values-ja/strings.xml
  12. 11
      app/src/main/res/values-pt/strings.xml
  13. 10
      app/src/main/res/values-ru/strings.xml
  14. 691
      app/src/main/res/values-zh/strings.xml
  15. 43
      app/src/main/res/values/strings.xml
  16. 9
      app/src/main/res/values/styles.xml

@ -5,7 +5,6 @@ import io.realm.RealmObject
import io.realm.RealmResults
import io.realm.Sort
import io.realm.annotations.PrimaryKey
import io.realm.kotlin.where
import net.pokeranalytics.android.R
import net.pokeranalytics.android.model.interfaces.CountableUsage
import net.pokeranalytics.android.model.interfaces.Manageable
@ -14,7 +13,6 @@ import net.pokeranalytics.android.ui.view.RowRepresentable
import net.pokeranalytics.android.ui.view.RowRepresentableEditDescriptor
import net.pokeranalytics.android.ui.view.rowrepresentable.GameRow
import net.pokeranalytics.android.ui.view.rowrepresentable.SimpleRow
import timber.log.Timber
import java.util.*
import kotlin.collections.ArrayList

@ -13,6 +13,7 @@ import net.pokeranalytics.android.ui.view.RowViewType
import net.pokeranalytics.android.ui.view.rowrepresentable.CustomizableRowRepresentable
import net.pokeranalytics.android.ui.view.rowrepresentable.LocationRow
import net.pokeranalytics.android.ui.view.rowrepresentable.SimpleRow
import net.pokeranalytics.android.util.NULL_TEXT
import timber.log.Timber
/**
@ -66,7 +67,7 @@ class LocationDataFragment : EditableDataFragment(), StaticRowRepresentableDataS
override fun stringForRow(row: RowRepresentable): String {
return when (row) {
SimpleRow.NAME -> location.name
SimpleRow.NAME -> if (location.name.isNotEmpty())location.name else NULL_TEXT
else -> return super.stringForRow(row)
}
}
@ -136,6 +137,8 @@ class LocationDataFragment : EditableDataFragment(), StaticRowRepresentableDataS
rows.clear()
rows.add(SimpleRow.NAME)
rows.add(LocationRow.LOCATION_PERMISSION_SWITCH)
// Add info row to explain why we need the location permission
rows.add(CustomizableRowRepresentable(customViewType = RowViewType.INFO, resId = R.string.location_when_in_use_usage_description))
if (isLookingForPlaces) {
rows.add(LocationRow.LOCATION_LOADER)

@ -36,6 +36,7 @@ enum class RowViewType(private var layoutRes: Int) {
HEADER_TITLE_AMOUNT(R.layout.row_header_title_amount),
HEADER_TITLE_AMOUNT_BIG(R.layout.row_header_title_amount_big),
LOCATION_TITLE(R.layout.row_title),
INFO(R.layout.row_info),
// Row
TITLE(R.layout.row_title),
@ -67,8 +68,8 @@ enum class RowViewType(private var layoutRes: Int) {
return when (this) {
// Header Row View Holder
HEADER_TITLE, HEADER_TITLE_VALUE, HEADER_TITLE_AMOUNT, HEADER_TITLE_AMOUNT_BIG, LOCATION_TITLE -> TitleViewHolder(layout)
// Customizable Row View Holder
HEADER_TITLE, HEADER_TITLE_VALUE, HEADER_TITLE_AMOUNT, HEADER_TITLE_AMOUNT_BIG, LOCATION_TITLE, INFO -> CustomizableRowViewHolder(layout)
// Row View Holder
TITLE, TITLE_ARROW, TITLE_VALUE, TITLE_VALUE_ARROW, TITLE_GRID, TITLE_SWITCH, TITLE_CHECK, DATA, BOTTOM_SHEET_DATA, LOADER -> RowViewHolder(
@ -98,7 +99,7 @@ enum class RowViewType(private var layoutRes: Int) {
/**
* Display a header
*/
inner class TitleViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView), BindableHolder {
inner class CustomizableRowViewHolder(itemView: View) : RecyclerView.ViewHolder(itemView), BindableHolder {
override fun bind(position: Int, row: RowRepresentable, adapter: RowRepresentableAdapter) {
if (row is CustomizableRowRepresentable) {

@ -0,0 +1,37 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?selectableItemBackground">
<androidx.appcompat.widget.AppCompatTextView
android:id="@+id/title"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="4dp"
android:layout_marginBottom="4dp"
style="@style/PokerAnalyticsTheme.TextView.RowInfo"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="@+id/guidelineEnd"
app:layout_constraintStart_toStartOf="@+id/guidelineStart"
app:layout_constraintTop_toTopOf="parent"
tools:text="Title" />
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guidelineStart"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_begin="16dp" />
<androidx.constraintlayout.widget.Guideline
android:id="@+id/guidelineEnd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
app:layout_constraintGuide_end="16dp" />
</androidx.constraintlayout.widget.ConstraintLayout>

@ -12,14 +12,11 @@
style="@style/PokerAnalyticsTheme.TextView.RowTitle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="16dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toStartOf="@+id/switchView"
app:layout_constraintStart_toStartOf="@+id/guidelineStart"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.0"
tools:text="Data Type Title" />
<androidx.appcompat.widget.SwitchCompat

@ -681,4 +681,15 @@
<string name="bb_ante_option">Big Blind Ante</string>
<string name="show_fullscreen">Show full screen</string>
<!-- Info.plist -->
<string name="photo_library_usage_description">Poker Analytics lässt Sie Fotos für Spieler einstellen, wenn Sie möchten</string>
<string name="health_share_usage_description">Poker Analytics kann auf Ihre Schlaf- und Sportaktivitäten zugreifen, um einen Bezug zu Ihren Ergebnissen herzustellen</string>
<string name="health_update_usage_description">Poker Analytics loggt keine Daten zur Gesundheit </string>
<string name="contacts_usage_description">Die App kann die Profilbilder Ihrer Freunde automatisch abrufen</string>
<string name="location_when_in_use_usage_description">Poker Analytics kann auf Ihren Standort zugreifen, um Ihnen einen Standortbericht auf einer Karte anzuzeigen</string>
<string name="camera_usage_description">Die Kamera wird verwendet, um ein Bild von einem Spieler zu machen</string>
<string name="photo_library_add_usage_description">Poker Analytics möchte dieses Bild auf Ihrem Gerät in Ihren Aufnahmen speichern.</string>
<string name="face_id_usage_description">Poker Analytics benötigt Zugriff auf Face ID, damit Sie die App per Gesichtserkennung entsperren können.</string>
</resources>

@ -682,4 +682,15 @@
<string name="bb_ante_option">Big Blind Ante</string>
<string name="show_fullscreen">Show full screen</string>
<!-- Info.plist -->
<string name="photo_library_usage_description">Poker Analytics te ofrece la posibilidad de establecer fotos para los jugadores si lo deseas.</string>
<string name="health_share_usage_description">Poker Analytics puede acceder a tus datos de sueño y deporte para relacionarlos con tus resultados.</string>
<string name="health_update_usage_description">Poker Analytics no escribe datos de salud</string>
<string name="contacts_usage_description">La aplicación puede recuperar fotos de tus amigos de manera automática</string>
<string name="location_when_in_use_usage_description">Poker Analytics puede acceder a tu ubicación para mostrarte un informe de ubicación en un mapa.</string>
<string name="camera_usage_description">La cámara se utiliza para sacar fotos de los jugadores.</string>
<string name="photo_library_add_usage_description">Poker Analytics desea guardar esta imagen en tu biblioteca de fotos</string>
<string name="face_id_usage_description">Poker Analytics desea acceder a Face ID para permitir desbloquear la aplicación con reconocimiento facial.</string>
</resources>

@ -678,5 +678,15 @@
<string name="bb_ante_option">Big Blind Ante</string>
<string name="show_fullscreen">Afficher en grand</string>
<!-- Info.plist -->
<string name="photo_library_usage_description">Poker Analytics vous propose d\'utiliser votre bibliothèque pour affecter des photos aux autres joueurs</string>
<string name="health_share_usage_description">Poker Analytics peut accéder à vos données de santé pour corréler vos résultats avec votre sommeil et votre activité sportive</string>
<string name="health_update_usage_description">Poker Analytics n\'écrit aucune données de santé</string>
<string name="contacts_usage_description">L\'app peut utiliser les données de vos contacts pour vous les proposer lorsque nécessaire</string>
<string name="location_when_in_use_usage_description">Poker Analytics utilise votre position:\n • Pour afficher vos résultats sur une carte dans Rapports &gt; Lieux\n • pour vous proposer vos paramètres de jeux préférés lorsque vous démarrez une partie à cette position</string>
<string name="camera_usage_description">L\'appareil photo sert à prendre une photo d\'un joueur</string>
<string name="photo_library_add_usage_description">Poker Analytics souhaite sauvegarder cette image dans votre bibliothèque photo</string>
<string name="face_id_usage_description">Poker Analytics souhaite accéder à Face ID pour déverrouiller l\'application avec la reconnaissance faciale</string>
</resources>

@ -681,4 +681,15 @@
<string name="bb_ante_option">Big Blind Ante</string>
<string name="show_fullscreen">Show full screen</string>
<!-- Info.plist -->
<string name="photo_library_usage_description">यदि आप च Poker Analytics आपकििट करनषमत</string>
<string name="health_share_usage_description">Poker Analytics आपद और खल गतििि तक इस आपक परिथ सहसध सित करनिए पहच कर सकत</string>
<string name="health_update_usage_description">Poker Analytics कई सय ड नहिखत</string>
<string name="contacts_usage_description">एपप सवत: आपकिर पनपत कर सकत</string>
<string name="location_when_in_use_usage_description">Poker Analytics आपक नक पर एक सन रिट दििए आपकन तक पहच कर सकत</string>
<string name="camera_usage_description">मर इसल एक खििए ह</string>
<string name="photo_library_add_usage_description">Poker Analytics इस छवि आपकयब सहजनहत</string>
<string name="face_id_usage_description">Poker Analytics आपकहर पहचन कर एपप खलन अनमतििए Face ID तक पहच चहत</string>
</resources>

@ -681,4 +681,15 @@
<string name="bb_ante_option">Big Blind Ante</string>
<string name="show_fullscreen">Show full screen</string>
<!-- Info.plist -->
<string name="photo_library_usage_description">Analitica del poker ti offre la possibilità di impostare le foto dei giocatori se lo desideri</string>
<string name="health_share_usage_description">Analitica del poker può accedere ai dati della tua attività sportiva e di riposo per correlarli ai tuoi risultati</string>
<string name="health_update_usage_description">Analitica del poker non scrive alcun dato sanitario</string>
<string name="contacts_usage_description">L\'app può recuperare i ritratti dei tuoi amici automaticamente</string>
<string name="location_when_in_use_usage_description">Analitica del poker può accedere alla tua posizione per mostrarti un report di posizione su una mappa</string>
<string name="camera_usage_description">La fotocamera è utilizzata per scattare la foto del giocatore</string>
<string name="photo_library_add_usage_description">Poker Analytics vuole salvare questa immagine nella tua libreria fotografica</string>
<string name="face_id_usage_description">Poker Analytics vuole accedere a Face ID per consentirti di sbloccare l\'app tramite riconoscimento facciale</string>
</resources>

@ -681,4 +681,15 @@
<string name="bb_ante_option">Big Blind Ante</string>
<string name="show_fullscreen">Show full screen</string>
<!-- Info.plist -->
<string name="photo_library_usage_description">Poker Analytics では、ご希望の場合、プレイヤーのフォトを設定できます</string>
<string name="health_share_usage_description">Poker Analytics は、あなたの睡眠およびアクティビティ データにアクセスし、結果と相関付けすることができます</string>
<string name="health_update_usage_description">Poker Analytics は、ヘルス データの書き込みを行いません</string>
<string name="contacts_usage_description">アプリでは、お友達のポートレートを自動的に取得できます</string>
<string name="location_when_in_use_usage_description">Poker Analytics では、場所情報にアクセスし、マップ上に場所レポートを表示できます</string>
<string name="camera_usage_description">プレイヤーのフォトを撮影するには、カメラが使用されます</string>
<string name="photo_library_add_usage_description">Poker Analyticsは、この画像をPhotos(写真)ライブラリーに追加させていただきたいと考えております</string>
<string name="face_id_usage_description">顔認識でアプリのロックを解除できるようにするため、Poker AnalyticsがFace IDをへのアクセスを要求しています</string>
</resources>

@ -681,4 +681,15 @@
<string name="bb_ante_option">Big Blind Ante</string>
<string name="show_fullscreen">Show full screen</string>
<!-- Info.plist -->
<string name="photo_library_usage_description">Com o Poker Analytics, se desejar, você pode definir fotos para os jogadores</string>
<string name="health_share_usage_description">O Poker Analytics pode acessar os seus dados de sono e atividade esportiva para correlacioná-los aos seus resultados</string>
<string name="health_update_usage_description">O Poker Analytics não cria nenhum dado de saúde</string>
<string name="contacts_usage_description">O app não pôde obter os retratos dos seus amigos automaticamente</string>
<string name="location_when_in_use_usage_description">O Poker Analytics pode acessar a sua localização para mostrar um relatório do local no mapa</string>
<string name="camera_usage_description">A câmera é usada para tirar a foto de um jogador</string>
<string name="photo_library_add_usage_description">O Poker Analytics deseja salvar esta imagem na sua biblioteca de Fotos</string>
<string name="face_id_usage_description">O Poker Analytics deseja acessar o Face ID para permitir que você desbloqueie o aplicativo com reconhecimento facial</string>
</resources>

@ -682,5 +682,15 @@
<string name="bb_ante_option">Big Blind Ante</string>
<string name="show_fullscreen">Show full screen</string>
<!-- Info.plist -->
<string name="photo_library_usage_description">Poker Analytics дает игрокам возможность, по желанию, устанавливать фото</string>
<string name="health_share_usage_description">Poker Analytics может получить доступ к данным сна и спортивной деятельности, чтобы соотнести его с вашими результатами</string>
<string name="health_update_usage_description">Poker Analytics не записывает данных о здоровье</string>
<string name="contacts_usage_description">Приложение может получать портреты друзей автоматически</string>
<string name="location_when_in_use_usage_description">Poker Analytics может определять местоположение, чтобы показывать отчет о местоположении на карте</string>
<string name="camera_usage_description">Камера используется для фотографирования игрока</string>
<string name="photo_library_add_usage_description">Poker Analytics хочет сохранить это изображение в ваш Фотоархив</string>
<string name="face_id_usage_description">Poker Analytics хочет получить доступ к Face ID, чтобы вы могли разблокировать приложение c помощью идентификации по лицу</string>
</resources>

@ -0,0 +1,691 @@
<resources>
<string name="app_name">Poker Analytics</string>
<string name="_ago">%@前</string>
<string name="_doesn_t_have_access_to_your_contacts_alert_message">%@不能访问你的联系人且不能检索你的现有好友姓名。通过iPhone首选项可授权防止任何\'陌生用户\'名访问。</string>
<string name="_indicates_that_the_file_is_on_your_icloud_account_">一颗星表示一个文件存储在你的iCloud帐户上。</string>
<string name="activate">启用</string>
<string name="activate_icloud_storage_detailed_explaination">iCloud在你的所有设备上保存你的数据并保持最新。启用时,你的数据被移至iCloud,在其它设备访问你的数据前,这可能要花费一段时间。</string>
<string name="activate_pin_protection">启用PIN码</string>
<string name="activated">已启用</string>
<string name="add_a_new_custom_field">添加新自定义字段</string>
<string name="add_friend_popup_title">选择添加好友方式</string>
<string name="add_manually">手动创建</string>
<string name="add_multiplayer_tracking">添加多人游戏追踪</string>
<string name="add_new_friend">新增好友</string>
<string name="adding_data"></string>
<string name="affectation">选项</string>
<string name="afternoon">下午</string>
<string name="alarm">提醒</string>
<string name="all_br_results">总计</string>
<string name="all_sessions">所有进程</string>
<string name="amount">数量 </string>
<string name="and_i_more_"> 还有%i个…</string>
<string name="and_less">和更少</string>
<string name="and_more">和更多</string>
<string name="ante">底注</string>
<string name="ante_value">底注</string>
<string name="app_store">升级</string>
<string name="are_you_sure_you_want_to_do_that_">确定那么做?</string>
<string name="ask_user_to_add_icloud_account_to_be_able_to_use_icloud_storage">必须在设备上添加iCloud帐户才能使用此功能。</string>
<string name="ask_user_to_enable_icloud_to_migrate_data_from_icloud_to_local">必须重新启用iCloud才能将数据从iCloud移出并关闭iCloud存储。</string>
<string name="ask_user_to_use_icloud">iCloud存储现在可用,你要使用它并在所有设备上自动分享你数据吗?</string>
<string name="associated_contact_from_addressbook">链接到联系人</string>
<string name="at"></string>
<string name="auto_end">自动结束</string>
<string name="auto_back_up">自动备份</string>
<string name="average_buyin">平均参赛费</string>
<string name="average_chip_count">平均注码</string>
<string name="average_hour_rate">小时率</string>
<string name="average_hour_rate_bb_">小时率(大盲注)</string>
<string name="average_hours_played">平均时长</string>
<string name="average_net_result">平均净结果</string>
<string name="average_net_result_bb_">平均净结果(大盲注)</string>
<string name="back">返回</string>
<string name="balance">平衡</string>
<string name="bankroll">资金</string>
<string name="bankroll_relationship_error"> 1个或多个进程与此资金关联…请先删除其链接进程。</string>
<string name="bankrolls">资金</string>
<string name="bar">条形</string>
<string name="bar_short">条形</string>
<string name="bb">大盲注</string>
<string name="bb_standard_deviation">大盲注标准偏差</string>
<string name="bigblind">大盲注</string>
<string name="blind">盲注</string>
<string name="blinds">盲注</string>
<string name="blinds_level_up">盲注增加</string>
<string name="bonus">奖励</string>
<string name="bonuses">奖励</string>
<string name="break_time">休息时间</string>
<string name="bug_report">故障报告</string>
<string name="bug_report_subject">故障报告</string>
<string name="buy_full_version">升级</string>
<string name="buyin">参赛费</string>
<string name="buyin_repartition">参赛费</string>
<string name="calculating_please_wait_">正在计算,请等待&#8230;</string>
<string name="cancel">取消</string>
<string name="cant_do_this">我不能完成!</string>
<string name="cash">现金</string>
<string name="cash_and_tournament_statistic_warning">已选择现金和比赛统计,该报告不会包括任何数据。</string>
<string name="cash_game">现金游戏</string>
<string name="cash_games">现金游戏</string>
<string name="cash_or_tournament">现金/比赛</string>
<string name="cash_prize">奖品</string>
<string name="cash_statistic_warning">将根据现金游戏筛选结果</string>
<string name="cashed_out">已折现</string>
<string name="cf_empty_field_error">你必须命名自定义字段</string>
<string name="cf_entry_delete_popup_message">该项目链接1个或多个进程。请确认删除该项目。</string>
<string name="cf_entry_delete_popup_title">确认</string>
<string name="chart_unavailable_please_contact_the_support_team">该图表不能导出和分享,请联系支持团队</string>
<string name="chart_view">图表</string>
<string name="chip_count">注码</string>
<string name="clear">清理</string>
<string name="clear_to_use_automatic_naming">清理可使用自动生成标题</string>
<string name="comment">评论</string>
<string name="comparators">比较器</string>
<string name="comparison">比较</string>
<string name="confirmation">确认</string>
<string name="contact">联系我们</string>
<string name="csv">CSV(无法导入)</string>
<string name="csv_bad_row_error_message">CSV文件中的线之一不合适。请核查你的文件或联系支持团队。</string>
<string name="currency">货币</string>
<string name="current_month">本月</string>
<string name="current_week">本周</string>
<string name="current_year">本年度</string>
<string name="curve">曲线</string>
<string name="custom">自定义</string>
<string name="custom_fields">自定义字段</string>
<string name="data">导入和导出</string>
<string name="data_management">数据管理</string>
<string name="data_table">牌桌</string>
<string name="date">日期</string>
<string name="day"></string>
<string name="day_of_the_week">星期</string>
<string name="day_period">日期间</string>
<string name="days"></string>
<string name="default_display">默认显示</string>
<string name="default_type">报告类型</string>
<string name="delete">删除</string>
<string name="deposit">押金</string>
<string name="deposits">押金</string>
<string name="depth_calculator">M-比率</string>
<string name="desactivate">禁用</string>
<string name="desactivate_icloud_storage_detailed_explaination">若你禁用此选项,你的数据将从iCloud移回你的设备,你的其它设备和在iCloud还原情况下将没有你的数据。</string>
<string name="desactivated">已禁用</string>
<string name="details">详情</string>
<string name="disable_pin_protection">禁用PIN码</string>
<string name="done"></string>
<string name="downloading_the_file_n">正在下载该文件&#8230;\n</string>
<string name="dte">时效</string>
<string name="duplicate">重复</string>
<string name="duplicate_bankroll_name_error">一笔同名的资金已存在</string>
<string name="duplicate_cf_error">一个同名的自定义字段已存在</string>
<string name="duplicate_location_error">一个同名的位置已存在</string>
<string name="duplicate_room_error">一个同名的房间已存在</string>
<string name="duplicate_tt_error">一个同名的比赛类型已存在</string>
<string name="duplicate_user_error">此好友已存在</string>
<string name="duplicate_variant_error">一个同名的游戏已存在</string>
<string name="duration">时长</string>
<string name="dynamic_date">动态日期</string>
<string name="edit">编辑</string>
<string name="edit_hands_and_stacks">编辑牌型和注码</string>
<string name="edit_name">编辑名称</string>
<string name="email">邮件</string>
<string name="empty_name_for_br_error">你需要命名此资金</string>
<string name="empty_response_from_store">该商店没有回应,请重试</string>
<string name="end">结束</string>
<string name="end_all_the_games_validation_popup_title">你要结束所有游戏?</string>
<string name="end_date">结束日期</string>
<string name="end_date_have_not_been_set_the_format_may_not_be_correct_here_is_the_value_used_for_parsing_">未设置结束日期!该格式可能不正确。这里是用于分析的值:%@</string>
<string name="end_of_rebuy_period_and_blinds_level_up">重新购买周期结束,盲注增加</string>
<string name="end_of_rebuy_period_in_less_than_one_minute">一分钟内重新购买周期结束</string>
<string name="end_of_session_is_close_press_details_to_stop_your_session_and_set_results">进程结束已关闭,触按详情停止你的进程并设置结果 </string>
<string name="end_of_session_not_respected">进程结束未遵从</string>
<string name="end_of_session_respected">进程结束已遵从</string>
<string name="enter_pin_code">PIN码校验</string>
<string name="entry_fees">参赛费</string>
<string name="enum_custom_field_type">列表 </string>
<string name="environment_based_comparator">环境</string>
<string name="erase_all_db_and_cloud">清除全部(包括iCloud)</string>
<string name="erase_everything">清除全部</string>
<string name="erase_sessions">清除进程</string>
<string name="evening">傍晚</string>
<string name="export">导出</string>
<string name="export_message">你可将进程以CSV或XML格式(XML允许数据导入)导出</string>
<string name="export_popup_title">选择类型</string>
<string name="feature_locked_and_inapp_purchase_disabled">此功能已锁定,很遗憾你已禁用应用内购买。请核查设置。</string>
<string name="file_directory_creation_error">导入失败。某些用来导入的文件无法创建,这可能由于空间不够</string>
<string name="file_named_was_successfully_saved_on_your_icloud_account">名为%@的文件已成功保存在你的iCloud帐户上。</string>
<string name="filter">筛选</string>
<string name="filter_selection">筛选启用</string>
<string name="filter_used_in_one_or_more_reports_you_can_t_delete_it_">此筛选无法删除,因为它链接1个或多个报告。</string>
<string name="filters">筛选</string>
<string name="final_position">最终位置</string>
<string name="fixed_date">固定日期</string>
<string name="friend_email_usage">该电子邮件仅被用于邀请和进程报告</string>
<string name="friends">好友</string>
<string name="from">来自</string>
<string name="game">游戏</string>
<string name="games">游戏</string>
<string name="general">常规</string>
<string name="generates_sessions">生成进程</string>
<string name="geo_locate">为我定位</string>
<string name="geolocation_off">地理定位关</string>
<string name="geolocation_status">地理定位状态</string>
<string name="global">全球</string>
<string name="go">前往</string>
<string name="h">小时</string>
<string name="hand">牌型</string>
<string name="hand_history_list_title">牌型</string>
<string name="hand_history_serie_title">牌型</string>
<string name="hand_history">牌型历史</string>
<string name="hand_number">牌型号</string>
<string name="hands">牌型</string>
<string name="heads_up">单挑</string>
<string name="help">帮助</string>
<string name="here_is_the_explanation_of_my_bug_the_steps_to_reproduce_and_the_frequency_a_back_up_of_my_data_is_automatically_added_to_the_mail_">这是我的故障的解释、反复出现的步骤和频率。一份我的数据备份自动新增到邮件。</string>
<string name="hero">英雄</string>
<string name="hero_selection">英雄</string>
<string name="hide_hands_and_stacks">隐藏牌型和注码</string>
<string name="holdem_manager_section">Holdem Manager 1 </string>
<string name="home_email_is_used">使用的电子邮箱对应地址簿中的\'主页\'电子邮件</string>
<string name="hour_rate_without_pauses">净时率</string>
<string name="hour_slot">小时预约</string>
<string name="how_to_switch_from_lite_to_full_version_icloud_version">导出你的数据到iCloud,获得完整版本,打开后从iCloud导入你的数据。</string>
<string name="icloud">iCloud</string>
<string name="icloud_account_availability_changed">iCloud设置已修改,请等待同步。</string>
<string name="icloud_backup_available_to_import">在iCloud上发现你的数据备份,你要在该设备上使用吗?若是,来自该设备的本地数据将替代备份,若不是,你会总使用来自该设备的本地数据,你的iCloud帐户将无法修改。</string>
<string name="icloud_error">iCloud错误</string>
<string name="icloud_sync">同步</string>
<string name="icloud_waiting_alert">iCloud正在同步,几秒后,你的数据将被iCloud处理!</string>
<string name="icloud_warning">来自iCloud的通知</string>
<string name="import_str">导入</string>
<string name="import_from_address_book">使用通讯录</string>
<string name="import_not_successfull">识别出问题</string>
<string name="import_session_save_error_">保存进程时出错:%@</string>
<string name="import_successfull">导入成功</string>
<string name="imported_session">导入进程</string>
<string name="in"></string>
<string name="in_minutes">在几分钟后</string>
<string name="inapp_purchase_disabled">你需要启用应用内购买才能查看该内容</string>
<string name="information">关于</string>
<string name="initial_stack">最初参赛费</string>
<string name="items_list">项目</string>
<string name="itunes_section">iTunes</string>
<string name="language">语言</string>
<string name="language_popup_message">选择语言</string>
<string name="language_should_restart_app_popup_message">你必需再启动应用才能查看更改。</string>
<string name="last_days">最近的时日</string>
<string name="last_module">纪录和进程</string>
<string name="last_sessions">最新进程</string>
<string name="learn_more">了解详情</string>
<string name="less_than">少于</string>
<string name="level">关卡</string>
<string name="level_duration">关卡时长</string>
<string name="limit">限制</string>
<string name="limits">限制</string>
<string name="live">现场</string>
<string name="live_or_online">现场/在线</string>
<string name="live_online_room">在线/房间</string>
<string name="load_from_db">打开&#8230;</string>
<string name="location">位置</string>
<string name="location_">位置:%@, </string>
<string name="location_empty_field_error">你需要命名此位置。</string>
<string name="location_not_track">未追踪的位置</string>
<string name="location_track">追踪的位置</string>
<string name="location_tracking">位置追踪</string>
<string name="locations">位置</string>
<string name="locked_feature">该功能已锁定。你能了解其详情或直接购买。</string>
<string name="looking_for_the_file_on_icloud_">正在iCloud上寻找该文件&#8230;</string>
<string name="lost">失败</string>
<string name="lost_amount_less_than">失败少于</string>
<string name="lost_amount_more_than">失败多于</string>
<string name="m"></string>
<string name="made_break">休息</string>
<string name="mail">电子邮件</string>
<string name="mail_setting_by_tap">点击设置电子邮箱</string>
<string name="mail_unavailable_messsage">你必须配置设备电子邮件帐户才能使用此功能</string>
<string name="mailing_list">邮寄名单</string>
<string name="mainuser_delete_error">无法删除该主要用户</string>
<string name="map">地图</string>
<string name="mapping">测图</string>
<string name="max">最大</string>
<string name="max_net_result">最佳净结果</string>
<string name="million_multiplier">x 1百万</string>
<string name="min"></string>
<string name="min_net_result">最差净结果</string>
<string name="minimum">最小值</string>
<string name="mins"></string>
<string name="minus"></string>
<string name="modify_current_filter">修改&#8230; </string>
<string name="month"></string>
<string name="month_of_the_year">年度月份</string>
<string name="months"></string>
<string name="more_info">更多信息</string>
<string name="more_than">超过</string>
<string name="morning">上午</string>
<string name="multi_tabling">多牌桌</string>
<string name="my_details">个人详情</string>
<string name="myself"></string>
<string name="name">名字</string>
<string name="negative_result">负面结果</string>
<string name="net_banked">净存款金额</string>
<string name="net_result">净结果</string>
<string name="net_result_overview">净结果</string>
<string name="new_str"></string>
<string name="new_bankroll">新资金</string>
<string name="new_cash_game">新现金游戏</string>
<string name="new_custom_field">新自定义字段</string>
<string name="new_feature_icloud">iCloud同步可用</string>
<string name="new_friend">新好友</string>
<string name="new_location">新位置</string>
<string name="new_name">新名称</string>
<string name="new_report">新报告</string>
<string name="new_room">新房间</string>
<string name="new_tournament">新比赛</string>
<string name="new_tournament_type">新比赛类型</string>
<string name="new_variant">新游戏</string>
<string name="next">下一</string>
<string name="nickname"></string>
<string name="night">夜间</string>
<string name="no"></string>
<string name="no_br_popup_message">你必须选择一笔资金</string>
<string name="no_evo_stat_popup_message">没有可显示的演变数据</string>
<string name="no_filter_activated">筛选关</string>
<string name="no_filter_available_popup_message">没有可用的筛选</string>
<string name="no_keep_data_local"></string>
<string name="no_players_available">无玩家</string>
<string name="no_records">无纪录</string>
<string name="no_sessions">无进程</string>
<string name="no_data_found">未找到数据</string>
<string name="not_track">无追踪</string>
<string name="now">现在</string>
<string name="number">数目</string>
<string name="number_of_buyins">参赛费数目</string>
<string name="number_of_hands">牌型数目</string>
<string name="number_of_players">玩家数目</string>
<string name="number_of_rebuys">重买数目</string>
<string name="number_of_sessions">进程数目</string>
<string name="number_of_tables">牌桌数目</string>
<string name="ok"></string>
<string name="on">关于</string>
<string name="online">在线</string>
<string name="other">其它</string>
<string name="password_explanation">选择PIN码可保护访问该应用。\n请注意(若忘记)PIN码无法找回。\n启用此功能时务必小心谨慎。</string>
<string name="password_protection">PIN码</string>
<string name="pause">休息</string>
<string name="paused_session_state">休息</string>
<string name="payment_successful">支付成功</string>
<string name="period">时长</string>
<string name="period_in_days">已过天数</string>
<string name="pincode_activated"></string>
<string name="pincode_desactivated"></string>
<string name="player">玩家</string>
<string name="players">玩家</string>
<string name="please_check_if_your_values_are_valid">请检查你的值是否有效</string>
<string name="please_confirm_the_import_start_">请确认导入\'%@\'?</string>
<string name="please_select_the_field_corresponding_to">请选择相应的字段:</string>
<string name="please_type_your_pin_code">请输入你的PIN码</string>
<string name="plus"></string>
<string name="poker_income_section">扑克收入</string>
<string name="poker_journal_section">扑克日志</string>
<string name="poker_tracker_4_section">扑克追踪器4</string>
<string name="poker_tracker_section">扑克追踪器3</string>
<string name="popup_message_no_record_when_report_is_invalid">没有可用数据生成此报告。</string>
<string name="popup_message_welcome">非常感谢你试用该应用,我们希望你轻松享用。若有任何疑问,请联系我们。</string>
<string name="position">位置</string>
<string name="positions">位置</string>
<string name="positive_result">正结果</string>
<string name="pot_size">彩池大小</string>
<string name="preferences">首选项</string>
<string name="preparing_your_data_for_bug_report_">正在准备你的数据…</string>
<string name="prize">奖品</string>
<string name="prize_pool">奖池</string>
<string name="processing_file">初始化&#8230;</string>
<string name="protection">安全</string>
<string name="purchase">购买</string>
<string name="rakeback">退水</string>
<string name="rate">评分</string>
<string name="rate_it_">给它评分!</string>
<string name="rebuy">重买</string>
<string name="rebuys">重买</string>
<string name="refresh_rate">刷新率</string>
<string name="relationship_error">该项目可在1个或多个进程中使用&#8230;请先删除链接的进程。</string>
<string name="remove_cf_entries_popup_message">将删除列表项,确定更改自定义字段类型?</string>
<string name="remove_cf_entries_popup_title">删除项目</string>
<string name="remove_filter">清除筛选</string>
<string name="remove_multiplayer_tracking">删除多人游戏追踪</string>
<string name="report_deletion_actionsheet_title">你真的删除此报告?</string>
<string name="report_type_info_popup_message">标准报告计算使用选定统计、比较和筛选。地图报告显示基于地理定位的结果。时效(HE)显示时间段(日)期间的选定指标。</string>
<string name="report_type_info_popup_title">帮助</string>
<string name="reports">报告</string>
<string name="reseting_please_wait_">重置中,请等待&#8230;</string>
<string name="restart_timer">重新开始定时器</string>
<string name="result">结果</string>
<string name="room">房间</string>
<string name="room_">房间:%@</string>
<string name="room_empty_field_error">你需要命名此房间</string>
<string name="rooms">房间</string>
<string name="running_session_state">运行中</string>
<string name="same_name_different_kind_custom_field_log_">自定义字段\'%@\'已存在于你的数据库中,但类型不同。此字段和它的所有值将被忽略。若你真要保留此值,请取消此导入,重命名自定义字段并重试该导入。</string>
<string name="save_report_error_popup_message">你需要命名它并选择至少一个统计保存此报告 </string>
<string name="saving_imported_data_please_wait_">正在保存导入数据,请等待&#8230;</string>
<string name="security">安全</string>
<string name="select_a_value_that_will_be_affected_to_all_imported_session_for_the_field">选择将被分配给此字段所有导入进程的值</string>
<string name="select_filters">选择筛选</string>
<string name="serie_duplicate_confirmation_request">你真要重复此进程?</string>
<string name="serie_summary">系列摘要</string>
<string name="services">设置</string>
<string name="session">进程</string>
<string name="session_duration">进程时长</string>
<string name="session_won_amount_have_not_been_set_here_is_the_value_used_for_parsing_">未设置进程获胜数量!这是被用来分析的值:%@</string>
<string name="session_s_comments_updated_">进程的评论已更新</string>
<string name="sessions">进程</string>
<string name="share_chart">分享图表</string>
<string name="share_stack">分享注码</string>
<string name="sharing">正在分享</string>
<string name="short_name">缩写</string>
<string name="show_hands_and_stacks">显示牌型和注码</string>
<string name="smallblind">小盲注</string>
<string name="so_easy_">如此轻松!</string>
<string name="something_wrong_happened_with_icloud_please_retry_later">iCloud出错了,请稍后重试</string>
<string name="stack">注码</string>
<string name="stack_initial_en_bb_">起始注码(大盲注)</string>
<string name="stacks">注码</string>
<string name="stakes">赌注</string>
<string name="standard">标准</string>
<string name="standard_deviation">标准偏差</string>
<string name="start">开始</string>
<string name="start_date">开始日期</string>
<string name="start_date_have_not_been_set_the_format_may_not_be_correct_here_is_the_value_used_for_parsing_">未设置开始日期,格式可能错误。这是导入时使用的值:%@</string>
<string name="start_import"></string>
<string name="statistics">统计</string>
<string name="stats">统计</string>
<string name="stop">停止</string>
<string name="street_search_failed_but_geolocation_is_known">地址搜索失败,但地理定位成功了。</string>
<string name="subfilter_elements_">启用了次筛选…</string>
<string name="summary">摘要</string>
<string name="switch_str">切换</string>
<string name="table"></string>
<string name="table_size">牌桌大小</string>
<string name="table_size_not_track">未追踪桌大小</string>
<string name="table_size_track">已追踪桌大小</string>
<string name="table_size_tracking">追踪中桌大小</string>
<string name="table_sizes">牌桌大小</string>
<string name="tables"></string>
<string name="tap_or_slide">点击或滑动</string>
<string name="thank_you_message">恭喜,该内容现在可用。</string>
<string name="the_at_">%1$@,%2$@</string>
<string name="the_location_named_already_have_these_coordinates">名为%@的位置已有这些坐标。</string>
<string name="the_rate_wasn_t_able_to_be_found_a_rate_of_1_will_be_used_by_default_you_can_still_edit_the_rate_by_yourself_">当前评分无法检索。默认将使用的评分为1。你仍能单独编辑该评分。</string>
<string name="the_session_already_exists_start_date_end_date_amount_won_">该进程已存在!开始日期:%1$@,结束日期:%2$@,获胜数量 :%3$@ </string>
<string name="the_session_already_exists_start_date_end_date_net_result_">该进程已存在!开始日期:%1$@,结束日期:%2$@,净结果:%3$@</string>
<string name="this_game_started_">你的进程已开始:%@</string>
<string name="this_month">本月</string>
<string name="this_week">本周</string>
<string name="this_year">今年</string>
<string name="thousand_multiplier">x 1千</string>
<string name="time_based_comparator">时间表</string>
<string name="time_frame">时间表</string>
<string name="tips">提示</string>
<string name="to"></string>
<string name="today">今日</string>
<string name="top_10">前10名</string>
<string name="total">总计</string>
<string name="total_buyin">参赛费总计</string>
<string name="total_hours_played">比赛时间</string>
<string name="total_net_result_bb_">大盲注净结果</string>
<string name="total_tips">提示总计</string>
<string name="tournament">比赛</string>
<string name="tournament_roi">投资回报</string>
<string name="tournament_statistic_warning">结果将按比赛筛选</string>
<string name="tournament_type">比赛类型</string>
<string name="tournament_types">类型</string>
<string name="tournaments">比赛</string>
<string name="trash_bankroll">你真的要删除此资金吗?</string>
<string name="trash_hand">你真的要删除此牌型历史吗?</string>
<string name="trash_serie_of_hand_history">你真的要删除该系列的牌型历史吗?</string>
<string name="try_this_awesome_app_">试试这款超赞应用!</string>
<string name="tt_empty_field_error">你需要命名此比赛类型</string>
<string name="twitter">Twitter</string>
<string name="type">类型</string>
<string name="type_de_limite">限制类型</string>
<string name="unable_to_get_from_fixer_io_">无法从雅虎获得评分- %@</string>
<string name="unfollowed_">已取消关注!</string>
<string name="unknown_import_format_popup_message">文件格式无法识别</string>
<string name="unknown_user">未知用户</string>
<string name="user_empty_field_error">你需要命名你的好友</string>
<string name="validate">验证</string>
<string name="value"></string>
<string name="variant_">游戏:%@, </string>
<string name="variant_empty_name_error">你需要命名该游戏</string>
<string name="variant_empty_shortname_error">你需要为该游戏进行简短命名</string>
<string name="version">版本</string>
<string name="view_not_enabled_popup_message">此报告不提供显示。</string>
<string name="volumes">音量</string>
<string name="warning">糟糕&#8230; </string>
<string name="warning_end_of_rebuy_period_press_details_to_pause_the_game_and_handle_your_rebuys_addons">警告,重买周期结束已关闭,触按详情可暂停游戏并处理你最后的重买/加购</string>
<string name="week"></string>
<string name="week_days">工作日</string>
<string name="weekdays_or_weekend">工作日或周末</string>
<string name="weekend">周末</string>
<string name="welcome_in_">欢迎使用%@</string>
<string name="win_ratio">获胜率</string>
<string name="with">利用</string>
<string name="withdrawal">提款</string>
<string name="withdrawals">提款</string>
<string name="without_break">不间断</string>
<string name="without_rebuy">无重买</string>
<string name="won">获胜</string>
<string name="won_amount_less_than">赢利不到</string>
<string name="won_amount_more_than">赢利超过</string>
<string name="wrong_pin_code_message">PIN码有误。请重试。</string>
<string name="xml">XML</string>
<string name="year"></string>
<string name="yes"></string>
<string name="yes_i_m_sure">是,我确定</string>
<string name="yes_use_icloud"></string>
<string name="yesterday">昨天</string>
<string name="yesterday_and_today">今天和昨天</string>
<string name="you_can_retrieve_the_generated_file_named_within_itunes">你能检索iTunes内生成的名为%@的文件。</string>
<string name="you_can_t_have_more_than_i_comparison_keys_selected">抱歉,你不能同时启用超过%i个的比较密匙!</string>
<string name="your_are_going_to_affect_the_following_values_to_all_imported_sessions_please_check_the_following_">你要对所有导入的进程指定以下值。请检查以下项目: </string>
<string name="your_attention">警告</string>
<string name="alternative_migrate_from_v3_popup_message_welcome">欢迎使用Poker Analytics 5!若要从Poker Analytics 3导入你的数据,你需要在Poker Analytics 3中禁用iCloud,然后触按此导入按扭</string>
<string name="are_you_sure_you_want_to_import_your_data_from_v3">确定导入你的Poker Analytics 3数据吗?这会清除你当前的Poker Analytics 5数据。</string>
<string name="bankroll_filter_date_selection_warning">你需要选择应用筛选的日期</string>
<string name="calories">卡路里</string>
<string name="choose_a_theme">选择主题</string>
<string name="clover_classic_green">三叶草♣- 经典绿色</string>
<string name="diamond_light">钻石♦- 光亮</string>
<string name="final_table">决赛桌</string>
<string name="hands_history">牌型历史</string>
<string name="import_from_v3">从Poker Analytics 3导入</string>
<string name="library"></string>
<string name="manually">手动</string>
<string name="players_count">玩家统计</string>
<string name="profile">个人资料</string>
<string name="rebuy_count">重买统计</string>
<string name="remove">删除</string>
<string name="report_lack_of_sessions_warning">启动该报告没有足够的进程</string>
<string name="select">选择</string>
<string name="semi_finals">半决赛</string>
<string name="set">设置</string>
<string name="subscribe">订阅</string>
<string name="successfully_imported_your_data_from_v3">数据已成功导入!</string>
<string name="take_a_picture">拍照</string>
<string name="tournament_completion_percentage">完成</string>
<string name="tournament_completion_percentage_interval">完成百分率</string>
<string name="you_must_disable_icloud_sync_to_be_able_to_import_v3_data_on_both_apps">你必须在从Poker Analytics 3导入你的数据前在两个应用上禁用iCloud</string>
<string name="please_report_a_bug">发生内部问题。若你能报告一个故障问题且详述产生故障的步骤,我们将不胜感激。谢谢!</string>
<string name="restore">还原</string>
<string name="delete_data_from_icloud">删除iCloud数据</string>
<string name="no_data_in_cloud_warning">iCloud上没有Poker Analytics数据</string>
<string name="unlock_application">请确定你自己打开该应用</string>
<string name="report_error_neither_filter_result_has_any_data">此报告中没有数据显示</string>
<string name="report_lack_of_records_warning">启动此报告要求最少10分</string>
<string name="theme">主题</string>
<string name="please_restart_the_app_to_load_the_theme">请重启该应用后加载该主题</string>
<string name="health_report_category">调节</string>
<string name="report_error_no_stat_to_compute">此报告中没有可计算的统计。</string>
<string name="total_duration">总时长</string>
<string name="points">得分</string>
<string name="average">平均</string>
<string name="subscription_description">解锁一切</string>
<string name="iap_session_message">你已达到最多进程。获得新订阅可获取更多进程!</string>
<string name="year_subscription"></string>
<string name="purchase_status">购买状态</string>
<string name="restore_successful">还原成功</string>
<string name="restore_message">你购买的产品已成功还原。敬请享用!</string>
<string name="subscribeview_expand_button">立即订阅!</string>
<string name="bankroll_variation">资金变化</string>
<string name="all_tournaments">所有比赛</string>
<string name="all_cash_games">所有现金游戏</string>
<string name="additive">附加</string>
<string name="subtractive">减少</string>
<string name="add_a_hand_history">添加牌型历史</string>
<string name="add_a_player_note">添加玩家备注</string>
<string name="health_kit_not_available_error">健康应用和数据在该设备上不可用。</string>
<string name="report_error_report_has_more_than_one_filter">该报告意外包括多个筛选,已删除所有筛选。</string>
<string name="conditioning_report_filtering_returns_no_data">筛选没有返回任何结果</string>
<string name="tournament_type_complete">比赛类型</string>
<string name="purchase_successful">购买成功!</string>
<string name="purchase_message">多谢你购买Poker Analytics!</string>
<string name="resume">继续</string>
<string name="healthkit_no_results_error">没有数据计算此报告</string>
<string name="place">名次</string>
<string name="multiplayer">多人游戏</string>
<string name="table_size_for_hand_history">牌桌大小</string>
<string name="add_comment">添加评论</string>
<string name="from_hour_">来自</string>
<string name="to_hour_"></string>
<string name="maximum">最大值</string>
<string name="whats_new_in_">%@有何新功能?</string>
<string name="releasenote_question">喜欢Poker Analytics?</string>
<string name="releasenote_invitation">请反馈本应用如何</string>
<string name="releasenote_rating">在App Store给我们评分</string>
<string name="no_thanks">不,谢谢</string>
<string name="stop_notification_body">时间到!</string>
<string name="stop_notification_title">根据你的历史记录,好像你开始累了。可能该停止了!</string>
<string name="stop_notifications">停止通知</string>
<string name="stop_notification_in_">在%@中已设置停止通知</string>
<string name="save_authorize">保存和授权</string>
<string name="select_a_color">选择颜色</string>
<string name="spotlight_indexing">聚焦索引</string>
<string name="_is_not_authorize_to_access_the_camera_be_aware_that_the_app_will_be_terminated_if_you_modify_the_privacy_setting_">未授权%@访问摄像头。若修改隐私设置,请注意自动关闭应用将失去未保存的数据。</string>
<string name="_is_not_authorize_to_access_your_library_be_aware_that_the_app_will_be_terminated_if_you_modify_the_privacy_setting_">未授权%@访问照片库。若修改隐私设置,请注意自动关闭应用将失去未保存的数据。</string>
<string name="new_hand">新手</string>
<string name="new_note">新备注</string>
<string name="tap_to_learn_more">触按一个项目了解详情</string>
<string name="free">免费</string>
<string name="subscription">订阅</string>
<string name="subscriptions">订阅</string>
<string name="none"></string>
<string name="intermediate_sub_short_title">半专业</string>
<string name="pro_sub_short_title">专业</string>
<string name="subscription_details">订阅详细信息</string>
<string name="subscription_text">订购使用条款:\n- 将在确认购买时从iTunes帐户收取订购费。\n- 订购将自动续期,除非在当期订购结束至少24小时前关闭。\n- 订购可由用户管理,购买后可以通过用户的帐户设置关闭自动续期。\n- 在当前订购期结束前24小时内将收费进行续期。\n- 在有效的订购期内,不允许取消当期的订购。</string>
<string name="privacy_policy">订阅条款</string>
<string name="bug_report_message">We\'re truly sorry, but something is wrong here&#8230;You may be waiting for iCloud sync. Please wait and retry later. Would you mind sending us a report explaining your current state to help us solve this issue?</string>
<string name="longtap_to_duplicate">长按进程可重复。</string>
<string name="change_statistic">更改统计</string>
<string name="compare">比较</string>
<string name="autorenewable_subcription">自动续订订阅</string>
<string name="terms">条件</string>
<string name="stop_notifications_explanation">Poker Analytics尝试估算您的最佳进程时长并在你到达该时长时发送通知。需要约50局。</string>
<string name="_icloud_sync_wasn_t_able_to_be_enabled">不能启动iCloud同步。也许你在iCloud上有旧%@数据。</string>
<string name="icloud_reset_and_retry">清牌后重试</string>
<string name="_icloud_reset_warning">你将重置iCloud上%@的数据,你的本地数据不会更改,但你必需中止所有其它设备上的iCloud同步。确定这么做?</string>
<string name="remove_picture">删除图片</string>
<string name="icloud_is_syncing">同步中</string>
<string name="icloud_update_issue">错误</string>
<string name="icloud_status_syncing_explanation">iCloud正在同步,正将来自设备的数据上载到云端。可能需要一段时间才能为你的其它设备准备好。</string>
<string name="icloud_status_error_explanation">iCloud正确更新遇到困难,iCloud未准备好同步其它设备。</string>
<string name="icloud_status_ok_explanation">iCloud状态正常,已准备好同步其它设备。</string>
<string name="icloud_status">iCloud状态</string>
<string name="icloud_ok_and_ready"></string>
<string name="icloud_migration_failure_error_message">由于数据库出现重要变更,出于安全考虑已在应用上禁用iCloud,你的数据已被移回你的本地设备。请在所有其它设备上禁用iCloud同步。若要重新启动iCloud,必须提前删除iCloud数据。</string>
<string name="icloud_sync_wasn_t_able_to_be_disabled">不能禁用iCloud同步。</string>
<string name="currently_having_chips">当前有%@个筹码</string>
<string name="icloud_timeout">iCloud请求超时。</string>
<string name="vs">对战</string>
<string name="open_privacy_settings">打开隐私设置</string>
<string name="hand_history_keyboard">手牌记录键盘</string>
<string name="net_result_bb_per_100_hands">大盲注/100手</string>
<string name="standard_deviation_bb_per_100_hands">大盲注/100手的标准差</string>
<string name="standard_deviation_per_hour">每小时标准差</string>
<string name="gdpr_email_policy">Poker Analytics是首款离线应用。\n\n您的电子邮箱作为联系方式将在某时可通过手工操作存储。\n\n若您不希望如此,请在下面邮件中告知我们。</string>
<string name="gdpr_policy">Poker Analytics是首款离线应用。\n\n若我们已交换邮件而收集了您的电子邮箱,现在仅可存储您授权我们有时联系您的电子邮箱。\n\n若您要删除我们持有的关于您的数据,请随时通过邮件向我们发送请求。</string>
<string name="gdpr_button_title">我同意</string>
<string name="gdpr">一般数据保护条例</string>
<string name="i_disagree">我不同意</string>
<string name="bankroll_current_value">资金初始值</string>
<string name="bankroll_new_value">资金新值</string>
<string name="bankroll_capture_method">获取方法</string>
<string name="net_result_only">仅净结果</string>
<string name="stack_buy_in">筹码和买入</string>
<string name="bankroll_difference">资金新值</string>
<string name="use_for_this_session">用于该进程</string>
<string name="use_apply_for_bankroll">使用和申请资金</string>
<string name="service_unavailable_at_the_moment_please_retry_later">目前不提供汇率服务。请稍后重试</string>
<string name="if_you_update_the_main_currency_your_existing_bankrolls_rate_should_be_updated_check_their_rate_afterwards_to_ensure_it_was_done_properly">验证将更新您的主要货币和所有您的资金费率。请验证后核对已正确更新所有费率。</string>
<string name="selected_currency">选定货币</string>
<string name="copy_on_duplicate">复制副本</string>
<string name="terms_of_use">使用条款</string>
<string name="v4_7_sharing_options_message">新导出选项!/n-GIF/n-视频</string>
<string name="icloud_was_disabled_due_backup_restoration_alert">为了在iCloud上保存您的数据状态,检测备份还原已导致禁止iCloud同步。在更多&gt;设置屏幕中,设备还原进程一经完成,您就可以重启设备。</string>
<string name="select_the_way_you_d_like_to_capture_your_session_result">选择你要获取进程结果的方式</string>
<string name="change_result_capture_method">更改结果获取方式</string>
<string name="bankroll_kind">类型</string>
<string name="all_xml_">所有 (XML Backup)</string>
<string name="sessions_csv_">进程 (CSV)</string>
<string name="hhe_generating_title">生成中&#8230;</string>
<string name="hhe_generating_message">我们正在创建所有视频图像</string>
<string name="hhe_exporting_title">正在组合&#8230;</string>
<string name="hhe_exporting_message">我们正在将所有图像集合到一个文件中,请稍等,谢谢:)</string>
<string name="follow_us">关注我们</string>
<string name="hhe_generating_error_message">生成期间出错,请重试。</string>
<string name="player_notes">玩家备注</string>
<string name="feed">馈送</string>
<string name="operations_csv_">交易(CSV)</string>
<string name="days_played">已玩日数</string>
<string name="locations_played">游戏位置</string>
<string name="longest_streaks">最长连胜</string>
<string name="calendar">日历</string>
<string name="distribution">分配</string>
<string name="volume">时间量</string>
<string name="last_i_records">最新%i</string>
<string name="all_time">全部时间</string>
<string name="longest_session">最长进程</string>
<string name="minimum_session">最短进程</string>
<string name="a_game_of_chess_not_the_game_of_chess_last_records">最新游戏</string>
<string name="a_game_of_chess_not_the_game_of_chess_number_of_records">游戏数目</string>
<string name="a_game_of_chess_not_the_game_of_chess_do_you_really_to_delete_this_game_">你真要删除此游戏?</string>
<string name="a_game_of_chess_not_the_game_of_chess_record">游戏</string>
<string name="a_game_of_chess_not_the_game_of_chess_records">游戏</string>
<string name="comments">评论</string>
<string name="operation_empty_field_error">检查你的交易有类型和数额</string>
<string name="operation_type_empty_field_error">你需要命名交易类型</string>
<string name="operation_types">交易类型</string>
<string name="operations">交易</string>
<string name="add_an_operation">添加交易</string>
<string name="duplicate_operation_error">相同交易已存在</string>
<string name="duplicate_operation_type_error">同名的交易类型已存在</string>
<string name="new_operation">新交易</string>
<string name="new_operation_type">新交易类型</string>
<string name="bb_ante_option">Big Blind Ante</string>
<string name="show_fullscreen">Show full screen</string>
<!-- Info.plist -->
<string name="photo_library_usage_description">Poker Analytics可让你随意设置玩家照片</string>
<string name="health_share_usage_description">Poker Analytics能访问与结果相关的用户睡眠和运动活动数据</string>
<string name="health_update_usage_description">Poker Analytics不写入任何健康数据</string>
<string name="contacts_usage_description">本应用能自动检索朋友肖像</string>
<string name="location_when_in_use_usage_description">Poker Analytics能访问你的位置,在地图上显示位置报告</string>
<string name="camera_usage_description">摄像头可为玩家拍照</string>
<string name="photo_library_add_usage_description">扑克分析要将该图像保存到照片库中</string>
<string name="face_id_usage_description">Poker Analytics希望访问Face ID以便通过人脸识别解锁本应用</string>
</resources>

@ -6,6 +6,8 @@
<string name="title_stats">Stats</string>
<string name="title_settings">Settings</string>
<!-- Not translated -->
<!-- Stats -->
<string name="hourly_rate">Hourly Rate</string>
<string name="number_of_groups">Number of sessions</string>
@ -23,31 +25,11 @@
<string name="data_deleted" formatted="false">%s deleted</string>
<string name="end_date_not_possible">The end date should be after the start date</string>
<string name="save">Save</string>
<!--
<string name="bankroll">Bankroll</string>
<string name="blinds">Blinds</string>
<string name="small_blind">Small blind</string>
<string name="big_blind">Big blind</string>
<string name="game">Game</string>
<string name="date">Date</string>
<string name="start_date">Start date</string>
<string name="end_date">End date</string>
<string name="location">Location</string>
<string name="session">Session</string>
<string name="tournament_type">Tournament Type</string>
<string name="transaction_type">Transaction Type</string>
<string name="comment">Comment</string>
<string name="name">Name</string>
<string name="live">Live</string>
<string name="currency">Currency</string>
<string name="clear">Clear</string>
<string name="add">Add</string>
<string name="done">Done</string>
-->
<string name="tournament_name">Tournament Name</string>
<string name="tournament_feature">Tournament Feature</string>
<string name="new_entity">New</string>
<!-- Translated -->
@ -734,10 +716,15 @@
<string name="bb_ante_option">Big Blind Ante</string>
<string name="show_fullscreen">Show full screen</string>
<string name="save">Save</string>
<!-- Info.plist -->
<string name="tournament_name">Tournament Name</string>
<string name="tournament_feature">Tournament Feature</string>
<string name="new_entity">New</string>
<string name="photo_library_usage_description">Poker Analytics gives you the ability to set photos to players if you want to</string>
<string name="health_share_usage_description">Poker Analytics can access your sleep and sport activity data to correlate it with your results</string>
<string name="health_update_usage_description">Poker Analytics doesn\'t write any health data</string>
<string name="contacts_usage_description">The app can retrieve your friends portraits automatically</string>
<string name="location_when_in_use_usage_description">Poker Analytics is using your location:\n • in Reports &gt; Location to show your results on a map\n • to provide your favorite game parameters when you start a game at that location</string>
<string name="camera_usage_description">The camera is used to take a photo of a player</string>
<string name="photo_library_add_usage_description">Poker Analytics wants to save this image into your Photos library</string>
<string name="face_id_usage_description">Poker Analytics wants to access Face ID to let you unlock the app with face recognition</string>
</resources>

@ -43,7 +43,7 @@
</style>
<style name="PokerAnalyticsTheme.Toolbar.ExpandedTitleAppearance">
<item name="android:textSize">32sp</item>
<item name="android:textSize">24sp</item>
<item name="android:textColor">@color/white</item>
</style>
@ -102,6 +102,13 @@
<item name="android:ellipsize">end</item>
</style>
<style name="PokerAnalyticsTheme.TextView.RowInfo">
<item name="android:textSize">11sp</item>
<item name="android:textColor">@color/kaki_light</item>
<item name="android:fontFamily">@font/roboto</item>
</style>
<style name="PokerAnalyticsTheme.TextView.RowStatsTitle">
<item name="android:textSize">12sp</item>
<item name="android:textColor">@color/white</item>

Loading…
Cancel
Save