Skip to content

Commit fe5e21f

Browse files
author
minjk-bl
committed
Fix label Return to -> Allocate to
1 parent 9ddfa71 commit fe5e21f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

74 files changed

+194
-194
lines changed

src/common/component/vpTableLayoutVerticalSimple.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ define([
6262
* @param {number} lineIndex 추가될 라인 index (미지정시 마지막 라인에 추가)
6363
*/
6464
vpTableLayoutVerticalSimple.prototype.addReqRow = function(caption = "", content = "", lineIndex) {
65-
var rowString = vpCommon.formatString("<tr><th class='{0}'>{1}</th><td>{2}</td></tr>", vpConst.COLOR_FONT_ORANGE, caption, content);
65+
var rowString = vpCommon.formatString('<tr><th class="{0}">{1}</th><td>{2}</td></tr>', vpConst.COLOR_FONT_ORANGE, caption, content);
6666
if (lineIndex === undefined) {
6767
this._tbodyContent.push(rowString);
6868
} else if (typeof lineIndex == "number") {

src/file_io/fileio.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@
7878
</td>
7979
</tr>
8080
<tr>
81-
<td><label for="vp_sampleReturn" class="vp-orange-text">Return to</label></td>
81+
<td><label for="vp_sampleReturn" class="vp-orange-text">Allocate to</label></td>
8282
<td><input type="text" class="vp-input input-single" id="vp_sampleReturn" placeholder="" value="" title=""></td>
8383
</tr>
8484
</tbody>

src/file_io/fileio.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ define([
134134
{
135135
name:'vp_sampleReturn',
136136
type:'var',
137-
label:'Return to',
137+
label:'Allocate to',
138138
required: true
139139
}
140140
]

src/file_io/instance_old.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
<td colspan="2"><hr style="margin: 0px;"/></td>
122122
</tr>
123123
<tr>
124-
<td><label for="vp_returnVariable">Return to</label></td>
124+
<td><label for="vp_returnVariable">Allocate to</label></td>
125125
<td><input id="vp_returnVariable" class="vp-input" type="text" placeholder="return variable" /></td>
126126
</tr> -->
127127
</table>

src/matplotlib/figure.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<colgroup><col width="20%"><col width="*"></colgroup>
88
<tr>
99
<td>
10-
<label for="o0" class="vp-orange-text">Return to</label>
10+
<label for="o0" class="vp-orange-text">Allocate to</label>
1111
</td>
1212
<td>
1313
<input type="text" class="vp-input input-single" id="o0" index=0 value="fig"/>

src/numpy/common/NumpyPageRender/parent/privateMethod/_renderReturnVarBlock.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ define ([
1717
var numpyStateGenerator = numpyPageRendererThis.getStateGenerator();
1818
var returnVariableState = numpyStateGenerator.getState('returnVariable');
1919
sbTagString.appendLine( `<tr class='vp-numpy-option-block'>`);
20-
sbTagString.appendLine(`<th>Input Return to</th>`)
20+
sbTagString.appendLine(`<th>Input Allocate to</th>`)
2121
sbTagString.appendLine( `<td>`);
2222

2323
sbTagString.appendFormatLine("<input type='text' class='{0} {1}' id='{2}' placeholder='{3}' value='{4}'/>",

0 commit comments

Comments
 (0)