Remove i18n cruft in Dutch and Spanish. Fixes bug #11506
This commit is contained in:
parent
d0bc628ff8
commit
2de75ea427
2 changed files with 11 additions and 6 deletions
|
|
@ -10,6 +10,7 @@
|
||||||
- fixed #11494: Error message on mysql down
|
- fixed #11494: Error message on mysql down
|
||||||
- fixed: Viewing a Gallery File with non-ASCII keywords crashes
|
- fixed: Viewing a Gallery File with non-ASCII keywords crashes
|
||||||
- fixed #11509: System trash not sticky
|
- fixed #11509: System trash not sticky
|
||||||
|
- fixed #11506: Cruft on i18n dirs in the released .tar.gz
|
||||||
|
|
||||||
7.9.1
|
7.9.1
|
||||||
- fixed #11464: blank page after setting posts per page in Collaboration System to 0 (zero)
|
- fixed #11464: blank page after setting posts per page in Collaboration System to 0 (zero)
|
||||||
|
|
|
||||||
|
|
@ -30,19 +30,23 @@ my $quiet; # this line required
|
||||||
|
|
||||||
my $session = start(); # this line required
|
my $session = start(); # this line required
|
||||||
|
|
||||||
|
# upgrade functions go here
|
||||||
addSortItemsSCColumn($session);
|
addSortItemsSCColumn($session);
|
||||||
|
removeTranslationCruft($session);
|
||||||
|
|
||||||
finish($session); # this line required
|
finish($session); # this line required
|
||||||
|
|
||||||
|
|
||||||
#----------------------------------------------------------------------------
|
#----------------------------------------------------------------------------
|
||||||
# Describe what our function does
|
# Describe what our function does
|
||||||
#sub exampleFunction {
|
sub removeTranslationCruft {
|
||||||
# my $session = shift;
|
my $session = shift;
|
||||||
# print "\tWe're doing some stuff here that you should know about... " unless $quiet;
|
print "\tRemoving files left over from unpacking translations... " unless $quiet;
|
||||||
# # and here's our code
|
# and here's our code
|
||||||
# print "DONE!\n" unless $quiet;
|
unlink File::Spec->catfile($webguiRoot, qw/lib WebGUi i18n Spanish .pm/);
|
||||||
#}
|
unlink File::Spec->catfile($webguiRoot, qw/lib WebGUi i18n Dutch .DS_Store/);
|
||||||
|
print "DONE!\n" unless $quiet;
|
||||||
|
}
|
||||||
|
|
||||||
#----------------------------------------------------------------------------
|
#----------------------------------------------------------------------------
|
||||||
sub addSortItemsSCColumn {
|
sub addSortItemsSCColumn {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue