Skip to content

Commit

Permalink
Remove code for catspeak
Browse files Browse the repository at this point in the history
  • Loading branch information
astudentinearth committed May 27, 2023
1 parent c492008 commit 83624eb
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions src/localization/LocaleContext.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import React, { Dispatch, SetStateAction } from "react";
import en_us from './locales/en_us.json'
import tr_tr from './locales/tr_tr.json'
import catspeak from './locales/catspeak.json'

export interface LocaleContextType{
locale: string,
Expand All @@ -18,9 +17,6 @@ export function GetLocalizedResource(resourceName: string, locale: string){
case "tr_tr":
return tr_tr[resourceName];

case "catspeak":
return catspeak[resourceName];

}
return en_us[resourceName];
}

0 comments on commit 83624eb

Please sign in to comment.