summaryrefslogtreecommitdiffstats
path: root/src/libs/sqlite2/util.c
diff options
context:
space:
mode:
authorTDE Weblate <[email protected]>2025-03-15 13:04:23 +0000
committerMichele Calgaro <[email protected]>2025-03-19 13:12:11 +0900
commit8b3a88df55c67e3e75b93385db1c4f27f409a06f (patch)
tree8427cf9e4892c66674645e7152c3246a334bd165 /src/libs/sqlite2/util.c
parent0b5e696d79ab1a160293d520b7526e031238989a (diff)
downloaddigikam-rename/true-false.tar.gz
digikam-rename/true-false.zip
Update translation filesrename/true-false
Updated by "Update PO files to match POT (msgmerge)" hook in Weblate. Translation: applications/digikam Translate-URL: https://mirror.git.trinitydesktop.org/weblate/projects/applications/digikam/
Diffstat (limited to 'src/libs/sqlite2/util.c')
-rw-r--r--src/libs/sqlite2/util.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/libs/sqlite2/util.c b/src/libs/sqlite2/util.c
index 579bf753..2382b8d1 100644
--- a/src/libs/sqlite2/util.c
+++ b/src/libs/sqlite2/util.c
@@ -514,7 +514,7 @@ int sqliteStrNICmp(const char *zLeft, const char *zRight, int N){
}
/*
-** Return TRUE if z is a pure numeric string. Return FALSE if the
+** Return true if z is a pure numeric string. Return false if the
** string contains any character which is not part of a number.
**
** Am empty string is considered non-numeric.
@@ -608,9 +608,9 @@ double sqliteAtoF(const char *z, const char **pzEnd){
** The string zNum represents an integer. There might be some other
** information following the integer too, but that part is ignored.
** If the integer that the prefix of zNum represents will fit in a
-** 32-bit signed integer, return TRUE. Otherwise return FALSE.
+** 32-bit signed integer, return true. Otherwise return false.
**
-** This routine returns FALSE for the string -2147483648 even that
+** This routine returns false for the string -2147483648 even that
** that number will, in theory fit in a 32-bit integer. But positive
** 2147483648 will not fit in 32 bits. So it seems safer to return
** false.
@@ -692,7 +692,7 @@ int sqliteCompare(const char *atext, const char *btext){
** D Sort as strings in descending order.
**
** For the "+" and "-" sorting, pure numeric strings (strings for which the
-** isNum() function above returns TRUE) always compare less than strings
+** isNum() function above returns true) always compare less than strings
** that are not pure numerics. Non-numeric strings compare in memcmp()
** order. This is the same sort order as the sqliteCompare() function
** above generates.