mirror of
https://gitea.wildfiregames.com/0ad/0ad
synced 2026-07-07 07:25:47 -07:00
Don't move that string to another transifex resource while in string freeze.
This was SVN commit r18866.
This commit is contained in:
parent
f37faa57e3
commit
58a8380dd9
2 changed files with 10 additions and 10 deletions
|
|
@ -357,16 +357,6 @@ function getGatherTooltip(template)
|
|||
});
|
||||
}
|
||||
|
||||
function getRequiredTechnologyTooltip(technologyEnabled, requiredTechnology)
|
||||
{
|
||||
if (technologyEnabled)
|
||||
return "";
|
||||
|
||||
return sprintf(translate("Requires %(technology)s"), {
|
||||
"technology": getEntityNames(GetTechnologyData(requiredTechnology))
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns an array of strings for a set of wall pieces. If the pieces share
|
||||
* resource type requirements, output will be of the form '10 to 30 Stone',
|
||||
|
|
|
|||
|
|
@ -1227,3 +1227,13 @@ let g_PanelsOrder = [
|
|||
"Queue",
|
||||
"Selection",
|
||||
];
|
||||
|
||||
function getRequiredTechnologyTooltip(technologyEnabled, requiredTechnology)
|
||||
{
|
||||
if (technologyEnabled)
|
||||
return "";
|
||||
|
||||
return sprintf(translate("Requires %(technology)s"), {
|
||||
"technology": getEntityNames(GetTechnologyData(requiredTechnology))
|
||||
});
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue