Skip to content

Commit 5e1fd4b

Browse files
committed
Fix some translation issues.
1 parent a97c45a commit 5e1fd4b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

gresources/nemo-file-management-properties.glade

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1182,9 +1182,11 @@ along with . If not, see <http://www.gnu.org/licenses/>.
11821182
<object class="GtkLabel" id="label2">
11831183
<property name="visible">True</property>
11841184
<property name="can-focus">False</property>
1185-
<property name="label" translatable="yes">&lt;b&gt;Behavior&lt;/b&gt;</property>
1186-
<property name="use-markup">True</property>
1185+
<property name="label" translatable="yes">Behavior</property>
11871186
<property name="xalign">0</property>
1187+
<attributes>
1188+
<attribute name="weight" value="bold"/>
1189+
</attributes>
11881190
</object>
11891191
<packing>
11901192
<property name="expand">False</property>

src/nemo-query-editor.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -623,7 +623,7 @@ nemo_query_editor_set_active (NemoQueryEditor *editor,
623623

624624
if (g_file_is_native (location) && !g_strv_contains (content_forbidden_dirs, editor->priv->base_uri)) {
625625
gtk_widget_set_sensitive (editor->priv->content_main_box, TRUE);
626-
gtk_entry_set_placeholder_text (GTK_ENTRY (editor->priv->content_entry), _("anything"));
626+
gtk_entry_set_placeholder_text (GTK_ENTRY (editor->priv->content_entry), _(""));
627627
} else {
628628
gtk_widget_set_sensitive (editor->priv->content_main_box, FALSE);
629629
gtk_entry_set_placeholder_text (GTK_ENTRY (editor->priv->content_entry),

0 commit comments

Comments
 (0)