Mark all video backend names for translation

This commit is contained in:
Techjar
2018-06-30 04:53:24 -04:00
parent e22c5333ab
commit dc2f22516c
5 changed files with 15 additions and 6 deletions

View File

@ -4,6 +4,7 @@
#pragma once
#include "Common/Common.h"
#include "VideoCommon/VideoBackendBase.h"
namespace Vulkan
@ -15,7 +16,7 @@ public:
void Shutdown() override;
std::string GetName() const override { return "Vulkan"; }
std::string GetDisplayName() const override { return "Vulkan"; }
std::string GetDisplayName() const override { return _trans("Vulkan"); }
void InitBackendInfo() override;
};
}