This commit is contained in:
2022-07-17 15:07:57 +02:00
parent 1df54ea6e8
commit 734d2e5783
10 changed files with 406 additions and 0 deletions

34
rename-subs/the Normal file
View File

@@ -0,0 +1,34 @@
if (/^the_/) {
s/^the_//;
s/\./_the./;
}
if (/^der_/) {
s/^der_//;
s/\./_der./;
}
if (/^die_/) {
s/^die_//;
s/\./_die./;
}
if (/^das_/) {
s/^das_//;
s/\./_das./;
}
if (/^The /) {
s/^The //;
s/\./ The./;
}
if (/^Der /) {
s/^Der //;
s/\./ Der./;
}
if (/^Die /) {
s/^Die //;
s/\./ Die./;
}
if (/^Das /) {
s/^Das //;
s/\./ Das./;
}