diff --git a/app/Console/Commands/MobileLocalization.php b/app/Console/Commands/MobileLocalization.php index 0277fb75adce..10ba7ae82d10 100644 --- a/app/Console/Commands/MobileLocalization.php +++ b/app/Console/Commands/MobileLocalization.php @@ -103,8 +103,9 @@ class MobileLocalization extends Command $data = substr($data, $start, $end - $start - 5); $data = str_replace("\n", '', $data); - $data = str_replace('"', "\'", $data); + $data = str_replace("\'", "\#", $data); $data = str_replace("'", '"', $data); + $data = str_replace("\#", "'", $data); return json_decode('{'.rtrim($data, ',').'}'); } diff --git a/lang/en/texts.php b/lang/en/texts.php index 14402b9df12a..de3bb6f468d2 100644 --- a/lang/en/texts.php +++ b/lang/en/texts.php @@ -4779,6 +4779,63 @@ $LANG = array( 'bulk_action' => 'Bulk Action', 'phone_validation_error' => 'This mobile/cell phone number is not valid, please enter in E.164 format', 'transaction' => 'Transaction', + 'disable_2fa' => 'Disable 2FA', + 'change_number' => 'Change Number', + 'resend_code' => 'Resend Code', + 'base_type' => 'Base Type', + 'category_type' => 'Category Type', + 'bank_transaction' => 'Transaction', + 'bulk_print' => 'Print PDF', + 'vendor_postal_code' => 'Vendor Postal Code', + 'preview_location' => 'Preview Location', + 'bottom' => 'Bottom', + 'side' => 'Side', + 'pdf_preview' => 'PDF Preview', + 'long_press_to_select' => 'Long Press to Select', + 'purchase_order_item' => 'Purchase Order Item', + 'would_you_rate_the_app' => 'Would you like to rate the app?', + 'include_deleted' => 'Include Deleted', + 'include_deleted_help' => 'Include deleted records in reports', + 'due_on' => 'Due On', + 'browser_pdf_viewer' => 'Use Browser PDF Viewer', + 'browser_pdf_viewer_help' => 'Warning: Prevents interacting with app over the PDF', + 'converted_transactions' => 'Successfully converted transactions', + 'default_category' => 'Default Category', + 'connect_accounts' => 'Connect Accounts', + 'manage_rules' => 'Manage Rules', + 'search_category' => 'Search 1 Category', + 'search_categories' => 'Search :count Categories', + 'min_amount' => 'Min Amount', + 'max_amount' => 'Max Amount', + 'converted_transaction' => 'Successfully converted transaction', + 'convert_to_payment' => 'Convert to Payment', + 'deposit' => 'Deposit', + 'withdrawal' => 'Withdrawal', + 'deposits' => 'Deposits', + 'withdrawals' => 'Withdrawals', + 'matched' => 'Matched', + 'unmatched' => 'Unmatched', + 'create_credit' => 'Create Credit', + 'transactions' => 'Transactions', + 'new_transaction' => 'New Transaction', + 'edit_transaction' => 'Edit Transaction', + 'created_transaction' => 'Successfully created transaction', + 'updated_transaction' => 'Successfully updated transaction', + 'archived_transaction' => 'Successfully archived transaction', + 'deleted_transaction' => 'Successfully deleted transaction', + 'removed_transaction' => 'Successfully removed transaction', + 'restored_transaction' => 'Successfully restored transaction', + 'search_transaction' => 'Search Transaction', + 'search_transactions' => 'Search :count Transactions', + 'deleted_bank_account' => 'Successfully deleted bank account', + 'removed_bank_account' => 'Successfully removed bank account', + 'restored_bank_account' => 'Successfully restored bank account', + 'search_bank_account' => 'Search Bank Account', + 'search_bank_accounts' => 'Search :count Bank Accounts', + 'code_was_sent_to' => 'A code has been sent via SMS to :number', + 'verify_phone_number_2fa_help' => 'Please verify your phone number for 2FA backup', + 'enable_applying_payments_later' => 'Enable Applying Payments Later', + ); return $LANG;