Index: trunk/eCard/eCardMVC/Platnosci.Core/Interface/ITranslate.cs
===================================================================
--- trunk/eCard/eCardMVC/Platnosci.Core/Interface/ITranslate.cs (revision 903)
+++ trunk/eCard/eCardMVC/Platnosci.Core/Interface/ITranslate.cs (revision 903)
@@ -0,0 +1,12 @@
+﻿using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace Platnosci.Core.Interface
+{
+    public interface ITranslate
+    {
+        string TranslateStr(string className, string keyName);
+    }
+}
Index: trunk/eCard/eCardMVC/Platnosci.Core/Platnosci.Core.csproj
===================================================================
--- trunk/eCard/eCardMVC/Platnosci.Core/Platnosci.Core.csproj (revision 871)
+++ trunk/eCard/eCardMVC/Platnosci.Core/Platnosci.Core.csproj (revision 903)
@@ -70,4 +70,5 @@
     <Compile Include="Interface\IIdentifiable.cs" />
     <Compile Include="Interface\IRepository.cs" />
+    <Compile Include="Interface\ITranslate.cs" />
     <Compile Include="Linq\DataContext1.cs" />
     <Compile Include="Linq\Payer.cs" />
@@ -84,4 +85,5 @@
     <Compile Include="Linq\PotwierdzeniaEcard.cs" />
     <Compile Include="Linq\Repository.cs" />
+    <Compile Include="Linq\Translate.cs" />
     <Compile Include="Linq\vPlatnosciEcard.cs" />
     <Compile Include="Linq\Waluta.cs" />
Index: trunk/eCard/eCardMVC/Platnosci.Core/Linq/Translate.cs
===================================================================
--- trunk/eCard/eCardMVC/Platnosci.Core/Linq/Translate.cs (revision 903)
+++ trunk/eCard/eCardMVC/Platnosci.Core/Linq/Translate.cs (revision 903)
@@ -0,0 +1,19 @@
+﻿using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using Platnosci.Core.Interface;
+
+namespace Platnosci.Core.Linq
+{
+    public class Translate: ITranslate
+    {
+        public string TranslateStr(string className, string keyName)
+        {
+            string strName = HttpContext.GetGlobalResourceObject(className, keyName).ToString();
+            return strName;
+        }
+
+        
+    }
+}
