Rename ressources into resources
BIN
resources/icons/France.png
Normal file
|
After Width: | Height: | Size: 637 B |
2
resources/icons/SOURCE
Normal file
@@ -0,0 +1,2 @@
|
||||
http://www.iconarchive.com/category/application-icons.html
|
||||
http://www.oxygen-icons.org/
|
||||
BIN
resources/icons/United Kingdom.png
Normal file
|
After Width: | Height: | Size: 1.7 KiB |
BIN
resources/icons/about.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
resources/icons/about_low.png
Normal file
|
After Width: | Height: | Size: 4.7 KiB |
BIN
resources/icons/charts.png
Normal file
|
After Width: | Height: | Size: 14 KiB |
BIN
resources/icons/charts_low.png
Normal file
|
After Width: | Height: | Size: 5.0 KiB |
BIN
resources/icons/check.png
Normal file
|
After Width: | Height: | Size: 597 B |
BIN
resources/icons/delete.png
Normal file
|
After Width: | Height: | Size: 813 B |
BIN
resources/icons/exit.png
Normal file
|
After Width: | Height: | Size: 11 KiB |
BIN
resources/icons/exit_low.png
Normal file
|
After Width: | Height: | Size: 4.8 KiB |
BIN
resources/icons/export.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
resources/icons/export_low.png
Normal file
|
After Width: | Height: | Size: 6.6 KiB |
BIN
resources/icons/import.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
resources/icons/import_low.png
Normal file
|
After Width: | Height: | Size: 5.9 KiB |
BIN
resources/icons/preferences.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
resources/icons/preferences_low.png
Normal file
|
After Width: | Height: | Size: 6.8 KiB |
BIN
resources/icons/search.png
Normal file
|
After Width: | Height: | Size: 17 KiB |
BIN
resources/icons/search_low.png
Normal file
|
After Width: | Height: | Size: 5.3 KiB |
BIN
resources/icons/switch_user.png
Normal file
|
After Width: | Height: | Size: 9.6 KiB |
BIN
resources/icons/switch_user_low.png
Normal file
|
After Width: | Height: | Size: 4.5 KiB |
BIN
resources/icons/user.png
Normal file
|
After Width: | Height: | Size: 10 KiB |
BIN
resources/icons/user_low.png
Normal file
|
After Width: | Height: | Size: 3.9 KiB |
11
resources/init.sql
Executable file
@@ -0,0 +1,11 @@
|
||||
CREATE TABLE kisscount(db_version VARCHAR(20));
|
||||
CREATE TABLE user (id INTEGER PRIMARY KEY, name VARCHAR(255), password VARCHAR(255));
|
||||
CREATE TABLE account(id INTEGER PRIMARY KEY, user REFERENCES user(id), name VARCHAR(255), number VARCHAR(255), shared CHAR(1), blocked CHAR(1), default_account CHAR(1), virtual CHAR(1), hidden CHAR(1));
|
||||
CREATE TABLE shared_account(account REFERENCES account(id), user REFERENCES user(id));
|
||||
CREATE TABLE account_amount(account REFERENCES account(id), year INTEGER, month INTEGER, amount INTEGER, PRIMARY KEY(account, year, month));
|
||||
CREATE TABLE operation(id INTEGER PRIMARY KEY, parent REFERENCES operation(id), user REFERENCES user(id), account REFERENCES account(id) ON DELETE SET NULL, year INTEGER, month INTEGER, day INTEGER, amount INTEGER, description VARCHAR(255), category REFERENCES category(id) ON DELETE SET NULL, fix_cost CHAR(1), checked CHAR(1), formula VARCHAR(255), transfert REFERENCES operation(id), meta CHAR(1), virtual CHAR(1), tag REFERENCES tag(id));
|
||||
CREATE TABLE category(id INTEGER PRIMARY KEY, user REFERENCES user(id), parent REFERENCES category(id) ON DELETE SET NULL, name VARCHAR(255), backcolor VARCHAR(10), forecolor VARCHAR(10), font VARCHAR(255), fix_cost CHAR(1));
|
||||
CREATE TABLE preference(user REFERENCES user(id), name VARCHAR(255), value VARCHAR(255), PRIMARY KEY(user, name));
|
||||
CREATE TABLE import_pattern(user REFERENCES user(id), description VARCHAR(255), pattern VARCHAR(255), account REFERENCES account(id), category REFERENCES category(id), PRIMARY KEY(user, description));
|
||||
CREATE TABLE tag(id INTEGER PRIMARY KEY, user REFERENCES user(id), name VARCHAR(255));
|
||||
INSERT INTO kisscount ("db_version") VALUES ("4");
|
||||
1003
resources/po/french.po
Normal file
BIN
resources/po/french.qm
Normal file
927
resources/po/kisscount.pot
Normal file
@@ -0,0 +1,927 @@
|
||||
# SOME DESCRIPTIVE TITLE.
|
||||
# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2015-06-20 17:48+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
"Language: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: src/view/StatsPanel.cpp:316
|
||||
msgid " - "
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:1371
|
||||
msgid " ?"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:993 src/view/PreferencesPanel.cpp:1003
|
||||
#: src/view/PreferencesPanel.cpp:1026 src/view/PreferencesPanel.cpp:1168
|
||||
#: src/view/PreferencesPanel.cpp:1190 src/view/PreferencesPanel.cpp:1255
|
||||
#: src/view/PreferencesPanel.cpp:1277 src/view/PreferencesPanel.cpp:1315
|
||||
#: src/view/UsersDialog.cpp:123
|
||||
msgid " already exists"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:335
|
||||
msgid " and "
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SnapshotsDialog.cpp:133 src/view/SnapshotsDialog.cpp:167
|
||||
msgid " does not exist"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ExportPanel.cpp:90 src/view/SearchPanel.cpp:149
|
||||
msgid " entries found"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:360 src/view/ImportPanel.cpp:384
|
||||
#: src/view/ImportPanel.cpp:407
|
||||
msgid " must have a name"
|
||||
msgstr ""
|
||||
|
||||
#: src/model/Database.cpp:99
|
||||
msgid " not found, aborting"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/AccountPanel.cpp:855
|
||||
msgid " operations ?"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SnapshotsDialog.cpp:113
|
||||
msgid " successfully created"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SnapshotsDialog.cpp:146
|
||||
msgid " successfully removed"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:344
|
||||
msgid " will be created, is it ok ?"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:334
|
||||
#, c-format
|
||||
msgid "%d accounts"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:339
|
||||
#, c-format
|
||||
msgid "%d categories"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:342
|
||||
#, c-format
|
||||
msgid "%d tags"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/StatsPanel.cpp:289
|
||||
msgid "0 line"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ExportPanel.cpp:92 src/view/SearchPanel.cpp:151
|
||||
msgid "1 entry found"
|
||||
msgstr ""
|
||||
|
||||
#: src/model/Database.cpp:93
|
||||
msgid "A new database will be created, continue ?"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchBanner.cpp:115 src/view/grid/GridAccount.cpp:74
|
||||
msgid "Account"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:1003 src/view/PreferencesPanel.cpp:1026
|
||||
#: src/view/ImportPanel.cpp:360
|
||||
msgid "Account "
|
||||
msgstr ""
|
||||
|
||||
#: src/controller/KissCount.cpp:380
|
||||
msgid "Account 1"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:993
|
||||
msgid "Account must have a name"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:69 src/view/AccountPanel.cpp:448
|
||||
msgid "Account name"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/AccountPanel.cpp:447
|
||||
msgid "Account number"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/StatsPanel.cpp:288 src/view/PreferencesPanel.cpp:52
|
||||
msgid "Accounts"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/AccountPanel.cpp:1040
|
||||
msgid "Accounts updated until "
|
||||
msgstr ""
|
||||
|
||||
#: src/view/StatsPanel.cpp:266
|
||||
msgid "Amount"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchBanner.cpp:110
|
||||
msgid "Amount from"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchBanner.cpp:111
|
||||
msgid "Amount to"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/AccountPanel.cpp:1045
|
||||
msgid "Any account updated !"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ExportPanel.cpp:130 src/view/ImportPanel.cpp:180
|
||||
msgid "Any engine can process this file !"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SnapshotsDialog.cpp:171
|
||||
msgid "Are you sure want to come back to "
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SnapshotsDialog.cpp:137 src/view/AccountPanel.cpp:850
|
||||
msgid "Are you sure want to delete "
|
||||
msgstr ""
|
||||
|
||||
#: src/view/grid/GridAccount.cpp:865
|
||||
msgid "Are you sure want to delete : \n"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:1371
|
||||
msgid "Are you sure want to delete profil of "
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:455
|
||||
msgid "Are you sure want to integrate these operations ?"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:554
|
||||
msgid "Ascending"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SnapshotsDialog.cpp:43
|
||||
msgid "Back to this snapshot"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:363
|
||||
msgid "Background color"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/AccountPanel.cpp:241
|
||||
msgid "Balance"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:230
|
||||
msgid "Blocked"
|
||||
msgstr ""
|
||||
|
||||
#: src/model/export/CSVExportEngine.cpp:34
|
||||
msgid "CSV files (*.csv)"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PasswordDialog.cpp:50 src/view/GenerateDialog.cpp:50
|
||||
#: src/view/UsersDialog.cpp:50
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/grid/GridAccount.cpp:1263 src/view/grid/GridAccount.cpp:1276
|
||||
msgid "Cannot group these operations"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/grid/GridAccount.cpp:1430 src/view/grid/GridAccount.cpp:1436
|
||||
msgid "Cannot ungroup these operations"
|
||||
msgstr ""
|
||||
|
||||
#: src/model/DatabaseUpdate.cpp:94
|
||||
msgid ""
|
||||
"Cannot update database version 2 to version 3 because some columns needs to "
|
||||
"be deleted."
|
||||
msgstr ""
|
||||
|
||||
#: src/controller/KissCount.cpp:371
|
||||
msgid "Car"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:53
|
||||
msgid "Categories"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchBanner.cpp:112 src/view/grid/GridAccount.cpp:74
|
||||
msgid "Category"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:1168 src/view/PreferencesPanel.cpp:1190
|
||||
#: src/view/ImportPanel.cpp:384
|
||||
msgid "Category "
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:1158
|
||||
msgid "Category must have a name"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:76
|
||||
msgid "Category name"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:71
|
||||
msgid "Change Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:72
|
||||
msgid "Change Password"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchPanel.cpp:53
|
||||
msgid "Change account"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchPanel.cpp:54
|
||||
msgid "Change category"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PasswordDialog.cpp:30
|
||||
msgid "Change password"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchPanel.cpp:55
|
||||
msgid "Change tag"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/AccountPanel.cpp:131
|
||||
msgid "Check"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchBanner.cpp:93
|
||||
msgid "Checked"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:140
|
||||
msgid "Choose a database to open"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchPanel.cpp:198
|
||||
msgid "Choose a new account"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchPanel.cpp:240
|
||||
msgid "Choose a new category"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchPanel.cpp:287
|
||||
msgid "Choose a new tag"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PasswordDialog.cpp:41
|
||||
msgid "Confirm password"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/CostRepartitionBanner.cpp:46
|
||||
msgid "Cost repartition"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SnapshotsDialog.cpp:41
|
||||
msgid "Create a snapshot"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:191 src/view/ImportPanel.cpp:221
|
||||
#: src/view/ImportPanel.cpp:251 src/view/ImportPanel.cpp:297
|
||||
#: src/view/ImportPanel.cpp:308 src/view/ImportPanel.cpp:319
|
||||
#: src/view/ImportPanel.cpp:351 src/view/ImportPanel.cpp:374
|
||||
#: src/view/ImportPanel.cpp:397
|
||||
msgid "Create one"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/grid/GridAccount.cpp:74
|
||||
msgid "Credit"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/AccountPanel.cpp:237
|
||||
msgid "Cur Credit"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/AccountPanel.cpp:238
|
||||
msgid "Cur Debit"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/AccountPanel.cpp:450
|
||||
msgid "Current value"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/grid/GridAccount.cpp:74
|
||||
msgid "Date"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchBanner.cpp:31
|
||||
msgid "Date from"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchBanner.cpp:32
|
||||
msgid "Date to"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/StatsPanel.cpp:280
|
||||
msgid "Days"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/grid/GridAccount.cpp:74
|
||||
msgid "Debit"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:228
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:752
|
||||
msgid "Default account cannot be hidden"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:231 src/view/PreferencesPanel.cpp:366
|
||||
#: src/view/PreferencesPanel.cpp:471 src/view/AccountPanel.cpp:708
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SnapshotsDialog.cpp:42
|
||||
msgid "Delete a snapshot"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:555
|
||||
msgid "Descending"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchBanner.cpp:109 src/view/grid/GridAccount.cpp:74
|
||||
msgid "Description"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchPanel.cpp:324
|
||||
msgid "Enter a new description"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/StatsPanel.cpp:331 src/view/PreferencesPanel.cpp:679
|
||||
#: src/view/PreferencesPanel.cpp:752 src/view/PreferencesPanel.cpp:993
|
||||
#: src/view/PreferencesPanel.cpp:1003 src/view/PreferencesPanel.cpp:1026
|
||||
#: src/view/PreferencesPanel.cpp:1158 src/view/PreferencesPanel.cpp:1168
|
||||
#: src/view/PreferencesPanel.cpp:1190 src/view/PreferencesPanel.cpp:1245
|
||||
#: src/view/PreferencesPanel.cpp:1255 src/view/PreferencesPanel.cpp:1277
|
||||
#: src/view/PreferencesPanel.cpp:1309 src/view/PreferencesPanel.cpp:1315
|
||||
#: src/view/PreferencesPanel.cpp:1357 src/view/ExportPanel.cpp:117
|
||||
#: src/view/ExportPanel.cpp:130 src/view/ExportPanel.cpp:137
|
||||
#: src/view/PasswordDialog.cpp:64 src/view/PasswordDialog.cpp:70
|
||||
#: src/view/SearchBanner.cpp:185 src/view/SearchBanner.cpp:195
|
||||
#: src/view/SearchBanner.cpp:208 src/view/SearchBanner.cpp:217
|
||||
#: src/view/SnapshotsDialog.cpp:117 src/view/SnapshotsDialog.cpp:133
|
||||
#: src/view/SnapshotsDialog.cpp:142 src/view/SnapshotsDialog.cpp:167
|
||||
#: src/view/SnapshotsDialog.cpp:176 src/view/grid/GridAccount.cpp:1263
|
||||
#: src/view/grid/GridAccount.cpp:1276 src/view/grid/GridAccount.cpp:1430
|
||||
#: src/view/grid/GridAccount.cpp:1436 src/view/grid/FormulaDelegate.cpp:59
|
||||
#: src/view/ImportPanel.cpp:180 src/view/ImportPanel.cpp:360
|
||||
#: src/view/ImportPanel.cpp:384 src/view/ImportPanel.cpp:407
|
||||
#: src/view/AccountPanel.cpp:846 src/view/UsersDialog.cpp:93
|
||||
#: src/view/UsersDialog.cpp:123 src/model/Database.cpp:47
|
||||
#: src/model/Database.cpp:55 src/model/Database.cpp:74
|
||||
#: src/model/Database.cpp:99 src/model/Database.cpp:105
|
||||
#: src/model/Database.cpp:111 src/model/Database.cpp:121
|
||||
#: src/model/Database.cpp:140 src/model/Database.cpp:604
|
||||
#: src/model/Database.cpp:780 src/model/Database.cpp:922
|
||||
#: src/model/Database.cpp:1038 src/model/Database.cpp:1881
|
||||
#: src/model/DatabaseUpdate.cpp:31 src/model/DatabaseUpdate.cpp:183
|
||||
msgid "Error"
|
||||
msgstr ""
|
||||
|
||||
#: src/model/Database.cpp:140
|
||||
msgid "Error creating original database"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ExportPanel.cpp:51 src/view/ExportPanel.cpp:73
|
||||
msgid "Export"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ExportPanel.cpp:137
|
||||
msgid "Failed to save operations"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:69
|
||||
msgid "File account"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:76
|
||||
msgid "File category"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:83
|
||||
msgid "File tag"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/AccountPanel.cpp:451
|
||||
msgid "Final value"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller/KissCount.cpp:371 src/view/SearchBanner.cpp:89
|
||||
#: src/view/grid/GridAccount.cpp:378
|
||||
msgid "Fix"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:365
|
||||
msgid "Font"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:364
|
||||
msgid "Foreground color"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/StatsPanel.cpp:73
|
||||
msgid "From"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/GenerateDialog.cpp:37
|
||||
msgid "From "
|
||||
msgstr ""
|
||||
|
||||
#: src/view/GenerateDialog.cpp:34 src/view/AccountPanel.cpp:705
|
||||
msgid "Generate month"
|
||||
msgstr ""
|
||||
|
||||
#: src/model/import/GrisbiImportEngine.cpp:167
|
||||
msgid "Grisbi files (*.gsb)"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller/KissCount.cpp:371
|
||||
msgid "Groceries"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/AccountPanel.cpp:155
|
||||
msgid "Group"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:232
|
||||
msgid "Hidden"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller/KissCount.cpp:371
|
||||
msgid "Hobbies"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:128
|
||||
msgid "Import"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/AccountPanel.cpp:449
|
||||
msgid "Initial value"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:52
|
||||
msgid "Integrate operations"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:69
|
||||
msgid "Internal account"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:76
|
||||
msgid "Internal category"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:83
|
||||
msgid "Internal tag"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchBanner.cpp:195
|
||||
msgid "Invalid amount from"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchBanner.cpp:217
|
||||
msgid "Invalid amount range"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchBanner.cpp:208
|
||||
msgid "Invalid amount to"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchBanner.cpp:185
|
||||
msgid "Invalid date range"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/grid/FormulaDelegate.cpp:59
|
||||
msgid "Invalid formula !"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:1309
|
||||
msgid "Invalid name !"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PasswordDialog.cpp:64
|
||||
msgid "Invalid old password"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/UsersDialog.cpp:93
|
||||
msgid "Invalid password"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/StatsPanel.cpp:331
|
||||
msgid "Invalide date range"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:679
|
||||
msgid "It must be at least one account !"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/AccountPanel.cpp:846
|
||||
msgid "It must be at least one month !"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:73
|
||||
msgid "Kill me"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ExportPanel.cpp:90 src/view/ExportPanel.cpp:92
|
||||
#: src/view/ExportPanel.cpp:95 src/view/ExportPanel.cpp:135
|
||||
#: src/view/SearchPanel.cpp:149 src/view/SearchPanel.cpp:151
|
||||
#: src/view/SearchPanel.cpp:154
|
||||
msgid "KissCount"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ExportPanel.cpp:143
|
||||
msgid "KissCount - Export"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:133
|
||||
msgid "KissCount - Import"
|
||||
msgstr ""
|
||||
|
||||
#: src/model/export/XMLExportEngine.cpp:34
|
||||
msgid "KissCount XML files (*.xml)"
|
||||
msgstr ""
|
||||
|
||||
#: src/model/import/XMLImportEngine.cpp:32
|
||||
msgid "KissCount xml files (*.xml)"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:55
|
||||
msgid "Language"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:1357
|
||||
msgid "Language not changed"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:1354
|
||||
msgid "Language successfully changed, please go to another panel"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/wxUI.cpp:319
|
||||
msgid "Licenced under GNU GPL v3"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:48
|
||||
msgid "Load operations"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/AccountPanel.cpp:127
|
||||
msgid "Mode"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/StatsPanel.cpp:277
|
||||
msgid "Months"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:65 src/view/PreferencesPanel.cpp:226
|
||||
#: src/view/PreferencesPanel.cpp:362 src/view/PreferencesPanel.cpp:470
|
||||
msgid "Name"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:1321
|
||||
msgid "Name changed"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/UsersDialog.cpp:51 src/view/UsersDialog.cpp:114
|
||||
msgid "New User"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PasswordDialog.cpp:37
|
||||
msgid "New password"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/grid/GridAccount.cpp:124
|
||||
msgid "No Tag"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ExportPanel.cpp:95 src/view/SearchPanel.cpp:154
|
||||
msgid "No entry found"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:439
|
||||
msgid "No operation found into this file"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ExportPanel.cpp:117
|
||||
msgid "No operation to save"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchBanner.cpp:91 src/view/CostRepartitionBanner.cpp:106
|
||||
msgid "Non fix"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:695 src/view/PreferencesPanel.cpp:787
|
||||
#: src/view/PreferencesPanel.cpp:834 src/view/SearchPanel.cpp:194
|
||||
#: src/view/SearchPanel.cpp:236 src/view/SearchPanel.cpp:283
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchBanner.cpp:95
|
||||
msgid "Not checked"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:227
|
||||
msgid "Number"
|
||||
msgstr ""
|
||||
|
||||
#: src/model/import/OFXImportEngine.cpp:145
|
||||
msgid "OFX files (*.ofx)"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PasswordDialog.cpp:49 src/view/GenerateDialog.cpp:49
|
||||
#: src/view/SnapshotsDialog.cpp:55 src/view/UsersDialog.cpp:49
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PasswordDialog.cpp:33
|
||||
msgid "Old password"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:56
|
||||
msgid "Operation order"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchBanner.cpp:114 src/view/AccountPanel.cpp:214
|
||||
msgid "Operations"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:512
|
||||
msgid "Operations successfully imported"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ExportPanel.cpp:135
|
||||
msgid "Operations successfuly saved"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller/KissCount.cpp:372
|
||||
msgid "Other"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/UsersDialog.cpp:44
|
||||
msgid "Password "
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PasswordDialog.cpp:76
|
||||
msgid "Password changed"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/wxUI.cpp:319
|
||||
msgid "Personal accounting software"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PasswordDialog.cpp:70
|
||||
msgid "Please retype new password"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:212 src/view/PreferencesPanel.cpp:1362
|
||||
msgid "Preferences"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/wxUI.cpp:324
|
||||
msgid "Quit KissCount ?"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/AccountPanel.cpp:130
|
||||
msgid "Real"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchPanel.cpp:56
|
||||
msgid "Rename"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ExportPanel.cpp:121
|
||||
msgid "Save as"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:56
|
||||
msgid "Save import patterns"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ExportPanel.cpp:38 src/view/SearchPanel.cpp:40
|
||||
#: src/view/SearchPanel.cpp:98 src/view/SearchPanel.cpp:336
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:57
|
||||
msgid "Shared with"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SnapshotsDialog.cpp:32 src/view/AccountPanel.cpp:158
|
||||
msgid "Snapshots"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/GenerateDialog.cpp:215
|
||||
msgid "Some operations date has been updated"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/StatsPanel.cpp:143 src/view/StatsPanel.cpp:316
|
||||
msgid "Statistics"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchBanner.cpp:113 src/view/grid/GridAccount.cpp:74
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:1255 src/view/PreferencesPanel.cpp:1277
|
||||
#: src/view/ImportPanel.cpp:407
|
||||
msgid "Tag "
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:1245
|
||||
msgid "Tag must have a name"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:83
|
||||
msgid "Tag name"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:54
|
||||
msgid "Tags"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/StatsPanel.cpp:78
|
||||
msgid "To"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/AccountPanel.cpp:232 src/view/AccountPanel.cpp:239
|
||||
msgid "Total Credit"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/AccountPanel.cpp:233 src/view/AccountPanel.cpp:240
|
||||
msgid "Total Debit"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/AccountPanel.cpp:156
|
||||
msgid "UnGroup"
|
||||
msgstr ""
|
||||
|
||||
#: src/model/Database.cpp:105 src/model/Database.cpp:111
|
||||
msgid "Unable to Create "
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SnapshotsDialog.cpp:117
|
||||
msgid "Unable to create "
|
||||
msgstr ""
|
||||
|
||||
#: src/model/Database.cpp:121
|
||||
msgid "Unable to open Database"
|
||||
msgstr ""
|
||||
|
||||
#: src/model/Database.cpp:47 src/model/Database.cpp:55
|
||||
#: src/model/Database.cpp:74 src/model/Database.cpp:1881
|
||||
msgid "Unable to open database"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SnapshotsDialog.cpp:142 src/view/SnapshotsDialog.cpp:176
|
||||
msgid "Unable to remove "
|
||||
msgstr ""
|
||||
|
||||
#: src/model/DatabaseUpdate.cpp:183
|
||||
msgid "Unable to upgrade Database"
|
||||
msgstr ""
|
||||
|
||||
#: src/controller/KissCount.cpp:372
|
||||
msgid "Unexpected"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SearchBanner.cpp:69 src/view/SearchBanner.cpp:79
|
||||
#: src/view/SearchBanner.cpp:100 src/view/AccountPanel.cpp:599
|
||||
#: src/model/User.cpp:72 src/model/User.cpp:90 src/model/User.cpp:178
|
||||
#: src/model/User.cpp:238
|
||||
msgid "Unknown"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:33
|
||||
msgid "Unresolved accounts"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:34
|
||||
msgid "Unresolved categories"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/ImportPanel.cpp:35
|
||||
msgid "Unresolved tags"
|
||||
msgstr ""
|
||||
|
||||
#: src/model/Database.cpp:604 src/model/Database.cpp:780
|
||||
#: src/model/Database.cpp:922 src/model/Database.cpp:1038
|
||||
msgid "Update failed !\n"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/AccountPanel.cpp:157
|
||||
msgid "Update next months"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:51
|
||||
msgid "User"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:1315 src/view/UsersDialog.cpp:40
|
||||
#: src/view/UsersDialog.cpp:123
|
||||
msgid "User "
|
||||
msgstr ""
|
||||
|
||||
#: src/view/UsersDialog.cpp:35
|
||||
msgid "Users"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:229 src/view/AccountPanel.cpp:129
|
||||
msgid "Virtual"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/GenerateDialog.cpp:215 src/view/grid/GridAccount.cpp:1127
|
||||
msgid "Warning"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/SnapshotsDialog.cpp:193 src/view/SnapshotsDialog.cpp:203
|
||||
msgid "Welcome back to "
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:700
|
||||
msgid "Wich account will replace this one ?"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:793
|
||||
msgid "Wich category will replace this one ?"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/PreferencesPanel.cpp:840
|
||||
msgid "Wich tag will replace this one ?"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/grid/GridAccount.cpp:1127
|
||||
msgid "You made a debit on a blocked account"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/wxUI.cpp:167
|
||||
msgid "april"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/wxUI.cpp:171
|
||||
msgid "august"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/wxUI.cpp:175
|
||||
msgid "december"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/wxUI.cpp:165
|
||||
msgid "february"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/wxUI.cpp:164
|
||||
msgid "january"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/wxUI.cpp:170
|
||||
msgid "july"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/wxUI.cpp:169
|
||||
msgid "june"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/wxUI.cpp:166
|
||||
msgid "march"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/wxUI.cpp:168
|
||||
msgid "may"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/wxUI.cpp:174
|
||||
msgid "november"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/wxUI.cpp:173
|
||||
msgid "october"
|
||||
msgstr ""
|
||||
|
||||
#: src/view/wxUI.cpp:172
|
||||
msgid "september"
|
||||
msgstr ""
|
||||