Skip to content

Commit

Permalink
remove extra spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
walterbender committed Nov 19, 2023
1 parent 56a2e7d commit c33e517
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions planet/js/GlobalPlanet.js
Original file line number Diff line number Diff line change
Expand Up @@ -455,7 +455,7 @@ class GlobalPlanet {
let language = localStorage.languagePreference;
if (id in this.cache) {
if (language === "ja") {
remixedName = `「${this.cache[id].ProjectName} ${this.remixPrefix}`;
remixedName = `「${this.cache[id].ProjectName}${this.remixPrefix}`;
} else {
remixedName = `${this.remixPrefix} ${this.cache[id].ProjectName}`;
}
Expand All @@ -464,7 +464,7 @@ class GlobalPlanet {
);
} else {
if (language === "ja") {
remixedName = `「${_("My Project")} ${this.remixPrefix}` ;
remixedName = `「${_("My Project")}${this.remixPrefix}` ;
} else {
remixedName = `${this.remixPrefix} ${_("My Project")}` ;
}
Expand Down

0 comments on commit c33e517

Please sign in to comment.