Skip to content

Commit

Permalink
Merge pull request #26 from LynnuxDev/backup-branch
Browse files Browse the repository at this point in the history
fix: Fixed i18n on main bot.
  • Loading branch information
Dark-LYNN authored Jan 3, 2025
2 parents f48a97f + 9ae5773 commit 3a850c0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/i18n.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import fs from 'fs';
import path from 'path';
import path, { join } from 'path';
import yaml from 'js-yaml';

import { Translations } from './types';

const BASE_PATH = '/media/lynnux/[E] Other/Codes/@Github/@LynnuxDev/AkiraLocalization';
const BASE_PATH = join(process.cwd(), '..', '/AkiraLocalization');

/**
* Loads a YAML translation file and retrieves the value for a given key.
Expand Down

0 comments on commit 3a850c0

Please sign in to comment.