Translate UI text to Polish: update headings and messages in MovieList, Navbar, and Search components for improved localization.
This commit is contained in:
@@ -86,9 +86,9 @@ export const MovieList: FC<Props> = ({
|
||||
{showFilters && (
|
||||
<Dropdown
|
||||
items={[
|
||||
{ label: "Title", value: "title" },
|
||||
{ label: "Release Date", value: "releaseDate" },
|
||||
{ label: "Popularity", value: "popularity" },
|
||||
{ label: "Tytuł", value: "title" },
|
||||
{ label: "Data premiery", value: "releaseDate" },
|
||||
{ label: "Popularność", value: "popularity" },
|
||||
]}
|
||||
defaultValue={filter}
|
||||
callback={(value) => setFilter(value as "title")}
|
||||
@@ -99,7 +99,7 @@ export const MovieList: FC<Props> = ({
|
||||
</div>
|
||||
)}
|
||||
{filteredMovies.length === 0 && (
|
||||
<p className="text-text/60 text-sm">No movies found</p>
|
||||
<p className="text-text/60 text-sm">Brak filmów</p>
|
||||
)}
|
||||
{filteredMovies.length > 0 && (
|
||||
<div
|
||||
|
||||
Reference in New Issue
Block a user