private bool CheckAllTranslationsAreWritable()
{
List<string> fileNames = new List<string>();
foreach (Translation trans in _agsEditor.CurrentGame.Translations)
{
fileNames.Add(trans.FileName);
}
return _agsEditor.AttemptToGetWriteAccess(fileNames);
}