Skip to content

Commit f1f1de7

Browse files
Add Turkish and English translations for system commands, editor, media, calculator, and games
- Implemented translations for system commands including exit, history, and output messages. - Added pip command translations for help, package management, and error messages. - Enhanced editor translations for file operations, line management, and command usage. - Included media-related translations for image and audio handling. - Introduced calculator translations for error messages and launch notifications. - Expanded game translations for chess, solitaire, snake, pacman, and pong, covering controls, game states, and player interactions.
1 parent 39eb075 commit f1f1de7

File tree

9 files changed

+872
-353
lines changed

9 files changed

+872
-353
lines changed

.github/workflows/deploy-cloudrun.yml

Lines changed: 0 additions & 51 deletions
This file was deleted.

src/app/globals.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3004,6 +3004,13 @@ textarea {
30043004
color: var(--content-muted);
30053005
}
30063006

3007+
.footer-copy {
3008+
margin: 10px 0 0;
3009+
color: var(--content-muted);
3010+
font-size: 12px;
3011+
letter-spacing: 0.02em;
3012+
}
3013+
30073014
.footer-links {
30083015
display: flex;
30093016
flex-wrap: wrap;

src/components/HomeClient.tsx

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2719,6 +2719,12 @@ export default function HomeClient({
27192719
<div>
27202720
<p className="footer-name">{profile.fullName}</p>
27212721
<p className="footer-role">{profile.jobTitle[language]}</p>
2722+
<p className="footer-copy">
2723+
© 2026 {profile.fullName}.{" "}
2724+
{language === "tr"
2725+
? "Tum haklari saklidir."
2726+
: "All rights reserved."}
2727+
</p>
27222728
</div>
27232729
<div className="footer-links">
27242730
{profile.socials.map((social) => (

0 commit comments

Comments
 (0)