-
Notifications
You must be signed in to change notification settings - Fork 123
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Exported strings to the messages file for dynamic language
- Loading branch information
Showing
3 changed files
with
58 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
31 changes: 31 additions & 0 deletions
31
bundles/com.espressif.idf.ui/src/com/espressif/idf/ui/gcov/Messages.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
/******************************************************************************* | ||
* Copyright 2023 Espressif Systems (Shanghai) PTE LTD. All rights reserved. | ||
* Use is subject to license terms. | ||
*******************************************************************************/ | ||
package com.espressif.idf.ui.gcov; | ||
|
||
import org.eclipse.osgi.util.NLS; | ||
|
||
public class Messages extends NLS | ||
{ | ||
private static final String BUNDLE_NAME = "com.espressif.idf.ui.gcov.messages"; //$NON-NLS-1$ | ||
|
||
public static String TableCol_FileName; | ||
public static String TableCol_Path; | ||
public static String TableCol_LastModifiedGCNO; | ||
public static String TableCol_LastModifiedGCDA; | ||
public static String TableCol_SizeGCNO; | ||
public static String TableCol_SizeGCDA; | ||
public static String Dialog_SelectProject_Title; | ||
public static String Table_Unknown; | ||
|
||
static | ||
{ | ||
// initialize resource bundle | ||
NLS.initializeMessages(BUNDLE_NAME, Messages.class); | ||
} | ||
|
||
private Messages() | ||
{ | ||
} | ||
} |
8 changes: 8 additions & 0 deletions
8
bundles/com.espressif.idf.ui/src/com/espressif/idf/ui/gcov/messages.properties
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
TableCol_FileName=File Name | ||
TableCol_Path=Path | ||
TableCol_LastModifiedGCNO=Last Modified GCNO | ||
TableCol_LastModifiedGCDA=Last Modified GCDA | ||
TableCol_SizeGCNO=Size GCNO | ||
TableCol_SizeGCDA=Size GCDA | ||
Dialog_SelectProject_Title=Select a Project | ||
Table_Unknown=Unknown |