Quantcast
Channel: RESX Manager
Viewing all 252 articles
Browse latest View live

Reviewed: RESX Manager 0.3.3 (Apr 17, 2015)

$
0
0
Rated 5 Stars (out of 5) - Simple but powerful! Thanks

Created Unassigned: Worksheet names cannot be more than 31 characters [3190]

$
0
0
I am trying to export to excel but I get this error message.

Created Unassigned: Automate export/import process [3194]

$
0
0
Is it possible to automate the excel export and import process?

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]

$
0
0
Is it possible to automate the excel export and import process?

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]

$
0
0
Since today I get an error when I want to open the ResXManager. I will attach an screenshot of the error.

Closed Unassigned: Error when opening ResXManager [3206]

$
0
0
Sorry, wrong codeproject article. :-)

Created Unassigned: Exception when importing file [3212]

$
0
0
I have exported all my resx files in excel, in order to send the file for completing the translations.

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]

$
0
0
If I open a Visual Studio 2013 project that has Resx Manager opened (it was opened last time I worked on this project) I cannot save anything. Well, actually, the changes are saved, but the saving process never ends. Visual Studio gets non-responsive and I have to close it.
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]

$
0
0
If I open a Visual Studio 2013 project that has Resx Manager opened (it was opened last time I worked on this project) I cannot save anything. Well, actually, the changes are saved, but the saving process never ends. Visual Studio gets non-responsive and I have to close it.
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]

$
0
0
I have a large number of resource files and I am not able to scroll through them since there is no scroll bar. This appeared in 1.0.0.80. Before that I was able to scroll.

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]

$
0
0
When I export an resx with the value "false"/"true" it will be replaced by Excel "FALSE"/"TRUE" and I need manually to change that to a string "'False". Is is possible to add type for the cell so that all strings that is exported is always as "Text" and not "General" when open in Excel?

Commented Unassigned: Exporting resx with value true/false [3239]

$
0
0
When I export an resx with the value "false"/"true" it will be replaced by Excel "FALSE"/"TRUE" and I need manually to change that to a string "'False". Is is possible to add type for the cell so that all strings that is exported is always as "Text" and not "General" when open in Excel?
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]

$
0
0
Hi,

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]

$
0
0
When I export an resx with the value "false"/"true" it will be replaced by Excel "FALSE"/"TRUE" and I need manually to change that to a string "'False". Is is possible to add type for the cell so that all strings that is exported is always as "Text" and not "General" when open in Excel?

Commented Unassigned: Left pane scroll not working [3238]

$
0
0
I have a large number of resource files and I am not able to scroll through them since there is no scroll bar. This appeared in 1.0.0.80. Before that I was able to scroll.

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]

$
0
0
If I open a Visual Studio 2013 project that has Resx Manager opened (it was opened last time I worked on this project) I cannot save anything. Well, actually, the changes are saved, but the saving process never ends. Visual Studio gets non-responsive and I have to close it.
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]

$
0
0
I have exported all my resx files in excel, in order to send the file for completing the translations.

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]

$
0
0
Hi,

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

Source code checked in, #29958

$
0
0
Fix: Project names of length > 31; Fix: Cell fomat text

Released: RESX Manager 0.3.4 (Jan 05, 2017)

$
0
0
Fixed
  • Issue: Handling of project names of length > 31 characters (Issue: 3190)

Improved
  • Format cells as text for, e.g., boolean type texts such as TRUE/FALSE (Issue:3239)
Viewing all 252 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>