Skip to content

Commit 94eb833

Browse files
authored
Merge pull request #6527 from makeplane/fix-language-support
fix: language support
2 parents a57f4f9 + ccfbe9c commit 94eb833

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

space/core/components/issues/filters/priority.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export const FilterPriority: React.FC<Props> = observer((props) => {
4848
/>
4949
))
5050
) : (
51-
<p className="text-xs italic text-custom-text-400">{t("common.no_matches_found")}</p>
51+
<p className="text-xs italic text-custom-text-400">{t("common.search.no_matches_found")}</p>
5252
)}
5353
</div>
5454
)}

web/app/profile/sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,7 +171,7 @@ export const ProfileLayoutSidebar = observer(() => {
171171
<div className="flex items-center gap-1.5 py-[1px]">
172172
<ProjectActionIcons type={link.key} size={16} />
173173

174-
{!sidebarCollapsed && <p className="text-sm leading-5 font-medium">{t(link.key)}</p>}
174+
{!sidebarCollapsed && <p className="text-sm leading-5 font-medium">{t(link.i18n_label)}</p>}
175175
</div>
176176
</SidebarNavItem>
177177
</Tooltip>

web/core/components/dropdowns/cycle/cycle-options.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ export const CycleOptions: FC<CycleOptionsProps> = observer((props) => {
163163
</Combobox.Option>
164164
))
165165
) : (
166-
<p className="px-1.5 py-1 italic text-custom-text-400">{t("common.no_matches_found")}</p>
166+
<p className="px-1.5 py-1 italic text-custom-text-400">{t("common.search.no_matches_found")}</p>
167167
)
168168
) : (
169169
<p className="px-1.5 py-1 italic text-custom-text-400">{t("common.loading")}</p>

web/core/components/inbox/inbox-filter/filters/priority.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export const FilterPriority: FC<Props> = observer((props) => {
5151
/>
5252
))
5353
) : (
54-
<p className="text-xs italic text-custom-text-400">{t("common.no_matches_found")}</p>
54+
<p className="text-xs italic text-custom-text-400">{t("common.search.no_matches_found")}</p>
5555
)}
5656
</div>
5757
)}

web/core/components/issues/issue-layouts/filters/header/filters/priority.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export const FilterPriority: React.FC<Props> = observer((props) => {
4545
/>
4646
))
4747
) : (
48-
<p className="text-xs italic text-custom-text-400">{t("common.no_matches_found")}</p>
48+
<p className="text-xs italic text-custom-text-400">{t("common.search.no_matches_found")}</p>
4949
)}
5050
</div>
5151
)}

0 commit comments

Comments
 (0)