mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Experimental rebuild.
This commit is contained in:
parent
1f2c0f634b
commit
1bd87bfb88
@ -102,6 +102,7 @@ Vue.component('date-picker', DatePicker)
|
||||
export default {
|
||||
name: "Calendar",
|
||||
created() {
|
||||
console.log('Now in calendar created');
|
||||
this.ready = true;
|
||||
this.locale = localStorage.locale ?? 'en-US';
|
||||
},
|
||||
@ -128,9 +129,9 @@ export default {
|
||||
],
|
||||
),
|
||||
resetDate: function () {
|
||||
//console.log('Reset date to');
|
||||
//console.log(this.defaultStart);
|
||||
//console.log(this.defaultEnd);
|
||||
console.log('Reset date to');
|
||||
console.log(this.defaultStart);
|
||||
console.log(this.defaultEnd);
|
||||
this.range.start = this.defaultStart;
|
||||
this.range.end = this.defaultEnd;
|
||||
this.setStart(this.defaultStart);
|
||||
@ -511,7 +512,7 @@ export default {
|
||||
},
|
||||
generatePeriods: function () {
|
||||
this.periods = [];
|
||||
//console.log('The view range is "' + this.viewRange + '".');
|
||||
console.log('The view range is "' + this.viewRange + '".');
|
||||
switch (this.viewRange) {
|
||||
case '1D':
|
||||
this.generateDaily();
|
||||
|
2
frontend/src/components/store/index.js
vendored
2
frontend/src/components/store/index.js
vendored
@ -66,6 +66,7 @@ export default new Vuex.Store(
|
||||
state.currencyPreference = payload.payload;
|
||||
},
|
||||
initialiseStore(state) {
|
||||
console.log('Now in initialiseStore()')
|
||||
// if locale in local storage:
|
||||
if (localStorage.locale) {
|
||||
state.locale = localStorage.locale;
|
||||
@ -97,6 +98,7 @@ export default new Vuex.Store(
|
||||
actions: {
|
||||
|
||||
updateCurrencyPreference(context) {
|
||||
console.log('Now in updateCurrencyPreference');
|
||||
if (localStorage.currencyPreference) {
|
||||
context.commit('setCurrencyPreference', {payload: JSON.parse(localStorage.currencyPreference)});
|
||||
return;
|
||||
|
@ -61,7 +61,7 @@ const getters = {
|
||||
// actions
|
||||
const actions = {
|
||||
initialiseStore(context) {
|
||||
// console.log('initialiseStore');
|
||||
console.log('initialiseStore for dashboard.');
|
||||
|
||||
// restore from local storage:
|
||||
context.dispatch('restoreViewRange');
|
||||
|
@ -138,8 +138,8 @@
|
||||
"account_type_mortgage": "Hypothek",
|
||||
"save_transactions_by_moving_js": "Keine Buchungen|Speichern Sie diese Buchung, indem Sie sie auf ein anderes Konto verschieben. |Speichern Sie diese Buchungen, indem Sie sie auf ein anderes Konto verschieben.",
|
||||
"none_in_select_list": "(Keine)",
|
||||
"transaction_expand_split": "Expand split",
|
||||
"transaction_collapse_split": "Collapse split"
|
||||
"transaction_expand_split": "Aufteilung erweitern",
|
||||
"transaction_collapse_split": "Aufteilung reduzieren"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Sparschwein",
|
||||
|
@ -138,8 +138,8 @@
|
||||
"account_type_mortgage": "Pr\u00eat immobilier",
|
||||
"save_transactions_by_moving_js": "Aucune op\u00e9ration|Conserver cette op\u00e9ration en la d\u00e9pla\u00e7ant vers un autre compte. |Conserver ces op\u00e9rations en les d\u00e9pla\u00e7ant vers un autre compte.",
|
||||
"none_in_select_list": "(aucun)",
|
||||
"transaction_expand_split": "Expand split",
|
||||
"transaction_collapse_split": "Collapse split"
|
||||
"transaction_expand_split": "D\u00e9velopper la ventilation",
|
||||
"transaction_collapse_split": "R\u00e9duire la ventilation"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Tirelire",
|
||||
|
@ -138,8 +138,8 @@
|
||||
"account_type_mortgage": "Hipoteka",
|
||||
"save_transactions_by_moving_js": "Brak transakcji|Zapisz t\u0119 transakcj\u0119, przenosz\u0105c j\u0105 na inne konto.|Zapisz te transakcje przenosz\u0105c je na inne konto.",
|
||||
"none_in_select_list": "(\u017cadne)",
|
||||
"transaction_expand_split": "Expand split",
|
||||
"transaction_collapse_split": "Collapse split"
|
||||
"transaction_expand_split": "Rozwi\u0144 podzia\u0142",
|
||||
"transaction_collapse_split": "Zwi\u0144 podzia\u0142"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Skarbonka",
|
||||
|
@ -138,8 +138,8 @@
|
||||
"account_type_mortgage": "Hipoteca",
|
||||
"save_transactions_by_moving_js": "Nenhuma transa\u00e7\u00e3o.|Salve esta transa\u00e7\u00e3o movendo-a para outra conta.|Salve essas transa\u00e7\u00f5es movendo-as para outra conta.",
|
||||
"none_in_select_list": "(nenhum)",
|
||||
"transaction_expand_split": "Expand split",
|
||||
"transaction_collapse_split": "Collapse split"
|
||||
"transaction_expand_split": "Exibir divis\u00e3o",
|
||||
"transaction_collapse_split": "Esconder divis\u00e3o"
|
||||
},
|
||||
"list": {
|
||||
"piggy_bank": "Cofrinho",
|
||||
|
1
frontend/src/pages/dashboard.js
vendored
1
frontend/src/pages/dashboard.js
vendored
@ -85,6 +85,7 @@ new Vue({
|
||||
this.$store.dispatch('dashboard/index/initialiseStore');
|
||||
},
|
||||
});
|
||||
|
||||
new Vue({
|
||||
i18n,
|
||||
store,
|
||||
|
@ -6499,9 +6499,9 @@ vue-hot-reload-api@^2.3.0:
|
||||
integrity sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==
|
||||
|
||||
vue-i18n@^8.24.2:
|
||||
version "8.24.4"
|
||||
resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-8.24.4.tgz#b158614c1df7db183d9cadddbb73e1d540269492"
|
||||
integrity sha512-RZE94WUAGxEiBAANxQ0pptbRwDkNKNSXl3fnJslpFOxVMF6UkUtMDSuYGuW2blDrVgweIXVpethOVkYoNNT9xw==
|
||||
version "8.24.5"
|
||||
resolved "https://registry.yarnpkg.com/vue-i18n/-/vue-i18n-8.24.5.tgz#7127a666d5be2199be69be39e439a419a90ff931"
|
||||
integrity sha512-p8W5xOmniuZ8fj76VXe0vBL3bRWVU87jHuC/v8VwmhKVH2iMQsKnheB1U+umxDBqC/5g9K+NwzokepcLxnBAVQ==
|
||||
|
||||
vue-loader@^15.9.5:
|
||||
version "15.9.7"
|
||||
|
2
public/v2/js/accounts/create.js
vendored
2
public/v2/js/accounts/create.js
vendored
File diff suppressed because one or more lines are too long
2
public/v2/js/accounts/delete.js
vendored
2
public/v2/js/accounts/delete.js
vendored
File diff suppressed because one or more lines are too long
2
public/v2/js/accounts/index.js
vendored
2
public/v2/js/accounts/index.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
public/v2/js/accounts/show.js
vendored
2
public/v2/js/accounts/show.js
vendored
File diff suppressed because one or more lines are too long
2
public/v2/js/budgets/index.js
vendored
2
public/v2/js/budgets/index.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
public/v2/js/dashboard.js
vendored
2
public/v2/js/dashboard.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
public/v2/js/transactions/create.js
vendored
2
public/v2/js/transactions/create.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
public/v2/js/transactions/edit.js
vendored
2
public/v2/js/transactions/edit.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
public/v2/js/transactions/index.js
vendored
2
public/v2/js/transactions/index.js
vendored
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
2
public/v2/js/vendor.js
vendored
2
public/v2/js/vendor.js
vendored
File diff suppressed because one or more lines are too long
@ -96,7 +96,7 @@
|
||||
*/
|
||||
|
||||
/*!
|
||||
* vue-i18n v8.24.4
|
||||
* vue-i18n v8.24.5
|
||||
* (c) 2021 kazuya kawaguchi
|
||||
* Released under the MIT License.
|
||||
*/
|
||||
|
File diff suppressed because one or more lines are too long
@ -1691,8 +1691,8 @@ return [
|
||||
'store_as_new' => 'Als neue Buchung speichern statt zu aktualisieren.',
|
||||
'reset_after' => 'Formular nach der Übermittlung zurücksetzen',
|
||||
'errors_submission' => 'Ihre Übermittlung ist fehlgeschlagen. Bitte überprüfen Sie die Fehler.',
|
||||
'transaction_expand_split' => 'Expand split',
|
||||
'transaction_collapse_split' => 'Collapse split',
|
||||
'transaction_expand_split' => 'Aufteilung erweitern',
|
||||
'transaction_collapse_split' => 'Aufteilung reduzieren',
|
||||
|
||||
// object groups
|
||||
'default_group_title_name' => '(ohne Gruppierung)',
|
||||
|
@ -1691,8 +1691,8 @@ return [
|
||||
'store_as_new' => 'Enregistrer comme une nouvelle opération au lieu de mettre à jour.',
|
||||
'reset_after' => 'Réinitialiser le formulaire après soumission',
|
||||
'errors_submission' => 'Certaines informations ne sont pas correctes dans votre formulaire. Veuillez vérifier les erreurs.',
|
||||
'transaction_expand_split' => 'Expand split',
|
||||
'transaction_collapse_split' => 'Collapse split',
|
||||
'transaction_expand_split' => 'Développer la ventilation',
|
||||
'transaction_collapse_split' => 'Réduire la ventilation',
|
||||
|
||||
// object groups
|
||||
'default_group_title_name' => '(Sans groupement)',
|
||||
|
@ -28,20 +28,20 @@ return [
|
||||
'404_send_error' => 'Jika anda diarahkan ke halaman ini secara otomatis, saya mohon maaf. Kesalahan ini sudah dicatat pada file log dan saya sangat berterima kasih jika anda mengirimkan kesalahan ini kepada saya.',
|
||||
'404_github_link' => 'Jika anda yakin halaman ini seharusnya ada, silakan buat tiket isu pada <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">GitHub</a></strong>.',
|
||||
'whoops' => 'Whoops',
|
||||
'fatal_error' => 'There was a fatal error. Please check the log files in "storage/logs" or use "docker logs -f [container]" to see what\'s going on.',
|
||||
'fatal_error' => 'Ada kesalahan fatal. Silakan cek berkas log di "storage/logs" atau gunakan "docker logs -f [container]" untuk melihat apa yang terjadi.',
|
||||
'maintenance_mode' => 'Firefly III sedang dalam mode pemeliharaan.',
|
||||
'be_right_back' => 'Segera kembali!',
|
||||
'check_back' => 'Firefly III is down for some necessary maintenance. Please check back in a second.',
|
||||
'error_occurred' => 'Whoops! An error occurred.',
|
||||
'error_not_recoverable' => 'Unfortunately, this error was not recoverable :(. Firefly III broke. The error is:',
|
||||
'error' => 'Error',
|
||||
'error_location' => 'This error occured in file <span style="font-family: monospace;">:file</span> on line :line with code :code.',
|
||||
'stacktrace' => 'Stack trace',
|
||||
'check_back' => 'Firefly III tidak dapat diakses untuk pemeliharaan. Silakan cek kembali beberapa saat lagi.',
|
||||
'error_occurred' => 'Ups! Terjadi kesalahan.',
|
||||
'error_not_recoverable' => 'Sayangnya, kesalahan ini tidak dapat diperbaiki :(. Firefly III mengalami kerusakan. Kesalahan yang terjadi adalah:',
|
||||
'error' => 'Kesalahan',
|
||||
'error_location' => 'Kesalahan ini terjadi pada file "<span style="font-family: monospace;">:file</span>" pada baris :line dengan kode :code.',
|
||||
'stacktrace' => 'Tumpukan jejak',
|
||||
'more_info' => 'Informasi lebih lanjut',
|
||||
'collect_info' => 'Please collect more information in the <code>storage/logs</code> directory where you will find log files. If you\'re running Docker, use <code>docker logs -f [container]</code>.',
|
||||
'collect_info_more' => 'You can read more about collecting error information in <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">the FAQ</a>.',
|
||||
'collect_info' => 'Silakan ambil informasi lebih lanjut di direktori<code>storage/logs</code> di mana Anda dapat menemukan file log. Jika Anda menggunakan Docker, gunakan <code>docker logs -f [container]</code>.',
|
||||
'collect_info_more' => 'Anda dapat membaca lebih lanjut dalam mengumpulkan informasi kesalahan di <a href="https://docs.firefly-iii.org/faq/other#how-do-i-enable-debug-mode">Pertanyaan yang sering diajukan</a>.',
|
||||
'github_help' => 'Dapatkan bantuan di GitHub',
|
||||
'github_instructions' => 'You\'re more than welcome to open a new issue <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">on GitHub</a></strong>.',
|
||||
'github_instructions' => 'Anda sangat diperbolehkan untuk membuka isu baru <strong><a href="https://github.com/firefly-iii/firefly-iii/issues">di GitHub</a></strong>.',
|
||||
'use_search' => 'Gunakan pencarian!',
|
||||
'include_info' => 'Include the information <a href=":link">from this debug page</a>.',
|
||||
'tell_more' => 'Tell us more than "it says Whoops!"',
|
||||
|
@ -1691,8 +1691,8 @@ return [
|
||||
'store_as_new' => 'Store as a new transaction instead of updating.',
|
||||
'reset_after' => 'Reset form after submission',
|
||||
'errors_submission' => 'There was something wrong with your submission. Please check out the errors.',
|
||||
'transaction_expand_split' => 'Expand split',
|
||||
'transaction_collapse_split' => 'Collapse split',
|
||||
'transaction_expand_split' => 'Kembangkan pemisahan',
|
||||
'transaction_collapse_split' => 'Kempiskan pemisahan',
|
||||
|
||||
// object groups
|
||||
'default_group_title_name' => '(ungrouped)',
|
||||
|
@ -37,12 +37,12 @@ return [
|
||||
'linked_to_rules' => 'Aturan yang relevan',
|
||||
'active' => 'Aktif?',
|
||||
'percentage' => 'pct.',
|
||||
'recurring_transaction' => 'Recurring transaction',
|
||||
'next_due' => 'Next due',
|
||||
'recurring_transaction' => 'Transaksi berulang',
|
||||
'next_due' => 'Jatuh tempo selanjutnya',
|
||||
'transaction_type' => 'Type',
|
||||
'lastActivity' => 'Aktifitas terakhir',
|
||||
'balanceDiff' => 'Perbedaan saldo',
|
||||
'other_meta_data' => 'Other meta data',
|
||||
'other_meta_data' => 'Meta data lain',
|
||||
'account_type' => 'Jenis akun',
|
||||
'created_at' => 'Dibuat di',
|
||||
'account' => 'Akun',
|
||||
|
@ -1691,8 +1691,8 @@ return [
|
||||
'store_as_new' => 'Zapisz jako nową zamiast aktualizować.',
|
||||
'reset_after' => 'Wyczyść formularz po zapisaniu',
|
||||
'errors_submission' => 'Coś poszło nie tak w czasie zapisu. Proszę sprawdź błędy.',
|
||||
'transaction_expand_split' => 'Expand split',
|
||||
'transaction_collapse_split' => 'Collapse split',
|
||||
'transaction_expand_split' => 'Rozwiń podział',
|
||||
'transaction_collapse_split' => 'Zwiń podział',
|
||||
|
||||
// object groups
|
||||
'default_group_title_name' => '(bez grupy)',
|
||||
|
@ -1691,8 +1691,8 @@ return [
|
||||
'store_as_new' => 'Armazene como uma nova transação em vez de atualizar.',
|
||||
'reset_after' => 'Resetar o formulário após o envio',
|
||||
'errors_submission' => 'Há algo de errado com o seu envio. Por favor, verifique os erros abaixo.',
|
||||
'transaction_expand_split' => 'Expand split',
|
||||
'transaction_collapse_split' => 'Collapse split',
|
||||
'transaction_expand_split' => 'Exibir divisão',
|
||||
'transaction_collapse_split' => 'Esconder divisão',
|
||||
|
||||
// object groups
|
||||
'default_group_title_name' => '(não agrupado)',
|
||||
|
Loading…
Reference in New Issue
Block a user