Don't move that string to another transifex resource while in string freeze.

This was SVN commit r18866.
This commit is contained in:
elexis 2016-10-26 23:23:37 +00:00
parent f37faa57e3
commit 58a8380dd9
2 changed files with 10 additions and 10 deletions

View File

@ -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',

View File

@ -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))
});
}