Skip to content

Commit

Permalink
Consistent braces
Browse files Browse the repository at this point in the history
  • Loading branch information
rubenwardy committed Sep 26, 2023
1 parent b002959 commit 4066c04
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions builtin/mainmenu/tab_content.lua
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ local function get_formspec(tabview, name, tabdata)
if update_count == 0 then
contentdb_label = fgettext("Browse online content")
elseif update_count == 1 then
contentdb_label = fgettext("Browse online content (1 update)")
contentdb_label = fgettext("Browse online content [1 update]")
else
contentdb_label = fgettext("Browse online content ($1 updates)", update_count)
contentdb_label = fgettext("Browse online content [$1 updates]", update_count)
end

local retval = {
Expand Down Expand Up @@ -265,7 +265,7 @@ return {
if update_count == 0 then
return fgettext("Content")
else
return fgettext("Content ($1)", update_count)
return fgettext("Content [$1]", update_count)
end
end,
cbf_formspec = get_formspec,
Expand Down

0 comments on commit 4066c04

Please sign in to comment.