diff --git a/CMakeLists.txt b/CMakeLists.txt
index ba7572a977..e3221a11a2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -45,7 +45,6 @@ include (GncAddTest)
include (MakeDistFiles)
include (GNUInstallDirs)
include (TestBigEndian)
-include (CheckSymbolExists)
# ############################################################
# These options are settable from the CMake command line. For example, to disable
@@ -324,13 +323,6 @@ find_guile_dirs()
if (WITH_AQBANKING)
pkg_check_modules (GWENHYWFAR REQUIRED IMPORTED_TARGET gwenhywfar>=4.9.99)
pkg_check_modules (AQBANKING REQUIRED IMPORTED_TARGET aqbanking>=5.3.4)
- set(CMAKE_REQUIRED_INCLUDES "${AQBANKING_INCLUDE_DIRS}"
- "${GWENHYWFAR_INCLUDE_DIRS}")
- set(CMAKE_REQUIRED_LIBRARIES "-laqbanking")
- check_symbol_exists("AB_Banking_RuntimeConfig_SetCharValue"
- "aqbanking/banking.h" AQB_HAS_RUNTIME_CONFIG)
- set(CMAKE_REQUIRED_INCLUDES)
- set(CMAKE_REQUIRED_LIBRARIES)
if(WITH_GNUCASH)
pkg_check_modules (GWEN_GTK3 gwengui-gtk3)
if(GWEN_GTK3_FOUND AND GWEN_GTK3_VERSION VERSION_GREATER "4.20.0")
@@ -557,7 +549,7 @@ endif()
set(BUILD_SHARED_LIBS ON)
# Most libraries are installed to lib/gnucash, so set that as the default.
-# For the handful that are installed to lib, we override the properies below
+# For the handful that are installed to lib, we override the properties below
# (after the targets have been read in).
diff --git a/HACKING b/HACKING
index 6c00093e91..6cfa80f1ac 100644
--- a/HACKING
+++ b/HACKING
@@ -129,9 +129,9 @@ or unit tests with Electric Fence.
It should probably be relatively straightforward to add this as all it
needs is to link with libefence.so (-lefence).
-Fedora 27 ships an ElectricFence package containing that libary and also
-an exectuable 'ef' to run an arbitrary program with Electric Fence
-guarding enabled. I have given it a quick spin on gnucash but it immediatly
+Fedora 27 ships an ElectricFence package containing that library and also
+an executable 'ef' to run an arbitrary program with Electric Fence
+guarding enabled. I have given it a quick spin on gnucash but it immediately
crashes. I haven't investigated whether this is because I should first have
linked gnucash with -lefence or because a real problem in GnuCash code.
diff --git a/README.dependencies b/README.dependencies
index e13aa2818f..94ceb234a1 100644
--- a/README.dependencies
+++ b/README.dependencies
@@ -68,7 +68,7 @@ Libraries/Deps
libxml2 2.5.10
gettext 0.19.6
libxslt, including xsltproc
- ICU International Compnents for
+ ICU International Components for
Unicode
boost 1.50.0 locale and regex libs must be
built with ICU support.
diff --git a/bindings/python/example_scripts/account_analysis.py b/bindings/python/example_scripts/account_analysis.py
index bbe6532f71..fe51e8d7b6 100644
--- a/bindings/python/example_scripts/account_analysis.py
+++ b/bindings/python/example_scripts/account_analysis.py
@@ -83,7 +83,7 @@ def gnc_numeric_to_python_Decimal(numeric):
copy = GncNumeric(numeric.num(), numeric.denom())
result = copy.to_decimal(None)
if not result:
- raise Exception("gnc numeric value %s can't be converted to deciaml" %
+ raise Exception("gnc numeric value %s can't be converted to decimal" %
copy.to_string() )
digit_tuple = tuple( int(char)
for char in str(copy.num())
diff --git a/bindings/python/example_scripts/new_book_with_opening_balances.py b/bindings/python/example_scripts/new_book_with_opening_balances.py
index 8e21440a05..7c7ee4c45e 100644
--- a/bindings/python/example_scripts/new_book_with_opening_balances.py
+++ b/bindings/python/example_scripts/new_book_with_opening_balances.py
@@ -42,7 +42,7 @@ from datetime import date
# This script takes a gnucash url
# and creates a new file/db at a second url that has the same
-# account tree and an equivilent opening balance on all the simple balance
+# account tree and an equivalent opening balance on all the simple balance
# sheet accounts (not for income and expense accounts)
#
# This is done a per currency basis, one opening balance account for each
@@ -122,7 +122,7 @@ ACCOUNT_TYPES_TO_OPEN = ACCOUNT_TYPES_TO_OPEN.difference( set((
)) )
# this script isn't capable of properly setting up the transactions for
-# ACCT_TYPE_TRADING, you'll have to create opening balances for them mannually;
+# ACCT_TYPE_TRADING, you'll have to create opening balances for them manually;
# so, they are not included in the set of accounts used for opening balances
ACCOUNT_TYPES_TO_OPEN.remove(ACCT_TYPE_TRADING)
diff --git a/bindings/python/example_scripts/rest-api/gnucash_rest.py b/bindings/python/example_scripts/rest-api/gnucash_rest.py
index d87a15679b..51c75eb096 100644
--- a/bindings/python/example_scripts/rest-api/gnucash_rest.py
+++ b/bindings/python/example_scripts/rest-api/gnucash_rest.py
@@ -1141,7 +1141,7 @@ def payBill(book, id, posted_account_guid, transfer_account_guid, payment_date,
xfer_acc = account_guid.AccountLookup(session.book)
- # We pay the negitive total as the bill as this seemed to cause issues
+ # We pay the negative total as the bill as this seemed to cause issues
# with the split not being set correctly and not being marked as paid
bill.ApplyPayment(None, xfer_acc, bill.GetTotal().neg(), GncNumeric(0),
datetime.datetime.strptime(payment_date, '%Y-%m-%d'), memo, num)
diff --git a/bindings/python/example_scripts/simple_business_create.py b/bindings/python/example_scripts/simple_business_create.py
index ade0887ad7..22c5f87dc2 100644
--- a/bindings/python/example_scripts/simple_business_create.py
+++ b/bindings/python/example_scripts/simple_business_create.py
@@ -27,7 +27,7 @@
# gnucash-env python simple_business_create.py \
# sqlite3:///home/blah/blah.gnucash
#
-# Specificically, this sets up a simple tree, creates a customer, job,
+# Specifically, this sets up a simple tree, creates a customer, job,
# employee and vendor, creates an unposted invoice for each,
# and posts the customer invoice with a few entries and a tax table.
#
diff --git a/bindings/python/function_class.py b/bindings/python/function_class.py
index b0c41d73c5..7349723826 100644
--- a/bindings/python/function_class.py
+++ b/bindings/python/function_class.py
@@ -48,7 +48,7 @@ class ClassFromFunctions(object):
add_method and add_methods_with_prefix.
"""
def __new__(cls, *args, **kargs):
- # why reimpliment __new__? Because later on we're going to
+ # why reimplement __new__? Because later on we're going to
# use new to avoid creating new instances when existing instances
# already exist with the same __instance value, or equivalent __instance
# values, where this is desirable...
diff --git a/bindings/python/gnucash_core.i b/bindings/python/gnucash_core.i
index e2ba70e527..a00ed4e792 100644
--- a/bindings/python/gnucash_core.i
+++ b/bindings/python/gnucash_core.i
@@ -93,7 +93,7 @@
%include
-// this function is defined in qofsession.h, but isnt found in the libraries,
+// this function is defined in qofsession.h, but isn't found in the libraries,
// ignored because SWIG attempts to link against (to create language bindings)
%ignore qof_session_not_saved;
%include
diff --git a/bindings/python/time64.i b/bindings/python/time64.i
index 295a99a797..cf3408a98b 100644
--- a/bindings/python/time64.i
+++ b/bindings/python/time64.i
@@ -58,7 +58,7 @@
// receiving this pointer is going to make a copy of the data. After the
// function call, the memory for the time64 used to perform this conversion
// is going to be lost, so make damn sure that the recipient of this pointer
-// is NOT going dereference it sometime after this function call takes place.
+// is NOT going to dereference it sometime after this function call takes place.
//
// As far as I know, the xaccTransSetDate[Posted|Entered|Due]TS functions
// from Transaction.h are the only functions with time64 * that we re
@@ -71,7 +71,7 @@
//
// Mark Jenkins
//
-// as far as I can see all occurences of pointers to time64 are now covered
+// as far as I can see all occurrences of pointers to time64 are now covered
// by the named typemaps below (2019-04)
//
// Christoph Holtermann
diff --git a/borrowed/libc/strptime.c b/borrowed/libc/strptime.c
index 7db05e6d96..ff6b152f2c 100644
--- a/borrowed/libc/strptime.c
+++ b/borrowed/libc/strptime.c
@@ -460,7 +460,7 @@ int era_cnt;
}
/* Any character but `%' must be matched by the same character
- in the iput string. */
+ in the input string. */
if (*fmt != '%')
{
match_char (*fmt++, *rp++);
diff --git a/common/config.h.cmake.in b/common/config.h.cmake.in
index dd9b4b6b73..7a2ca2f51e 100644
--- a/common/config.h.cmake.in
+++ b/common/config.h.cmake.in
@@ -363,9 +363,6 @@
#cmakedefine WEBKIT2_3 1
#cmakedefine WEBKIT1 1
-/* Definition for AQBanking Runtime Config feature */
-#cmakedefine AQB_HAS_RUNTIME_CONFIG 1
-
/* Definitions for all OS */
/* From cutecash */
//#define HAVE_LIBQOF /**/
diff --git a/common/gnc-test-env.pl b/common/gnc-test-env.pl
index 14408313ac..c3402d77f9 100755
--- a/common/gnc-test-env.pl
+++ b/common/gnc-test-env.pl
@@ -10,9 +10,9 @@ my @gnc_module_dirs=();
my @guile_load_dirs=();
my @library_dirs=();
GetOptions ("exports!" => \$define_exports, # flag
- "gnc-module-dir=s" => \@gnc_module_dirs, # arry of strings
- "guile-load-dir=s" => \@guile_load_dirs, # arry of strings
- "library-dir=s" => \@library_dirs, # arry of strings
+ "gnc-module-dir=s" => \@gnc_module_dirs, # array of strings
+ "guile-load-dir=s" => \@guile_load_dirs, # array of strings
+ "library-dir=s" => \@library_dirs, # array of strings
"verbose" => \$verbose) # flag
or die(
"Usage: gnc-test-env.pl [ --exports | --noexports ]\n" .
diff --git a/doc/README.OFX b/doc/README.OFX
index d4f54ac63e..1cff0f91aa 100644
--- a/doc/README.OFX
+++ b/doc/README.OFX
@@ -197,12 +197,12 @@ output of the ofxdump utility on your file.
(1) GnuCash simply hangs when importing an OFX file
This is probably bug https://bugs.gnucash.org/show_bug.cgi?id=101738
-Unfortunately the main developpers are unable to reproduce. So far, this bug
+Unfortunately the main developers are unable to reproduce. So far, this bug
only occurs with OpenSP 1.5. It does not occur for anyone with OpenSP 1.3.x,
which is shipped on most Linux distro as part of openjade, so you may want to
downgrade. (Please note that OpenSP 1.3.x has several other issues however)
-This bug is beleived to be a threading issue, and may be a problem in GnuCash,
+This bug is believed to be a threading issue, and may be a problem in GnuCash,
LibOFX, OpenSP, or some versions of the Linux kernel. If you have any useful
info,please add a comment to the bug above (even if only to say you encountered
the bug,and your version of the previously mentioned packages).
diff --git a/doc/TRANSLATION_HOWTO b/doc/TRANSLATION_HOWTO
index d7aaa3ce5c..11bea7ce22 100644
--- a/doc/TRANSLATION_HOWTO
+++ b/doc/TRANSLATION_HOWTO
@@ -100,7 +100,7 @@ email address.
4) Building, Installing and running GnuCash
Before starting to work on your translations, it is suggested that you
-buiild the gnucash source code. This way you can get your system set up
+build the gnucash source code. This way you can get your system set up
correctly with all the development packages you need. It is a good idea
to actually run gnucash with your new translations because it is quite
helpful to see the phrases in the context of the running program.
@@ -157,7 +157,7 @@ Now, open your language's glossary file and translate it completely.
==============================================================================
6) Initial processing of the translation file
-Before you begin actualy translation work, you should update the gnucash.pot
+Before you begin actual translation work, you should update the gnucash.pot
file and use this to update your .po file. This process will insure that
you have the latest translatable strings.
@@ -174,7 +174,7 @@ If your language file does exist, update it using the msgmerge program:
/usr/bin/msgmerge -o XXXX.po XXXX.po gnucash.pot
-The top of the .po file should be editted somewhat. The comments at the
+The top of the .po file should be edited somewhat. The comments at the
top of the file should be changed to be current:
# Messages in Deutsch f�r GnuCash
@@ -191,7 +191,7 @@ Make sure that the header of your .po file contains this line:
Finally. You are ready to do some translating!
-There are many transaltion editors, KBabel, for example, works well for
+There are many translation editors, KBabel, for example, works well for
GnuCash. Some Editors are noted here:
https://translationproject.org/html/software.html
@@ -256,13 +256,13 @@ Notice that the comment "c-format" was not removed. That is correct, you
should leave that.
When you see the comment "c-format", it means that the format codes in the
-tranlatable string are referring to C formatting codes. So, '%s' means text,
+translatable string are referring to C formatting codes. So, '%s' means text,
'%d' means an integer, etc...
==============================================================================
8) Testing and submitting your translations
-You must check that your new translations are programatically correct (ie:
+You must check that your new translations are programmatically correct (ie:
that there are no unclosed quotes, etc). To do this, use the msgfmt program
/usr/bin/msgfmt -c --statistics XXXX.po
diff --git a/doc/examples/iif/README b/doc/examples/iif/README
index 8f9d9feeb6..db07e8036c 100644
--- a/doc/examples/iif/README
+++ b/doc/examples/iif/README
@@ -1,5 +1,5 @@
This directory contains sample data files in the 'iif'
-Intuit Interchange Format files. Most of thise files
+Intuit Interchange Format files. Most of these files
have only one transaction in them, with only one or two
splits.
diff --git a/doc/examples/taxreport.gnucash b/doc/examples/taxreport.gnucash
index 56264ce04b..9ff77e6b0c 100644
--- a/doc/examples/taxreport.gnucash
+++ b/doc/examples/taxreport.gnucash
@@ -502,7 +502,7 @@
USD100
- Company 50% match of S&S, to 7% of salery.
+ Company 50% match of S&S, to 7% of salary.tax-US
@@ -1993,7 +1993,7 @@
ce8a0ff9cfc2c79c99e6c65d5e258a55
- HomeMaintainance
+ HomeMaintenance2f46699ef618ac2e88c9a5201d4bff2dEXPENSE
@@ -2004,7 +2004,7 @@
ce8a0ff9cfc2c79c99e6c65d5e258a55
- IRA Contribution, Non Deductable
+ IRA Contribution, Non Deductible911b7f106931fb26917aa2aa6662e70eEXPENSE
@@ -2081,7 +2081,7 @@
ce8a0ff9cfc2c79c99e6c65d5e258a55
- Morgage
+ Mortgage8d172831a7cee627802966332dc04411EXPENSE
@@ -2139,7 +2139,7 @@
ce8a0ff9cfc2c79c99e6c65d5e258a55
- Restarant
+ Restaurantab78940fcbc8e25834c57c92a0dadd0eEXPENSE
@@ -2162,7 +2162,7 @@
ce8a0ff9cfc2c79c99e6c65d5e258a55
- Tax Deductable
+ Tax Deductibled7bfc2020fd8cb91e46a6cda6bdb6efdEXPENSE
@@ -2392,7 +2392,7 @@
d7bfc2020fd8cb91e46a6cda6bdb6efd
- Non Deductable
+ Non Deductible82119f5617cc4cbaf7f882a0883fd7dfEXPENSE
@@ -2512,7 +2512,7 @@
babd20035ed6cd6415d878a31675210c
- IRA mangement fee
+ IRA management fee380635c3d759d34529e0422ced08628cEXPENSE
@@ -4008,7 +4008,7 @@ Witholding
2000-10-21 16:41:40 +0200
- IRA Contrib, non Deductable
+ IRA Contrib, non Deductibled6d30e081d5da4f33d5248e8a6aae3c2
diff --git a/doc/gtk-3.0.css b/doc/gtk-3.0.css
index 139e1dc855..fca7a1c1f2 100755
--- a/doc/gtk-3.0.css
+++ b/doc/gtk-3.0.css
@@ -1,5 +1,5 @@
/* This is an example GTK CSS file that can be used with Gnucash.
- Simply copy this file to the loaction specified below according
+ Simply copy this file to the location specified below according
to your platform and then restart gnucash.
- Windows: CSIDL_APPDATA/GnuCash
diff --git a/doc/projects.html b/doc/projects.html
index c81655258a..0528da4064 100644
--- a/doc/projects.html
+++ b/doc/projects.html
@@ -248,7 +248,7 @@
A Web Browser for Financial Data
-
More and more finacial data is moving onto the web.
+
More and more financial data is moving onto the web.
People shop on-line. They pay bills on-line. There are
even some promising e-wallet systems (such as
WebFunds). For GnuCash
@@ -338,7 +338,7 @@
E-Wallet
An e-wallet, just like a real wallet, stores cash. You
- can use that cash to pay freinds or businesses. Just
+ can use that cash to pay friends or businesses. Just
like a real wallet, an e-wallet should not charge you
monthly fees. It should provide you with some measure
of anonymity and privacy. An e-wallet should also do
@@ -428,7 +428,7 @@
Basic Audit features. There's a problem with blindly
allowing on-line data (prices, transactions) to enter
GnuCash. It may not be clear where it came from,
- and even if the source is beleived to be 'reputable',
+ and even if the source is believed to be 'reputable',
there still may be factual errors in the data. Thus,
there must be a way of audting newly-arrived (or even old)
on-line data, and mark it as 'reconciled', i.e.
@@ -1215,7 +1215,7 @@
do you own jewelry? appraised value? etc.)
In particular, show how appreciation
and depreciation should be treated.
- See the section Arrangements for
+ See the section Arrangements for
a discussion of the customization issues.
@@ -1272,7 +1272,7 @@
menu. It would be nice to be able to examine different
account types (Asset, Liability, Income, Expense,
Payables, Receivables, Inventory) by selecting a tab
- folder. This is maybe a bs. request that shoudn't
+ folder. This is maybe a bs. request that shouldn't
be implemented.
@@ -1417,7 +1417,7 @@
Print Register Window. Output register window to
printer.
Status: Done: there is a register report which
- is printable, there is botton on register. Done in 1.6.0
+ is printable, there is a button on register. Done in 1.6.0
@@ -1536,7 +1536,7 @@
complex tasks, such as new user setup, account creation,
QIF import, budget prep, obscure functional corners.
- Wizards are great, but lets not thow away the denser GUI's.
+ Wizards are great, but lets not throw away the denser GUI's.
For 8-hour-a-day users, the wizards can be irritating.
A single, dense screen can be more efficient and nicer.
So when adding wizards, don't dump GUI's !! (instead,
@@ -1583,7 +1583,7 @@
An "application arrangement" is the defining look-n-feel of an application.
@@ -1622,9 +1622,9 @@
their own preferred arrangement. It can also simplify the code base:
instead of having two products, a home-user application, and a small-business
application, each with a different code base and #defines and what not, instead,
- we have one code base, and different arrangments for each.
- However, most importantly, the arrangments should be easy to share between users.
- They should be such that users are encouraged to trade and use arrangments,
+ we have one code base, and different arrangements for each.
+ However, most importantly, the arrangements should be easy to share between users.
+ They should be such that users are encouraged to trade and use arrangements,
and to create new ones that suit their needs.
@@ -1638,7 +1638,7 @@
Not started. Individually, all these cusomizable things exist
here and there in gnucash, but they cannot be shared between
users: a gnucash user cannot mail her favorite 'arrangement'
- to her freind.
+ to her friend.
@@ -1767,7 +1767,7 @@
dates, ISP contract expiration date :-). These may or may
not be associated with transactions. Memo's should be
possible. Pop-ups should happen when dates get close.
- Technology: best bet is the Ximian Evolution Calander
+ Technology: best bet is the Ximian Evolution Calendar
component.
Design Notes: Most alerts & data storage
@@ -2365,7 +2365,7 @@ next due date mm/dd/yy
>> - Export retrieved account data to CBB, Xfinans and QIF files
>>
>> With a simple click to an icon on my desktop, ZKA4BTX logs into
->> T-Online, gets all my account datas from several banks, and writes
+>> T-Online, gets all my account data from several banks, and writes
>> (adds) it to my CBB, Xfinans or GnuCash (QIF) files.
>>
>> Another very important thing is that I can do all my transfers
diff --git a/gnucash/gnome-search/search-string.c b/gnucash/gnome-search/search-string.c
index df7cb8bbcb..94f77fbedf 100644
--- a/gnucash/gnome-search/search-string.c
+++ b/gnucash/gnome-search/search-string.c
@@ -175,7 +175,7 @@ gncs_validate (GNCSearchCoreType *fe)
if (fi->how == SEARCH_STRING_MATCHES_REGEX ||
fi->how == SEARCH_STRING_NOT_MATCHES_REGEX)
{
- regex_t regexpat; /* regex patern */
+ regex_t regexpat; /* regex pattern */
gint regerr;
int flags = REG_EXTENDED;
diff --git a/gnucash/gnome-utils/assistant-xml-encoding.c b/gnucash/gnome-utils/assistant-xml-encoding.c
index 368ef241a3..c2287efe47 100644
--- a/gnucash/gnome-utils/assistant-xml-encoding.c
+++ b/gnucash/gnome-utils/assistant-xml-encoding.c
@@ -174,7 +174,7 @@ void gxi_add_custom_enc_clicked_cb (GtkButton *button, GncXmlImportData *data);
void gxi_selected_enc_activated_cb (GtkTreeView *view, GtkTreePath *path, GtkTreeViewColumn *column, GncXmlImportData *data);
void gxi_remove_enc_clicked_cb (GtkButton *button, GncXmlImportData *data);
-/* Translators: Run the assistent in your language to see GTK's translation of the button labels. */
+/* Translators: Run the assistant in your language to see GTK's translation of the button labels. */
static const gchar *encodings_doc_string = N_(
"\nThe file you are trying to load is from an older version of "
"GnuCash. The file format in the older versions was missing the "
diff --git a/gnucash/gnome-utils/dialog-account.c b/gnucash/gnome-utils/dialog-account.c
index e3c075d5d2..539b982bcb 100644
--- a/gnucash/gnome-utils/dialog-account.c
+++ b/gnucash/gnome-utils/dialog-account.c
@@ -2134,7 +2134,7 @@ gnc_account_cascade_color_dialog (GtkWidget *window, Account *account)
GdkRGBA color;
gint response;
- // check if we actualy do have sub accounts
+ // check if we actually do have sub accounts
g_return_if_fail (gnc_account_n_children (account) > 0);
builder = gtk_builder_new();
diff --git a/gnucash/gnome-utils/dialog-account.h b/gnucash/gnome-utils/dialog-account.h
index 099f1a3bd0..92281ae83c 100644
--- a/gnucash/gnome-utils/dialog-account.h
+++ b/gnucash/gnome-utils/dialog-account.h
@@ -43,7 +43,7 @@
/** @name Non-Modal
@{ */
-/** Disply a window for editing the attributes of an existing account.
+/** Display a window for editing the attributes of an existing account.
*
* @param parent The widget on which to parent the dialog.
*
@@ -53,7 +53,7 @@
void gnc_ui_edit_account_window (GtkWindow *parent, Account *account);
-/** Disply a window for creating a new account. This function will
+/** Display a window for creating a new account. This function will
* also initially set the parent account of the new account to what
* the caller specified. The user is free, however, to choose any
* parent account they wish.
@@ -71,7 +71,7 @@ void gnc_ui_new_account_window (GtkWindow *parent,
QofBook *book, Account *parent_acct);
-/** Disply a window for creating a new account. This function will
+/** Display a window for creating a new account. This function will
* restrict the available account type values to the list specified
* by the caller.
*
@@ -93,7 +93,7 @@ void gnc_ui_new_account_with_types (GtkWindow *parent, QofBook *book,
/** @name Modal
@{ */
-/** Disply a modal window for creating a new account
+/** Display a modal window for creating a new account
*
* @param parent The widget on which to parent the dialog.
*
@@ -103,7 +103,7 @@ void gnc_ui_new_account_with_types (GtkWindow *parent, QofBook *book,
Account * gnc_ui_new_accounts_from_name_window (GtkWindow *parent,
const char *name);
-/** Disply a modal window for creating a new account. This function
+/** Display a modal window for creating a new account. This function
* will restrict the available account type values to the list
* specified by the caller.
*
@@ -151,7 +151,7 @@ Account * gnc_ui_new_accounts_from_name_with_defaults (GtkWindow *parent,
Account * parent_acct);
/*
- * register a callback that get's called when the account has changed
+ * register a callback that gets called when the account has changed
* so significantly that you need to destroy yourself. In particular
* this is used by the ledger display to destroy ledgers when the
* account type has changed.
diff --git a/gnucash/gnome-utils/dialog-options.c b/gnucash/gnome-utils/dialog-options.c
index 4a4a2fd85b..f1bc795b3c 100644
--- a/gnucash/gnome-utils/dialog-options.c
+++ b/gnucash/gnome-utils/dialog-options.c
@@ -1209,7 +1209,7 @@ gnc_option_create_currency_accounting_widget (char *name, GNCOption *option)
gtk_widget_set_halign (GTK_WIDGET(frame), GTK_ALIGN_FILL);
gtk_widget_set_hexpand (GTK_WIDGET(frame), TRUE);
- /* Create the verticle button box */
+ /* Create the vertical button box */
vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 5);
gtk_box_set_homogeneous (GTK_BOX (vbox), FALSE);
gtk_container_add (GTK_CONTAINER (frame), vbox);
diff --git a/gnucash/gnome-utils/dialog-utils.c b/gnucash/gnome-utils/dialog-utils.c
index 39d307ef56..d5d7c2dd49 100644
--- a/gnucash/gnome-utils/dialog-utils.c
+++ b/gnucash/gnome-utils/dialog-utils.c
@@ -149,7 +149,7 @@ gnc_restore_window_size(const char *group, GtkWindow *window, GtkWindow *parent)
if (wpos[1] - monitor_size.y + wsize[1] > monitor_size.y + monitor_size.height)
wpos[1] = monitor_size.y + monitor_size.height - wsize[1];
- /* make sure the cordinates have not left the monitor */
+ /* make sure the coordinates have not left the monitor */
if (wpos[0] < monitor_size.x)
wpos[0] = monitor_size.x;
@@ -292,7 +292,7 @@ gnc_window_adjust_for_screen(GtkWindow * window)
if (wpos[1] - monitor_size.y + height > monitor_size.y + monitor_size.height)
wpos[1] = monitor_size.y + monitor_size.height - height;
- /* make sure the cordinates have not left the monitor */
+ /* make sure the coordinates have not left the monitor */
if (wpos[0] < monitor_size.x)
wpos[0] = monitor_size.x;
diff --git a/gnucash/gnome-utils/gnc-gnome-utils.h b/gnucash/gnome-utils/gnc-gnome-utils.h
index 75fcf12261..e4a1dd636d 100644
--- a/gnucash/gnome-utils/gnc-gnome-utils.h
+++ b/gnucash/gnome-utils/gnc-gnome-utils.h
@@ -39,7 +39,7 @@
#include "dialog-options.h"
/** Load a gtk resource configuration file to customize gtk
- * appearance and behviour.
+ * appearance and behaviour.
*/
void gnc_add_css_file (void);
diff --git a/gnucash/gnome-utils/gnc-keyring.h b/gnucash/gnome-utils/gnc-keyring.h
index b704f7d882..1f006f08bb 100644
--- a/gnucash/gnome-utils/gnc-keyring.h
+++ b/gnucash/gnome-utils/gnc-keyring.h
@@ -100,7 +100,7 @@ void gnc_keyring_set_password ( const gchar *access_method,
* @return a boolean indicating whether or not a valid password
* has been retrieved. The function will return FALSE
* when the user explicitly cancels the password dialog or
- * if it wasn't called properly. Otherwise it wil return
+ * if it wasn't called properly. Otherwise it will return
* TRUE.
*
* access_method, server, port, service and user will be the parameters
diff --git a/gnucash/gnome-utils/gnc-main-window.h b/gnucash/gnome-utils/gnc-main-window.h
index cea61e243f..868b6229c5 100644
--- a/gnucash/gnome-utils/gnc-main-window.h
+++ b/gnucash/gnome-utils/gnc-main-window.h
@@ -364,7 +364,7 @@ void gnc_main_window_restore_default_state(GncMainWindow *window);
* If any page returns a failure indication, then the function stops
* walking pages and immediately returns a failure.
*
- * @param window Whe window whose pages should be checked.
+ * @param window When window whose pages should be checked.
*
* @return FALSE if any page could not or would not comply, which
* should cancel the pending operation. TRUE otherwise */
@@ -393,7 +393,7 @@ void gnc_main_window_all_action_set_sensitive (const gchar *action_name, gboolea
/** Find action in main window.
*
- * @param window Whe window which should be checked for the action.
+ * @param window When window which should be checked for the action.
*
* @param name The name of the command to be retrieved.
*
diff --git a/gnucash/gnome-utils/gnc-tree-model-owner.c b/gnucash/gnome-utils/gnc-tree-model-owner.c
index 27f5f14ea9..95180e13f3 100644
--- a/gnucash/gnome-utils/gnc-tree-model-owner.c
+++ b/gnucash/gnome-utils/gnc-tree-model-owner.c
@@ -731,7 +731,7 @@ gnc_tree_model_owner_iter_n_children (GtkTreeModel *tree_model,
/* Owner lists don't have children, so always return 0, except for
* the special case this request comes for the special "root" iter
- * (NULL). For that exception we return the size of the ower list.
+ * (NULL). For that exception we return the size of the owner list.
*/
if (iter == NULL)
return (gint) g_list_length (priv->owner_list);
diff --git a/gnucash/gnome-utils/gnc-tree-model-split-reg.c b/gnucash/gnome-utils/gnc-tree-model-split-reg.c
index 2d4a68410a..62735566d4 100644
--- a/gnucash/gnome-utils/gnc-tree-model-split-reg.c
+++ b/gnucash/gnome-utils/gnc-tree-model-split-reg.c
@@ -166,7 +166,7 @@ struct GncTreeModelSplitRegPrivate
*/
/*FIXME I thought this would work, it does not ????????? */
-/* Do we need to test for a valid iter every where, is it enougth to test on make iter ? */
+/* Do we need to test for a valid iter every where, is it enough to test on make iter ? */
#define VALID_ITER (model, iter) \
(GNC_IS_TREE_MODEL_SPLIT_REG (model) && \
((iter).user_data != NULL) && ((iter).user_data2 != NULL) && (model->stamp == (gint)(iter).stamp) && \
@@ -687,7 +687,7 @@ gnc_tree_model_split_reg_move (GncTreeModelSplitReg *model, GncTreeModelSplitReg
priv = model->priv;
- // if list is not long enougth, return
+ // if list is not long enough, return
if (g_list_length (priv->full_tlist) < NUM_OF_TRANS*3)
return;
@@ -958,7 +958,7 @@ gnc_tree_model_split_reg_set_data (GncTreeModelSplitReg *model, gpointer user_da
{
GncTreeModelSplitRegPrivate *priv;
-/*FIXME This is used to get the parent window, mabe move to view */
+/*FIXME This is used to get the parent window, maybe move to view */
priv = model->priv;
priv->user_data = user_data;
@@ -1374,7 +1374,7 @@ gnc_tree_model_split_reg_get_path (GtkTreeModel *tree_model, GtkTreeIter *iter)
else if (tnode && snode)
{
/* Can not use snode position directly as slist length does not follow
- number of splits exactly, especailly if you delete a split */
+ number of splits exactly, especially if you delete a split */
spos = xaccTransGetSplitIndex (tnode->data, snode->data);
}
diff --git a/gnucash/gnome-utils/gnc-tree-view-commodity.h b/gnucash/gnome-utils/gnc-tree-view-commodity.h
index 59280a0f7d..eeacdeb7be 100644
--- a/gnucash/gnome-utils/gnc-tree-view-commodity.h
+++ b/gnucash/gnome-utils/gnc-tree-view-commodity.h
@@ -96,7 +96,7 @@ GtkTreeView *gnc_tree_view_commodity_new (QofBook *book,
/** Configure (by name) the set of visible columns in an commodity tree
* view. By default, only the commodity name column is show. The
- * avalible list of columns can be found in the file
+ * available list of columns can be found in the file
* gnc-tree-view-commodity.c
*
* @param view A pointer to an commodity tree view.
@@ -136,7 +136,7 @@ typedef gboolean (*gnc_tree_view_commodity_cm_filter_func)(gnc_commodity*, gpoin
* thinks should possibly show. The filter may perform any actions
* necessary on the commodity to decide whether it should be shown or
* not. (I.E. Check type, placeholder status, etc.) If the filter
- * returns TRUE then the commodity wil be displayed.
+ * returns TRUE then the commodity will be displayed.
*
* @param view A pointer to an commodity tree view.
*
diff --git a/gnucash/gnome-utils/gnc-tree-view-price.h b/gnucash/gnome-utils/gnc-tree-view-price.h
index d61a0dcf71..155acb07a2 100644
--- a/gnucash/gnome-utils/gnc-tree-view-price.h
+++ b/gnucash/gnome-utils/gnc-tree-view-price.h
@@ -121,7 +121,7 @@ void gnc_tree_view_price_add_kvp_column (GncTreeViewPrice *view,
* thinks should possibly show. The filter may perform any actions
* necessary on the price to decide whether it should be shown or
* not. (I.E. Check type, placeholder status, etc.) If the filter
- * returns TRUE then the price wil be displayed.
+ * returns TRUE then the price will be displayed.
*
* @param price_view A pointer to an price tree view.
*
diff --git a/gnucash/gnome-utils/gnc-tree-view-split-reg.c b/gnucash/gnome-utils/gnc-tree-view-split-reg.c
index f5cec1f902..22c34544d5 100644
--- a/gnucash/gnome-utils/gnc-tree-view-split-reg.c
+++ b/gnucash/gnome-utils/gnc-tree-view-split-reg.c
@@ -865,7 +865,7 @@ gnc_tree_view_split_reg_set_format (GncTreeViewSplitReg *view)
priv->expanded = FALSE;
- LEAVE("#### Single line foramt ####");
+ LEAVE("#### Single line format ####");
}
if (model->use_double_line)
@@ -929,7 +929,7 @@ gnc_tree_view_split_reg_format_trans (GncTreeViewSplitReg *view, Transaction *tr
{
gtk_tree_view_collapse_row (GTK_TREE_VIEW (view), spath);
priv->expanded = FALSE;
- LEAVE("#### Single line transaction foramt ####");
+ LEAVE("#### Single line transaction format ####");
}
if ((model->use_double_line) && (model->style != REG2_STYLE_JOURNAL))
@@ -1498,7 +1498,7 @@ gtv_sr_cdf0 (GtkTreeViewColumn *col, GtkCellRenderer *cell, GtkTreeModel *s_mode
editable = (read_only == TRUE) ? FALSE : editable;
- /* This will remove the calander buttons if FALSE */
+ /* This will remove the calendar buttons if FALSE */
g_object_set (cell, "use_buttons", view->priv->show_calendar_buttons, NULL );
g_object_set (cell, "text", datebuff, "editable", editable, NULL);
break;
@@ -4491,7 +4491,7 @@ gtv_sr_edited_normal_cb (GtkCellRendererText *cell, const gchar *path_string,
// Set the split parent trans
xaccSplitSetParent (split, trans);
- // If we are at trasaction level, column is value, split level is amount
+ // If we are at transaction level, column is value, split level is amount
if (viewcol == COL_AMTVAL)
{
gnc_tree_util_set_number_for_input (view, trans, split, input, COL_AMTVAL);
diff --git a/gnucash/gnome-utils/gnc-tree-view.h b/gnucash/gnome-utils/gnc-tree-view.h
index 22a6fb9a9a..65d91b5cb8 100644
--- a/gnucash/gnome-utils/gnc-tree-view.h
+++ b/gnucash/gnome-utils/gnc-tree-view.h
@@ -449,18 +449,18 @@ void
gnc_tree_view_keynav (GncTreeView *view, GtkTreeViewColumn **col,
GtkTreePath *path, GdkEventKey *event);
-/* Returns TRUE if path is a vaid path for the treeview */
+/* Returns TRUE if path is a valid path for the treeview */
gboolean
gnc_tree_view_path_is_valid (GncTreeView *view, GtkTreePath *path);
-/** Setup a callback for when the user starts editing so appropiate actions can be taken
+/** Setup a callback for when the user starts editing so appropriate actions can be taken
* like disable the actions delete menu option.
*/
void
gnc_tree_view_set_editing_started_cb (GncTreeView *view,
GFunc editing_started_cb, gpointer editing_cb_data);
-/** Setup a callback for when the user finishes editing so appropiate actions can be taken
+/** Setup a callback for when the user finishes editing so appropriate actions can be taken
* like enable the actions delete menu option.
*/
void
diff --git a/gnucash/gnome/assistant-acct-period.c b/gnucash/gnome/assistant-acct-period.c
index f338e2f98a..cae72adede 100644
--- a/gnucash/gnome/assistant-acct-period.c
+++ b/gnucash/gnome/assistant-acct-period.c
@@ -1,5 +1,5 @@
/********************************************************************\
- * assistant-acct-period.c - accouting period assistant for GnuCash *
+ * assistant-acct-period.c - accounting period assistant for GnuCash*
* Copyright (C) 2001 Gnumatic, Inc. *
* Copyright (C) 2001 Dave Peticolas *
* Copyright (C) 2003 Linas Vepstas *
@@ -365,7 +365,7 @@ ap_assistant_book_prepare (GtkAssistant *assistant, gpointer user_data)
/* Display the book info */
period_text =
- /* Translators: Run the assistent in your language to see GTK's translation of the button labels. */
+ /* Translators: Run the assistant in your language to see GTK's translation of the button labels. */
_("You have asked for a book to be created. This book "
"will contain all transactions up to midnight %s "
"(for a total of %d transactions spread over %d accounts).\n\n "
diff --git a/gnucash/gnome/assistant-loan.cpp b/gnucash/gnome/assistant-loan.cpp
index 97419d6f73..c068c1ccda 100644
--- a/gnucash/gnome/assistant-loan.cpp
+++ b/gnucash/gnome/assistant-loan.cpp
@@ -597,7 +597,7 @@ gnc_loan_assistant_create( LoanAssistantData *ldd )
GList *allowableAccounts;
} gas_data[] =
{
- /* These ints are the GtkGrid boundries */
+ /* These ints are the GtkGrid boundaries */
{ &ldd->prmAccountGAS, ldd->prmTable, TRUE, 1, 0, 1, 1, liabilityAcct },
{ &ldd->repAssetsFromGAS, ldd->repTable, TRUE, 1, 2, 1, 1, paymentFromAccts },
{ &ldd->repPrincToGAS, ldd->repTable, TRUE, 1, 3, 1, 1, paymentToAccts },
@@ -656,7 +656,7 @@ gnc_loan_assistant_create( LoanAssistantData *ldd )
int left, top, width, height;
} gde_data[] =
{
- /* These ints are the GtkGrid boundries */
+ /* These ints are the GtkGrid boundaries */
{ &ldd->prmStartDateGDE, ldd->prmTable, 1, 4, 1, 1 },
{ &ldd->revStartDate, ldd->revTable, 1, 0, 1, 1 },
{ &ldd->revEndDate, ldd->revTable, 1, 1, 1, 1 },
diff --git a/gnucash/gnome/business-gnome-utils.c b/gnucash/gnome/business-gnome-utils.c
index 1c917b7572..0ced56ac85 100644
--- a/gnucash/gnome/business-gnome-utils.c
+++ b/gnucash/gnome/business-gnome-utils.c
@@ -520,7 +520,7 @@ gnc_simple_combo_make (GtkComboBox *cbox, QofBook *book,
/* Use a list available billing terms to fill the model of
* the combobox passed in. If none_ok is true, then add "none" as a
- * choice (with data set to NULL).. If inital_choice is non-NULL,
+ * choice (with data set to NULL).. If initial_choice is non-NULL,
* then that will be the default option setting when the menu is
* created.
*/
diff --git a/gnucash/gnome/business-gnome-utils.h b/gnucash/gnome/business-gnome-utils.h
index eac901f884..24dcf3f58f 100644
--- a/gnucash/gnome/business-gnome-utils.h
+++ b/gnucash/gnome/business-gnome-utils.h
@@ -71,7 +71,7 @@ Account * gnc_account_select_combo_get_active (GtkWidget *combo);
/* Create a combo box of available billing terms based on
* the combo box If none_ok is true, then add "none" as a
- * choice (with data set to NULL). If inital_choice is non-NULL,
+ * choice (with data set to NULL). If initial_choice is non-NULL,
* then that will be the default option setting when the menu is
* created.
*
diff --git a/gnucash/gnome/dialog-invoice.c b/gnucash/gnome/dialog-invoice.c
index 5732939269..15591b488c 100644
--- a/gnucash/gnome/dialog-invoice.c
+++ b/gnucash/gnome/dialog-invoice.c
@@ -2591,7 +2591,7 @@ gnc_invoice_window_new_invoice (GtkWindow *parent, InvoiceDialogType dialog_type
iw->type_hbox = GTK_WIDGET (gtk_builder_get_object (builder, "dialog_type_choice_hbox"));
iw->type_choice = GTK_WIDGET (gtk_builder_get_object (builder, "dialog_type_invoice"));
- /* The default GUI lables are for invoices, so change them if it isn't. */
+ /* The default GUI labels are for invoices, so change them if it isn't. */
owner_type = gncOwnerGetType (&iw->owner);
switch(owner_type)
{
diff --git a/gnucash/gnome/dialog-sx-editor.c b/gnucash/gnome/dialog-sx-editor.c
index cb97424ccb..1b1d423c75 100644
--- a/gnucash/gnome/dialog-sx-editor.c
+++ b/gnucash/gnome/dialog-sx-editor.c
@@ -962,7 +962,7 @@ gnc_sxed_save_sx( GncSxEditorDialog *sxed )
autocreateState = gtk_toggle_button_get_active( sxed->autocreateOpt );
notifyState = gtk_toggle_button_get_active( sxed->notifyOpt );
- /* "Notify" only makes sense if AutoCreate is actived;
+ /* "Notify" only makes sense if AutoCreate is activated;
* enforce that here. */
xaccSchedXactionSetAutoCreate( sxed->sx,
autocreateState,
diff --git a/gnucash/gnome/dialog-sx-editor2.c b/gnucash/gnome/dialog-sx-editor2.c
index 5237c1574d..9258598187 100644
--- a/gnucash/gnome/dialog-sx-editor2.c
+++ b/gnucash/gnome/dialog-sx-editor2.c
@@ -933,7 +933,7 @@ gnc_sxed_save_sx (GncSxEditorDialog2 *sxed )
autocreateState = gtk_toggle_button_get_active (sxed->autocreateOpt);
notifyState = gtk_toggle_button_get_active (sxed->notifyOpt);
- /* "Notify" only makes sense if AutoCreate is actived;
+ /* "Notify" only makes sense if AutoCreate is activated;
* enforce that here. */
xaccSchedXactionSetAutoCreate (sxed->sx,
autocreateState,
@@ -1773,7 +1773,7 @@ gnc_ui_sx_initialize2 (void) //FIXME need to remove the 2 when live
gnc_hook_add_dangler (HOOK_BOOK_OPENED,
(GFunc)gnc_sx_sxsincelast_book_opened, NULL);
- /* Add page to preferences page for Sheduled Transactions */
+ /* Add page to preferences page for Scheduled Transactions */
/* The parameters are; glade file, items to add from glade file - last being the dialog, preference tab name */
gnc_preferences_add_page ("dialog-sx.glade",
"create_days_adj,remind_days_adj,sx_prefs",
diff --git a/gnucash/gnome/dialog-tax-info.c b/gnucash/gnome/dialog-tax-info.c
index 6f23da6625..2c00b62189 100644
--- a/gnucash/gnome/dialog-tax-info.c
+++ b/gnucash/gnome/dialog-tax-info.c
@@ -934,7 +934,7 @@ gnc_tax_info_account_changed_cb (GtkTreeSelection *selection,
case 1:
/* Get the account. This view is set for multiple selection, so we
can only get a list of accounts. 1-25-19: The dialog does not work
- for multipe accounts so it was changed to single selection */
+ for multiple accounts so it was changed to single selection */
view = GNC_TREE_VIEW_ACCOUNT(ti_dialog->account_treeview);
accounts = gnc_tree_view_account_get_selected_accounts (view);
if (accounts == NULL)
diff --git a/gnucash/gnome/gnc-budget-view.c b/gnucash/gnome/gnc-budget-view.c
index 0b4cf4f1c0..9846e5e3f8 100644
--- a/gnucash/gnome/gnc-budget-view.c
+++ b/gnucash/gnome/gnc-budget-view.c
@@ -880,7 +880,7 @@ budget_accum_helper(Account* account, gpointer data)
/** \brief Function to calculate the accumulated budget amount in a given account at a specified period number.
-This function uses the \ref budget_accum_helper to calculate the accumulated budget amount in a given budget account for a specified period number. If the acocunt does not have children, then it simply returns the balance of the account.
+This function uses the \ref budget_accum_helper to calculate the accumulated budget amount in a given budget account for a specified period number. If the account does not have children, then it simply returns the balance of the account.
*/
static gnc_numeric
gbv_get_accumulated_budget_amount(GncBudget* budget, Account* account, guint period_num)
diff --git a/gnucash/gnome/gnc-plugin-page-account-tree.c b/gnucash/gnome/gnc-plugin-page-account-tree.c
index 2230168c29..76b571b657 100644
--- a/gnucash/gnome/gnc-plugin-page-account-tree.c
+++ b/gnucash/gnome/gnc-plugin-page-account-tree.c
@@ -1408,7 +1408,7 @@ gnc_plugin_page_account_tree_cmd_delete_account (GtkAction *action, GncPluginPag
g_object_set_data(G_OBJECT(dialog), DELETE_DIALOG_FILTER, filter);
g_object_set_data(G_OBJECT(dialog), DELETE_DIALOG_ACCOUNT, account);
- // Add the account selectors and enable sections as appropiate
+ // Add the account selectors and enable sections as appropriate
// setup transactions selector
trans_mas = gppat_setup_account_selector (builder, dialog, "trans_mas_hbox", DELETE_DIALOG_TRANS_MAS);
diff --git a/gnucash/gnome/gnc-plugin-page-register.c b/gnucash/gnome/gnc-plugin-page-register.c
index 59a2f1bcca..42aead8362 100644
--- a/gnucash/gnome/gnc-plugin-page-register.c
+++ b/gnucash/gnome/gnc-plugin-page-register.c
@@ -1294,7 +1294,7 @@ gnc_plugin_page_register_create_widget (GncPluginPage *plugin_page)
gnc_ppr_update_status_query (page);
gnc_ppr_update_date_query (page);
- /* Now do the refresh if this is a new page instaed of restore */
+ /* Now do the refresh if this is a new page instead of restore */
if (create_new_page)
{
priv->enable_refresh = TRUE;
@@ -2774,7 +2774,7 @@ get_filter_times(GncPluginPageRegister *page)
* function is responsible for setting the sensitivity of the widgets
* controlled by each radio button choice and updating the time
* limitation on the register query. This is handled by a helper
- * function as potentialy all widgets will need to be examined.
+ * function as potentially all widgets will need to be examined.
*
* @param button A pointer to the "select range" radio button.
*
@@ -2825,7 +2825,7 @@ gnc_plugin_page_register_filter_select_range_cb (GtkRadioButton *button,
/** This function is called when the "number of days" spin button is
* changed which is then saved and updates the time limitation on
* the register query. This is handled by a helper function as
- * potentialy all widgets will need to be examined.
+ * potentially all widgets will need to be examined.
*
* @param button A pointer to the "number of days" spin button.
*
@@ -3837,7 +3837,7 @@ gnc_plugin_page_register_cmd_view_sort_by (GtkAction *action,
if (priv->sd.save_order == TRUE)
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), TRUE);
- // hide the save button if appropiate
+ // hide the save button if appropriate
gtk_widget_set_visible (GTK_WIDGET(button),
gnc_plugin_page_register_show_fs_save (page));
@@ -3922,7 +3922,7 @@ gnc_plugin_page_register_cmd_view_filter_by (GtkAction *action,
if (priv->fd.save_filter == TRUE)
gtk_toggle_button_set_active(GTK_TOGGLE_BUTTON(button), TRUE);
- // hide the save button if appropiate
+ // hide the save button if appropriate
gtk_widget_set_visible (GTK_WIDGET(button),
gnc_plugin_page_register_show_fs_save (page));
@@ -4789,7 +4789,7 @@ gnc_plugin_page_register_close_cb (gpointer user_data)
/** This function is called when an account has been edited and an
* "extreme" change has been made to it. (E.G. Changing from a
- * credit card account to an expense account. This rouine is
+ * credit card account to an expense account. This routine is
* responsible for finding all open registers containing the account
* and closing them.
*
diff --git a/gnucash/gnome/gnc-plugin-page-register2.c b/gnucash/gnome/gnc-plugin-page-register2.c
index 206f04d42f..41a876042a 100644
--- a/gnucash/gnome/gnc-plugin-page-register2.c
+++ b/gnucash/gnome/gnc-plugin-page-register2.c
@@ -3929,7 +3929,7 @@ gnc_plugin_page_register2_close_cb (gpointer user_data)
/** This function is called when an account has been edited and an
* "extreme" change has been made to it. (E.G. Changing from a
- * credit card account to an expense account. This rouine is
+ * credit card account to an expense account. This routine is
* responsible for finding all open registers containing the account
* and closing them.
*
diff --git a/gnucash/gnome/gnucash.appdata.xml.in.in b/gnucash/gnome/gnucash.appdata.xml.in.in
index 11e77b592f..008c4f8cec 100644
--- a/gnucash/gnome/gnucash.appdata.xml.in.in
+++ b/gnucash/gnome/gnucash.appdata.xml.in.in
@@ -1,6 +1,6 @@
-
+org.gnucash.GnuCashGnuCashManage your finances, accounts, and investments
diff --git a/gnucash/gtkbuilder/assistant-csv-account-import.glade b/gnucash/gtkbuilder/assistant-csv-account-import.glade
index 6503db4d97..4c301ff5de 100644
--- a/gnucash/gtkbuilder/assistant-csv-account-import.glade
+++ b/gnucash/gtkbuilder/assistant-csv-account-import.glade
@@ -30,7 +30,7 @@