Reviewed: RESX Manager 0.3.3 (Apr 17, 2015)
Created Unassigned: Worksheet names cannot be more than 31 characters [3190]
Created Unassigned: Automate export/import process [3194]
btw, I've created a <solution name>.sln.resxm file following the documentation to exclude some projects, but it seems not to work
Commented Unassigned: Automate export/import process [3194]
btw, I've created a <solution name>.sln.resxm file following the documentation to exclude some projects, but it seems not to work
Comments: ** Comment from web user: luclucas **
Please, send me the *.resxm file. Then I can check this for you.
Automation (via some API) is not supported so far. How many projects and how often do you plan to import/export to Excel?
Created Unassigned: Error when opening ResXManager [3206]
Closed Unassigned: Error when opening ResXManager [3206]
Created Unassigned: Exception when importing file [3212]
Now the the file is fully translated, when I'm trying to import it back to my application I get an exception (see attachment).
I try to remove the comments column, but the exception remain the same.
My file contain one sheet for each resx.
When i'm making a file with only one sheet for one resx, the import works fine.
Any idea?
Created Unassigned: Cannot save Project if resx is open [3227]
To be able to work, I open the same project again and before doing anything, I close the Resx Manager tab. Then I close the project and re-open it. Now the Resx Manager tab is not opened and all works fine.
I am a huge fan of Resx Manager and will continue to use it, even if this problem is not fixed, however, it would be nice to have it fixed.
I don't know if others experienced the same issue. If it is just me, I can live with it.
Commented Unassigned: Cannot save Project if resx is open [3227]
To be able to work, I open the same project again and before doing anything, I close the Resx Manager tab. Then I close the project and re-open it. Now the Resx Manager tab is not opened and all works fine.
I am a huge fan of Resx Manager and will continue to use it, even if this problem is not fixed, however, it would be nice to have it fixed.
I don't know if others experienced the same issue. If it is just me, I can live with it.
Comments: ** Comment from web user: luclucas **
Probably your issue is related to another Project. Do you mean ResX Resource Manager?
Created Unassigned: Left pane scroll not working [3238]
It is impossible to use without the scrollbar.
Please take a look at this an thanks for a great tool.
Created Unassigned: Exporting resx with value true/false [3239]
Commented Unassigned: Exporting resx with value true/false [3239]
Comments: ** Comment from web user: Tasteful **
Updated the XlsxConverter.cs with the following and all strings is now exported as Text.
```
private void AddData(ResourceDataGroupBase dataGroup, IXLWorksheet worksheet, int rowIndex, IEnumerable<CultureInfo> cultures)
{
worksheet.Cell(rowIndex, 1).Value = dataGroup.FileGroup.ID;
worksheet.Cell(rowIndex, 2).Value = dataGroup.Name;
int c = 3;
foreach (var culture in cultures)
{
var cell = worksheet.Cell(rowIndex, c++);
if (dataGroup.ResxData.ContainsKey(culture))
{
cell.Value = dataGroup.ResxData[culture].Value;
if (ExportComments)
{
worksheet.Cell(rowIndex, c++).Value = dataGroup.ResxData[culture].Comment;
}
}
else
{
cell.Value = "";
if (ExportComments)
worksheet.Cell(rowIndex, c++).Value = "";
}
cell.DataType = XLCellValues.Text; // need to set datatype after value is assigned, otherwise the datatype is parsed
}
}
```
Created Unassigned: Import Does Not Add New Files to Source Control [3256]
I'm currently researching whether I can use resx manager to translate a solution with more than 150 resx files to 3 new languages.
I already adjusted your code locally in order not to generate Excel worksheets for each resx file. That failed, as the file names including namespaces are verbose in the solution I want to translate.
I tested the import by adding new colums with fake texts. The import worked and new resx files do exist in my soultion after that. Unfortunately I have to add each of the new files manually to source control after that. Is there a shortcut for that?
Thanks for your help.
Sincerely,
Stef
Edited Unassigned: Exporting resx with value true/false [3239]
Commented Unassigned: Left pane scroll not working [3238]
It is impossible to use without the scrollbar.
Please take a look at this and thanks for a great tool.
Comments: ** Comment from web user: luclucas **
Sorry for this late reply. Probably your issue is related to another Project. Do you mean ResX Resource Manager?
Closed Unassigned: Cannot save Project if resx is open [3227]
To be able to work, I open the same project again and before doing anything, I close the Resx Manager tab. Then I close the project and re-open it. Now the Resx Manager tab is not opened and all works fine.
I am a huge fan of Resx Manager and will continue to use it, even if this problem is not fixed, however, it would be nice to have it fixed.
I don't know if others experienced the same issue. If it is just me, I can live with it.
Comments: Wrong project.
Closed Unassigned: Exception when importing file [3212]
Now the the file is fully translated, when I'm trying to import it back to my application I get an exception (see attachment).
I try to remove the comments column, but the exception remain the same.
My file contain one sheet for each resx.
When i'm making a file with only one sheet for one resx, the import works fine.
Any idea?
Comments: Issue is related to another Project: ResX Resource Manager?
Commented Unassigned: Import Does Not Add New Files to Source Control [3256]
I'm currently researching whether I can use resx manager to translate a solution with more than 150 resx files to 3 new languages.
I already adjusted your code locally in order not to generate Excel worksheets for each resx file. That failed, as the file names including namespaces are verbose in the solution I want to translate.
I tested the import by adding new colums with fake texts. The import worked and new resx files do exist in my soultion after that. Unfortunately I have to add each of the new files manually to source control after that. Is there a shortcut for that?
Thanks for your help.
Sincerely,
Stef
Comments: ** Comment from web user: luclucas **
Hi Stef,
I am very sorry for this late reply.
The method Save() in the class VSSolution should automatically add new files to TFS, if the corresponding project is under source control. If you are using a different source control system, it sould be easy to adapt the code.
Regards
Lucas