Skip to content

Commit

Permalink
Merge pull request #2 from sszemtelen/master
Browse files Browse the repository at this point in the history
Hungarian translate to the WebUI
  • Loading branch information
Ramo-Y committed Mar 31, 2024
2 parents 3cca35a + bd75508 commit 1a23b92
Show file tree
Hide file tree
Showing 7 changed files with 25 additions and 25 deletions.
6 changes: 3 additions & 3 deletions src/BulkRename/Views/History/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@
<!DOCTYPE html>

<head>
<title>History</title>
<title>Előzmények</title>
<meta charset="utf-8" />
</head>

<head>
<meta charset="utf-8" />
<title>Series</title>
<title>Sorozatok</title>
<link href="~/css/customStyles.css" rel="stylesheet" />
</head>

<div class="text-start">
<a class="btn btn-primary" href="@Url.Action("LoadHistory", "History")">Load History</a>
<a class="btn btn-primary" href="@Url.Action("LoadHistory", "History")">Előzmények betöltése</a>
</div>

<br />
Expand Down
6 changes: 3 additions & 3 deletions src/BulkRename/Views/Home/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@
}

<head>
<title>Home</title>
<title>Kezdőlap</title>
<meta charset="utf-8"/>
</head>

<div class="text-center">
<h1 class="display-4">Welcome to BulkRename</h1>
<a class="btn btn-primary" href="Series">Preview Renaming of TV-Shows</a>
<h1 class="display-4">Üdvözöl a BulkRename!</h1>
<a class="btn btn-primary" href="Series">TV-műsorok átnevezése előnézet</a>
</div>
4 changes: 2 additions & 2 deletions src/BulkRename/Views/Series/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@

<head>
<meta charset="utf-8"/>
<title>Series</title>
<title>Sorozatok</title>
<link href="~/css/customStyles.css" rel="stylesheet"/>
</head>

<div class="text-start">
<a class="btn btn-success" href="@Url.Action("Rename")">Submit Renaming</a>
<a class="btn btn-success" href="@Url.Action("Rename")">Átnevezés beküldése</a>
</div>

<br/>
Expand Down
4 changes: 2 additions & 2 deletions src/BulkRename/Views/Series/Rename.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@

<head>
<meta charset="utf-8"/>
<title>Series</title>
<title>Sorozatok</title>
<link href="~/css/customStyles.css" rel="stylesheet"/>
</head>

<h1>Successfully renamed files</h1>
<h1>Sikeresen átnevezett fájlok</h1>

@Html.DisplayFor(model => model, "SeriesTable")
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
<table class="customtable">
<tbody>
<tr>
<th class="oldname">Old Name</th>
<th class="newname">New Name</th>
<th class="oldname">Rági fájlnév</th>
<th class="newname">Új fájlnév</th>
</tr>
@foreach (var ser in s.Value)
{
Expand Down
18 changes: 9 additions & 9 deletions src/BulkRename/Views/Shared/Error.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,23 @@
ViewData["Title"] = "Error";
}

<h1 class="text-danger">Error.</h1>
<h2 class="text-danger">An error occurred while processing your request.</h2>
<h1 class="text-danger">Hiba.</h1>
<h2 class="text-danger">Hiba történt a kérése feldolgozása során.</h2>

@if (Model?.ShowRequestId ?? false)
{
<p>
<strong>Request ID:</strong> <code>@Model?.RequestId</code>
<strong>Kérés ID:</strong> <code>@Model?.RequestId</code>
</p>
}

<h3>Development Mode</h3>
<h3>Fejlesztői mód</h3>
<p>
Swapping to <strong>Development</strong> environment will display more detailed information about the error that occurred.
A <strong>Fejlesztői</strong> környezetre váltás részletesebb információkat jelenít meg a bekövetkezett hibáról.
</p>
<p>
<strong>The Development environment shouldn't be enabled for deployed applications.</strong>
It can result in displaying sensitive information from exceptions to end users.
For local debugging, enable the <strong>Development</strong> environment by setting the <strong>ASPNETCORE_ENVIRONMENT</strong> environment variable to <strong>Development</strong>
and restarting the app.
<strong>A fejlesztői környezetet nem szabad engedélyezni a telepített alkalmazásokhoz.</strong>
Ez a kivételekből származó érzékeny információk megjelenítését eredményezheti a végfelhasználók számára.
A helyi hibakereséshez engedélyezze a következő <strong>Fejlesztői</strong> környezetet: <strong>ASPNETCORE_ENVIRONMENT</strong> környezeti változók között a <strong>Fejlesztői</strong>
beállításokban, és indítsa újra az alkalmazást.
</p>
8 changes: 4 additions & 4 deletions src/BulkRename/Views/Shared/_Layout.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@
<div class="navbar-collapse collapse d-sm-inline-flex justify-content-between">
<ul class="navbar-nav flex-grow-1">
<li class="nav-item">
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Index">Home</a>
<a class="nav-link text-dark" asp-area="" asp-controller="Home" asp-action="Index">Kezdőlap</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" asp-area="" asp-controller="Series" asp-action="Index">Series</a>
<a class="nav-link text-dark" asp-area="" asp-controller="Series" asp-action="Index">Sorozatok</a>
</li>
<li class="nav-item">
<a class="nav-link text-dark" asp-area="" asp-controller="History" asp-action="Index">History</a>
<a class="nav-link text-dark" asp-area="" asp-controller="History" asp-action="Index">Előzmények</a>
</li>
</ul>
</div>
Expand All @@ -42,7 +42,7 @@

<footer class="border-top footer text-muted">
<div class="container">
&copy; 2024 - BulkRename - <a asp-area="" asp-controller="Home" asp-action="Index">Home</a>
&copy; 2024 - BulkRename - <a asp-area="" asp-controller="Home" asp-action="Index">Kezdőlap</a>
</div>
</footer>
<script src="~/lib/jquery/dist/jquery.min.js"></script>
Expand Down

0 comments on commit 1a23b92

Please sign in to comment.