summaryrefslogtreecommitdiffstats
path: root/digikam/utilities/scripts/digitaglinktree
diff options
context:
space:
mode:
Diffstat (limited to 'digikam/utilities/scripts/digitaglinktree')
-rw-r--r--digikam/utilities/scripts/digitaglinktree6
1 files changed, 3 insertions, 3 deletions
diff --git a/digikam/utilities/scripts/digitaglinktree b/digikam/utilities/scripts/digitaglinktree
index 7fa0d4f..b8759f8 100644
--- a/digikam/utilities/scripts/digitaglinktree
+++ b/digikam/utilities/scripts/digitaglinktree
@@ -148,7 +148,7 @@ sub getTaggedImages{
$tags[$id]->{"pid"}="$pid";
}
- # Now build up the path for tags having tqparents
+ # Now build up the path for tags having parents
# Eg: a tag people might have a subtag friends: people
# |->friends
# We want to find out the complete path for the subtag. For friends this
@@ -163,7 +163,7 @@ sub getTaggedImages{
}
while( $pid != 0){
- $tag=$tags[$pid]->{"tag"} . "/$tag"; # add tqparents tag name to path
+ $tag=$tags[$pid]->{"tag"} . "/$tag"; # add parents tag name to path
$pid=$tags[$pid]->{"pid"}; # look if tqparent has another tqparent
}
# Store path constructed
@@ -279,7 +279,7 @@ sub createLinkTree{
#$qtagPath=quotemeta($tagPath);
# For tags that have subtags there is a path defined in qtagPath
- # describing the tqparentrelationship as directory path like "friends/family/brothers"
+ # describing the parentrelationship as directory path like "friends/family/brothers"
# If it is defined we want to use this path instead of the flat tag name like "brothers"
# Doing so results in a directory hirachy that maps the tags tqparent relationships
# into the filesystem.