Commit d6db27c1 authored by William Goszal's avatar William Goszal 🚴

Tambah translation buat address ( name, full address, helptext ) dan wa callcenter

parent 7e1d2203
...@@ -90,7 +90,9 @@ ...@@ -90,7 +90,9 @@
"label": "Label", "label": "Label",
"selectaddress": "SELECT", "selectaddress": "SELECT",
"detail": "Details", "detail": "Details",
"address_name":"Name",
"address_fulladdress":"Full address", "address_fulladdress":"Full address",
"address_fulladdress_helptext": "Please fill your complete address to help our courier deliver our product to your doorstep",
"Transferbalance": "TRANSFER BALANCE", "Transferbalance": "TRANSFER BALANCE",
"Transactionhistory": "TRANSACTION HISTORY", "Transactionhistory": "TRANSACTION HISTORY",
"Renewal": "RENEWAL", "Renewal": "RENEWAL",
...@@ -230,5 +232,7 @@ ...@@ -230,5 +232,7 @@
"alertLabelAddress": "Label field is required", "alertLabelAddress": "Label field is required",
"alertDetailAddress": "Detail field is required", "alertDetailAddress": "Detail field is required",
"alertVoucher":"Voucher cannot be used with point", "alertVoucher":"Voucher cannot be used with point",
"alertemailblank":"Email cannot be empty" "alertemailblank":"Email cannot be empty",
"waCallCenter":"Hello, I have a problem with the transaction number #"
} }
\ No newline at end of file
...@@ -90,7 +90,9 @@ ...@@ -90,7 +90,9 @@
"label": "Label", "label": "Label",
"selectaddress": "PILIH", "selectaddress": "PILIH",
"detail": "Detail", "detail": "Detail",
"address_name":"Nama",
"address_fulladdress":"Alamat lengkap", "address_fulladdress":"Alamat lengkap",
"address_fulladdress_helptext": "Mohon masukkan alamat dan patokan yang mudah ditemukan oleh kurir kami",
"Transferbalance": "TRANSFER SALDO", "Transferbalance": "TRANSFER SALDO",
"Transactionhistory": "RIWAYAT TRANSAKSI", "Transactionhistory": "RIWAYAT TRANSAKSI",
"Renewal": "RENEWAL", "Renewal": "RENEWAL",
...@@ -230,5 +232,7 @@ ...@@ -230,5 +232,7 @@
"alertLabelAddress": "Nama alamat harus diisi!", "alertLabelAddress": "Nama alamat harus diisi!",
"alertDetailAddress": "Detail alamat harus diisi!", "alertDetailAddress": "Detail alamat harus diisi!",
"alertVoucher":"Voucher tidak bisa digunakan dengan point", "alertVoucher":"Voucher tidak bisa digunakan dengan point",
"alertemailblank":"Email tidak boleh kosong" "alertemailblank":"Email tidak boleh kosong",
"waCallCenter":"Halo, saya ada masalah dengan nomor transaksi #"
} }
\ No newline at end of file
...@@ -307,7 +307,7 @@ class AddreesDetail extends React.Component { ...@@ -307,7 +307,7 @@ class AddreesDetail extends React.Component {
</View> </View>
</View> </View>
<View style={styles.field_name_addrees}> <View style={styles.field_name_addrees}>
<Text style={{ fontFamily: 'Gotham-Black', color: "#ccb46c", textAlign: 'center', fontSize: 18 }}>{i18n.t('label')}</Text> <Text style={{ fontFamily: 'Gotham-Black', color: "#ccb46c", textAlign: 'center', fontSize: 18 }}>{i18n.t('address_name')}</Text>
<TextInput style={{ color: 'grey', fontFamily: 'Gotham-Black', height: 40, borderWidth: 1, padding: 5, flex: 1, margin: 10, borderRadius: 10, borderColor: 'grey', textAlign: 'center' }} <TextInput style={{ color: 'grey', fontFamily: 'Gotham-Black', height: 40, borderWidth: 1, padding: 5, flex: 1, margin: 10, borderRadius: 10, borderColor: 'grey', textAlign: 'center' }}
onChangeText={(name) => this.setState({ name })} onChangeText={(name) => this.setState({ name })}
caretHidden={this.state.caretHidden} caretHidden={this.state.caretHidden}
...@@ -323,6 +323,8 @@ class AddreesDetail extends React.Component { ...@@ -323,6 +323,8 @@ class AddreesDetail extends React.Component {
multiline={true} multiline={true}
caretHidden={this.state.caretHidden} caretHidden={this.state.caretHidden}
onFocus={() => this.setState({ caretHidden: false })} /> onFocus={() => this.setState({ caretHidden: false })} />
<Text style={{ color: '#666666', textAlign: 'center', fontSize: 14, paddingBottom:15 }}>{i18n.t('address_fulladdress_helptext')}</Text>
</View> </View>
<View style={{ margin: 50, justifyContent: 'center' }}> <View style={{ margin: 50, justifyContent: 'center' }}>
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment