mirror of
https://github.com/Mibew/i18n.git
synced 2025-04-10 21:30:12 +03:00
Now everything should be localized properly. git-svn-id: https://webim.svn.sourceforge.net/svnroot/webim/trunk@84 c66351dc-e62f-0410-b875-e3a5c0b9693f
19 lines
391 B
C#
19 lines
391 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using System.Resources;
|
|
|
|
namespace webImTray {
|
|
|
|
public delegate void ModifiedEvent();
|
|
|
|
interface OptionsPanel {
|
|
void initialize();
|
|
void apply();
|
|
string getDescription(ResourceManager resManager);
|
|
void updateUI();
|
|
|
|
event ModifiedEvent PanelModified;
|
|
}
|
|
}
|